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

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

Issue 9666061: [uber page] Lighten horizontal line below developer buttons (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 | 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.loading * { 5 html.loading * {
6 -webkit-transition-duration: 0 !important; 6 -webkit-transition-duration: 0 !important;
7 } 7 }
8 8
9 /* Developer mode */ 9 /* Developer mode */
10 10
11 #dev-controls { 11 #dev-controls {
12 -webkit-padding-end: 3px; 12 -webkit-padding-end: 3px;
13 -webkit-padding-start: 4px; 13 -webkit-padding-start: 4px;
14 -webkit-transition: padding 100ms, height 100ms, opacity 100ms; 14 -webkit-transition: padding 100ms, height 100ms, opacity 100ms;
15 border-bottom: 1px solid rgb(205, 205, 205); 15 border-bottom: 1px solid #eee;
16 display: -webkit-box; 16 display: -webkit-box;
17 height: 0; 17 height: 0;
18 opacity: 0; 18 opacity: 0;
19 overflow: hidden; 19 overflow: hidden;
20 } 20 }
21 21
22 #extension-settings.dev-mode #dev-controls { 22 #extension-settings.dev-mode #dev-controls {
23 -webkit-transition-duration: 250ms; 23 -webkit-transition-duration: 250ms;
24 height: 32px; 24 height: 32px;
25 opacity: 1; 25 opacity: 1;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 vertical-align: middle; 176 vertical-align: middle;
177 } 177 }
178 178
179 .extension-list-item:not(:hover) .trash:not(:focus) { 179 .extension-list-item:not(:hover) .trash:not(:focus) {
180 opacity: 0; 180 opacity: 0;
181 } 181 }
182 182
183 .extension-list-item-wrapper.may-not-disable .trash { 183 .extension-list-item-wrapper.may-not-disable .trash {
184 visibility: hidden; 184 visibility: hidden;
185 } 185 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698