Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(614)

Unified Diff: experimental/flocking_geese/css/form_input.css

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/flocking_geese/css/flocking_geese.css ('k') | experimental/flocking_geese/css/info_panel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/flocking_geese/css/form_input.css
diff --git a/experimental/flocking_geese/css/form_input.css b/experimental/flocking_geese/css/form_input.css
deleted file mode 100644
index db4906db4315bb82c4c0725f66c7395def10c6f9..0000000000000000000000000000000000000000
--- a/experimental/flocking_geese/css/form_input.css
+++ /dev/null
@@ -1,69 +0,0 @@
-/* Copyright 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/**
- * Styling for checkboxes and radio buttons.
- */
-input[type=checkbox], input[type=radio], .fakecheckbox, .fakeradio{
- -webkit-appearance: none;
- width: 13px;
- height: 13px;
- border: 1px solid #DCDCDC;
- margin:0;
- -webkit-border-radius:1px;
- -moz-border-radius:1px;
- border-radius:1px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- cursor:default;
- position:relative;
-}
-
-input[type=checkbox]:active, input[type=radio]:active, .fakecheckbox:active, .fakeradio:active{
- border-color:#C6C6C6;
- background:#ebebeb;
-}
-
-input[type=checkbox]:hover, input[type=radio]:hover, .fakecheckbox:hover, .fakeradio:hover{
- border-color:#C6C6C6;
- -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1);
- -moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1);
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1);
-}
-
-input[type=radio], .fakeradio{
- border-radius:50%;
- width: 15px;
- height: 15px;
-}
-
-input[type=radio]:checked::after, .fakeradio.checked::after{
- content:'';
- display:block;
- position:relative;
- top:3px;
- left:3px;
- width:7px;
- height:7px;
- background:#666;
- border-radius:50%;
-}
-
-input[type=checkbox]:checked::after, .fakecheckbox.checked::after {
- content:url('../images/check_no_box.png');
- display:block;
- position:absolute;
- top:-6px;
- left:-5px;
-}
-
-input[type=checkbox]:focus, .fakecheckbox.focus {
- outline: none;
- border-color:#4d90fe;
-}
-.fakecheckbox, .fakeradio{
- display:inline-block;
-}
« no previous file with comments | « experimental/flocking_geese/css/flocking_geese.css ('k') | experimental/flocking_geese/css/info_panel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698