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

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

Issue 10824145: Move all the butter bar code to a separate class. Fix some style, method & variable names and simpl… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix progress bar. 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 | « no previous file | chrome/browser/resources/file_manager/js/butter_bar.js » ('j') | 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.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 border-color: #aaa; 73 border-color: #aaa;
74 color: #888; 74 color: #888;
75 } 75 }
76 76
77 /* Drop opacity of selected rows to give a visual feedback on copy/cut 77 /* Drop opacity of selected rows to give a visual feedback on copy/cut
78 * operation. */ 78 * operation. */
79 .blink { 79 .blink {
80 opacity: 0.8; 80 opacity: 0.8;
81 } 81 }
82 82
83 .butter-bar { 83 #butter-bar {
84 -webkit-box-align: end; 84 -webkit-box-align: end;
85 -webkit-box-orient: horizontal; 85 -webkit-box-orient: horizontal;
86 -webkit-transform: translate3d(0, 1px, 0); 86 -webkit-transform: translate3d(0, 1px, 0);
87 -webkit-transition-duration: 300ms; 87 -webkit-transition-duration: 300ms;
88 -webkit-transition-property: opacity, -webkit-transform; 88 -webkit-transition-property: opacity, -webkit-transform;
89 background-color: rgba(95, 95, 95, 0.17); 89 background-color: rgba(95, 95, 95, 0.17);
90 color: #222; 90 color: #222;
91 display: -webkit-box; 91 display: -webkit-box;
92 padding-left: 1em; 92 padding-left: 1em;
93 padding-right: 1em; 93 padding-right: 1em;
94 padding-top: 2px; 94 padding-top: 2px;
95 position: absolute; 95 position: absolute;
96 top: 0; 96 top: 0;
97 } 97 }
98 98
99 .butter-bar.before-show { 99 #butter-bar.before-show {
100 -webkit-transform: translate3d(0, -30px, 0); 100 -webkit-transform: translate3d(0, -30px, 0);
101 opacity: 0; 101 opacity: 0;
102 } 102 }
103 103
104 .butter-bar.after-show { 104 #butter-bar.after-show {
105 -webkit-transform: translate3d(0, 50px, 0); 105 -webkit-transform: translate3d(0, 50px, 0);
106 opacity: 0; 106 opacity: 0;
107 } 107 }
108 108
109 .butter-bar .content { 109 #butter-bar .content {
110 padding-bottom: 8px; 110 padding-bottom: 8px;
111 padding-right: 5px; 111 padding-right: 5px;
112 } 112 }
113 113
114 .hide-in-butter { 114 .hide-in-butter {
115 display: none; 115 display: none;
116 } 116 }
117 117
118 .butter-bar .actions { 118 #butter-bar .actions {
119 -webkit-box-orient: horizontal; 119 -webkit-box-orient: horizontal;
120 -webkit-box-pack: end; 120 -webkit-box-pack: end;
121 display: -webkit-box; 121 display: -webkit-box;
122 } 122 }
123 123
124 .butter-bar .actions a { 124 #butter-bar .actions a {
125 background: center center no-repeat; 125 background: center center no-repeat;
126 background-image: -webkit-image-set( 126 background-image: -webkit-image-set(
127 url('../images/files/ui/close_bar.png') 1x, 127 url('../images/files/ui/close_bar.png') 1x,
128 url('../images/files/ui/2x/close_bar.png') 2x); 128 url('../images/files/ui/2x/close_bar.png') 2x);
129 display: inline-block; 129 display: inline-block;
130 height: 12px; 130 height: 12px;
131 padding: 4px; 131 padding: 4px;
132 width: 12px; 132 width: 12px;
133 } 133 }
134 134
135 .butter-bar.error { 135 #butter-bar.error {
136 background-color: rgba(221, 75, 57, 0.2); 136 background-color: rgba(221, 75, 57, 0.2);
137 border: 1px solid rgba(221, 75, 57, 0.5); 137 border: 1px solid rgba(221, 75, 57, 0.5);
138 border-radius: 2px; 138 border-radius: 2px;
139 padding: 2px 1em; 139 padding: 2px 1em;
140 } 140 }
141 141
142 .progress-bar { 142 .progress-bar {
143 background-image: -webkit-linear-gradient(top, #e9e9e9 0, #f9f9f9 100%); 143 background-image: -webkit-linear-gradient(top, #e9e9e9 0, #f9f9f9 100%);
144 border: 1px solid #a1a1a1; 144 border: 1px solid #a1a1a1;
145 border-radius: 3px; 145 border-radius: 3px;
(...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1460 height: 100%; 1460 height: 100%;
1461 } 1461 }
1462 1462
1463 #list-container .table-header-cell:hover { 1463 #list-container .table-header-cell:hover {
1464 background-color: #f2f2f2; 1464 background-color: #f2f2f2;
1465 } 1465 }
1466 1466
1467 button:focus { 1467 button:focus {
1468 outline-color: rgb(77, 144, 254); 1468 outline-color: rgb(77, 144, 254);
1469 } 1469 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/butter_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698