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

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

Issue 2868543002: DevTools: move FileSystemMapping under persistence/ module (Closed)
Patch Set: fix copyright Created 3 years, 7 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 /* 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;
11 } 11 }
12 12
13 .help-window-caption {
14 border-bottom: solid 1px rgb(153, 153, 153);
15 margin: 0 8px;
16 padding: 0 2px;
17 line-height: 28px;
18 }
19
20 .help-content { 13 .help-content {
21 overflow-y: auto; 14 overflow-y: auto;
22 overflow-x: hidden; 15 overflow-x: hidden;
23 margin: 8px 8px 8px 0; 16 margin: 8px 8px 8px 0;
24 padding: 0 4px; 17 padding: 0 4px;
25 flex: auto; 18 flex: auto;
26 } 19 }
27 20
28 .help-footnote { 21 .help-footnote {
29 border-top: 1px solid #EEEEEE; 22 border-top: 1px solid #EEEEEE;
30 margin: 0; 23 margin: 0;
31 padding: 12px; 24 padding: 12px;
32 } 25 }
33 26
34 .help-container { 27 .help-container {
35 width: 100%; 28 width: 100%;
36 -webkit-user-select: auto; 29 -webkit-user-select: auto;
37 -webkit-column-width: 288px; 30 -webkit-column-width: 288px;
38 } 31 }
39 32
40 .help-no-columns {
41 -webkit-column-width: initial !important;
42 }
43
44 .help-block { 33 .help-block {
45 display: block; 34 display: block;
46 padding-bottom: 9px; 35 padding-bottom: 9px;
47 width: 288px; 36 width: 288px;
48 -webkit-column-break-inside: avoid; 37 -webkit-column-break-inside: avoid;
49 } 38 }
50 39
51 .settings-tab.help-container { 40 .settings-tab.help-container {
52 -webkit-column-width: 308px; 41 -webkit-column-width: 308px;
53 } 42 }
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 } 212 }
224 213
225 .settings-tab p { 214 .settings-tab p {
226 margin: 12px 0; 215 margin: 12px 0;
227 } 216 }
228 217
229 .settings-tab select { 218 .settings-tab select {
230 margin-left: 10px; 219 margin-left: 10px;
231 } 220 }
232 221
233 #workspace-tab-content .settings-tab.help-content.help-container {
234 -webkit-column-width: initial;
235 overflow: hidden;
236 padding-right: 10px;
237 }
238
239
240 #workspace-tab-content .button:hover {
241 opacity: 1.0 !important;
242 }
243
244 #workspace-tab-content .help-block {
245 width: auto;
246 margin-right: 20px;
247 }
248
249 p.folder-exclude-pattern {
250 display: flex;
251 align-items: center;
252 }
253
254 p.folder-exclude-pattern > input {
255 flex: auto;
256 }
257
258 .file-system-mapping-view {
259 }
260
261 .settings-tab .file-system-container {
262 border-top: 1px solid #aaa;
263 padding: 19px 0 10px;
264 margin: 20px 0;
265 }
266
267 .settings-tab .file-system-header {
268 display: flex;
269 flex-direction: row;
270 align-items: center;
271 }
272
273 .settings-tab .file-system-name {
274 font-weight: bold;
275 flex: none;
276 margin-right: 10px;
277 font-size: 15px;
278 overflow: hidden;
279 text-overflow: ellipsis;
280 max-width: 70%;
281 }
282
283 .settings-tab .file-system-path {
284 white-space: nowrap;
285 overflow: hidden;
286 text-overflow: ellipsis;
287 flex: auto;
288 }
289
290 .settings-tab .file-system-remove {
291 flex: none;
292 margin-left: 10px;
293 }
294
295 .help-indent-labels label { 222 .help-indent-labels label {
296 padding-left: 10px; 223 padding-left: 10px;
297 } 224 }
298 225
299 .settings-experiment-hidden { 226 .settings-experiment-hidden {
300 display: none; 227 display: none;
301 } 228 }
302 229
303 .settings-experiment-hidden label { 230 .settings-experiment-hidden label {
304 background-color: #ddd; 231 background-color: #ddd;
305 } 232 }
306 233
307 .settings-developer-mode .settings-experiment-hidden { 234 .settings-developer-mode .settings-experiment-hidden {
308 display: block; 235 display: block;
309 } 236 }
310
311 .settings-info-message {
312 background-color: #eee;
313 padding: 10px;
314 margin: 20px 0;
315 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698