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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10825385: Make all checkboxes uniformly darker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/file_manager/css/common.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 html.col-resize * { 9 html.col-resize * {
10 cursor: col-resize !important; 10 cursor: col-resize !important;
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 -webkit-box-align: center; 1035 -webkit-box-align: center;
1036 } 1036 }
1037 1037
1038 .file-checkbox { 1038 .file-checkbox {
1039 -webkit-margin-end: 0; 1039 -webkit-margin-end: 0;
1040 -webkit-margin-start: 0; 1040 -webkit-margin-start: 0;
1041 position: relative; 1041 position: relative;
1042 z-index: 2; 1042 z-index: 2;
1043 } 1043 }
1044 1044
1045 .file-checkbox,
1046 .pin {
1047 opacity: 0.3;
1048 }
1049
1050 #select-all-checkbox { 1045 #select-all-checkbox {
1051 -webkit-margin-end: 11px; 1046 -webkit-margin-end: 11px;
1052 -webkit-margin-start: 1px; 1047 -webkit-margin-start: 1px;
1053 margin-bottom: 0; 1048 margin-bottom: 0;
1054 margin-top: 0; 1049 margin-top: 0;
1055 /* 1px below text */ 1050 /* 1px below text */
1056 position: relative; 1051 position: relative;
1057 top: 1px; 1052 top: 1px;
1058 } 1053 }
1059 1054
1060 #list-container li.table-row:hover .file-checkbox, 1055 #list-container li.table-row:hover .file-checkbox,
1061 #list-container li.table-row:hover .pin, 1056 #list-container li.table-row:hover .pin,
1062 #list-container li.thumbnail-item:hover .file-checkbox { 1057 #list-container li.thumbnail-item:hover .file-checkbox {
1063 opacity: 0.5; 1058 opacity: 0.6;
1064 } 1059 }
1065 1060
1066 .file-checkbox:hover,
1067 .pin:hover,
1068 #list-container li.table-row[selected] .file-checkbox, 1061 #list-container li.table-row[selected] .file-checkbox,
1069 #list-container li.table-row[selected] .pin, 1062 #list-container li.table-row[selected] .pin,
1070 #list-container li.table-row .pin:checked,
1071 #list-container li.thumbnail-item[selected] .file-checkbox { 1063 #list-container li.thumbnail-item[selected] .file-checkbox {
1072 opacity: 0.8 !important; 1064 opacity: 1.0 !important;
1073 } 1065 }
1074 1066
1075 #list-container li.table-row, 1067 #list-container li.table-row,
1076 #default-actions-list li { 1068 #default-actions-list li {
1077 border: none; 1069 border: none;
1078 border-top: 1px solid transparent; 1070 border-top: 1px solid transparent;
1079 height: 39px; 1071 height: 39px;
1080 padding-bottom: 1px; 1072 padding-bottom: 1px;
1081 padding-top: 1px; 1073 padding-top: 1px;
1082 } 1074 }
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1543 background-color: #ececec; 1535 background-color: #ececec;
1544 } 1536 }
1545 1537
1546 button:focus { 1538 button:focus {
1547 outline-color: rgb(77, 144, 254); 1539 outline-color: rgb(77, 144, 254);
1548 } 1540 }
1549 1541
1550 #new-folder { 1542 #new-folder {
1551 margin-right: 30px; 1543 margin-right: 30px;
1552 } 1544 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/css/common.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698