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

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

Issue 1397403003: [DevTools] Remove HelpScreen, turn SettingsScreen into dialog and web component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screens
Patch Set: rebased Created 5 years, 2 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
OLDNEW
1 .help-window-outer { 1 /*
2 position: absolute !important; 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 top: 0; 3 * Use of this source code is governed by a BSD-style license that can be
4 left: 0; 4 * found in the LICENSE file.
5 right: 0; 5 */
6 bottom: 0;
7 z-index: 2000;
8 }
9 6
10 .help-window-main { 7 .help-window-main {
11 color: white; 8 color: rgb(48, 57, 66);
12 background-color: rgba(17, 17, 17, 0.85); 9 background-color: white;
13 display: -webkit-flex; 10 padding: 11px 0 0 0;
14 -webkit-flex-direction: column;
15 border-top-width: 0;
16 border-radius: 10px;
17 } 11 }
18 12
19 .help-window-caption { 13 .help-window-caption {
20 border-bottom: solid 1px rgb(153, 153, 153); 14 border-bottom: solid 1px rgb(153, 153, 153);
21 margin: 0 8px; 15 margin: 0 8px;
22 padding: 0 2px; 16 padding: 0 2px;
23 line-height: 28px; 17 line-height: 28px;
24 } 18 }
25 19
26 .help-window-title {
27 font-size: 16px;
28 margin: 0;
29 padding-top: 1px;
30 margin-bottom: -1px;
31 }
32
33 .help-content { 20 .help-content {
34 overflow-y: auto; 21 overflow-y: auto;
35 overflow-x: hidden; 22 overflow-x: hidden;
36 margin: 8px 8px 8px 0; 23 margin: 8px 8px 8px 0;
37 padding: 0 4px; 24 padding: 0 4px;
38 flex: auto; 25 flex: auto;
39 } 26 }
40 27
41 .help-footnote { 28 .help-footnote {
42 border-top: 1px solid #EEEEEE; 29 border-top: 1px solid #EEEEEE;
(...skipping 19 matching lines...) Expand all
62 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:hove r, 49 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:hove r,
63 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:acti ve { 50 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical:acti ve {
64 background: linear-gradient(to right, rgb(176, 176, 176), rgb(144, 144, 144) 40%, rgb(176, 176, 176)); 51 background: linear-gradient(to right, rgb(176, 176, 176), rgb(144, 144, 144) 40%, rgb(176, 176, 176));
65 } 52 }
66 53
67 .help-window-main .help-container-wrapper::-webkit-scrollbar-track:vertical { 54 .help-window-main .help-container-wrapper::-webkit-scrollbar-track:vertical {
68 background: linear-gradient(to right, rgb(10, 10, 10), rgb(32, 32, 32) 25%, rgb(32, 32, 32)); 55 background: linear-gradient(to right, rgb(10, 10, 10), rgb(32, 32, 32) 25%, rgb(32, 32, 32));
69 border-radius: 5px; 56 border-radius: 5px;
70 } 57 }
71 58
72 .help-close-button {
73 position: absolute;
74 top: 8px;
75 right: 8px;
76 z-index: 10;
77 }
78
79 body.dock-to-bottom .help-content {
80 margin-bottom: 8px;
81 }
82
83 .help-container { 59 .help-container {
84 width: 100%; 60 width: 100%;
85 -webkit-user-select: auto; 61 -webkit-user-select: auto;
86 -webkit-column-width: 288px; 62 -webkit-column-width: 288px;
87 } 63 }
88 64
89 .help-no-columns { 65 .help-no-columns {
90 -webkit-column-width: initial !important; 66 -webkit-column-width: initial !important;
91 } 67 }
92 68
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 134
159 .help-combine-keys { 135 .help-combine-keys {
160 margin: 0 0.3em; 136 margin: 0 0.3em;
161 } 137 }
162 138
163 .help-key-delimiter { 139 .help-key-delimiter {
164 margin: 0 0.5em; 140 margin: 0 0.5em;
165 display: none; 141 display: none;
166 } 142 }
167 143
168 .help-window-outer fieldset { 144 fieldset {
169 margin: 0; 145 margin: 0;
170 padding: 0; 146 padding: 0;
171 border: none; 147 border: none;
172 } 148 }
173 149
174 .settings-tab label { 150 .settings-tab label {
175 padding-right: 4px; 151 padding-right: 4px;
176 display: inline-flex; 152 display: inline-flex;
177 } 153 }
178 154
(...skipping 19 matching lines...) Expand all
198 174
199 .help-content input[type=checkbox] { 175 .help-content input[type=checkbox] {
200 margin: 1px 7px 1px 2px; 176 margin: 1px 7px 1px 2px;
201 } 177 }
202 178
203 .help-content option { 179 .help-content option {
204 background-color: #EEEEEE; 180 background-color: #EEEEEE;
205 color: #222; 181 color: #222;
206 } 182 }
207 183
208 #settings-screen .help-window-main{ 184 .help-window-label {
209 color: rgb(48, 57, 66);
210 background-color: white;
211 border-radius: 0;
212 }
213
214 #settings-screen .help-window-main {
215 position: absolute;
216 top: 10px;
217 right: 10px;
218 bottom: 10px;
219 left: 10px;
220 height: initial;
221 padding: 11px 0 0 0;
222 box-shadow: 1px 1px 5px 2px rgba(128, 128, 128, 0.7);
223 }
224
225 #settings-screen .help-window-label {
226 font-size: 18px; 185 font-size: 18px;
227 color: inherit; 186 color: inherit;
228 padding: 1px 0 15px 17px; 187 padding: 1px 0 15px 17px;
229 } 188 }
230 189
231 .help-container-wrapper { 190 .help-container-wrapper {
232 position: absolute; 191 position: absolute;
233 top: 40px; 192 top: 40px;
234 left: 0px; 193 left: 0px;
235 right: 0; 194 right: 0;
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 display: none; 542 display: none;
584 } 543 }
585 544
586 .settings-experiment-hidden label { 545 .settings-experiment-hidden label {
587 background-color: #ddd; 546 background-color: #ddd;
588 } 547 }
589 548
590 .settings-developer-mode .settings-experiment-hidden { 549 .settings-developer-mode .settings-experiment-hidden {
591 display: block; 550 display: block;
592 } 551 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698