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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css

Issue 2560943002: [Devtools] Fixed dark theme scrollbars consistency in settings (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .help-window-main { 7 .help-window-main {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 background-color: white; 9 background-color: white;
10 padding: 11px 0 0 0; 10 padding: 11px 0 0 0;
(...skipping 13 matching lines...) Expand all
24 padding: 0 4px; 24 padding: 0 4px;
25 flex: auto; 25 flex: auto;
26 } 26 }
27 27
28 .help-footnote { 28 .help-footnote {
29 border-top: 1px solid #EEEEEE; 29 border-top: 1px solid #EEEEEE;
30 margin: 0; 30 margin: 0;
31 padding: 12px; 31 padding: 12px;
32 } 32 }
33 33
34 .help-window-main .help-container-wrapper::-webkit-scrollbar {
35 width: 11px;
36 }
37
38 .help-window-main .help-container-wrapper::-webkit-scrollbar-corner,
39 .help-window-main .help-container-wrapper::-webkit-resizer {
40 display: none;
41 }
42
43 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical {
44 background: linear-gradient(to right, rgb(128, 128, 128), rgb(96, 96, 96) 40 %, rgb(128, 128, 128));
45 border-radius: 5px;
46 min-height: 20px;
47 }
48
49 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:hove r,
50 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:acti ve {
51 background: linear-gradient(to right, rgb(176, 176, 176), rgb(144, 144, 144) 40%, rgb(176, 176, 176));
52 }
53
54 .help-window-main .help-container-wrapper::-webkit-scrollbar-track:vertical {
55 background: linear-gradient(to right, rgb(10, 10, 10), rgb(32, 32, 32) 25%, rgb(32, 32, 32));
56 border-radius: 5px;
57 }
58
59 .help-container { 34 .help-container {
60 width: 100%; 35 width: 100%;
61 -webkit-user-select: auto; 36 -webkit-user-select: auto;
62 -webkit-column-width: 288px; 37 -webkit-column-width: 288px;
63 } 38 }
64 39
65 .help-no-columns { 40 .help-no-columns {
66 -webkit-column-width: initial !important; 41 -webkit-column-width: initial !important;
67 } 42 }
68 43
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 display: none; 301 display: none;
327 } 302 }
328 303
329 .settings-experiment-hidden label { 304 .settings-experiment-hidden label {
330 background-color: #ddd; 305 background-color: #ddd;
331 } 306 }
332 307
333 .settings-developer-mode .settings-experiment-hidden { 308 .settings-developer-mode .settings-experiment-hidden {
334 display: block; 309 display: block;
335 } 310 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698