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

Side by Side Diff: Source/devtools/front_end/components/helpScreen.css

Issue 714423005: DevTools: move front-end files from components to ui. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comment addressed Created 6 years, 1 month 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
OLDNEW
(Empty)
1 .help-window-outer {
2 position: absolute !important;
3 top: 0;
4 left: 0;
5 right: 0;
6 bottom: 0;
7 z-index: 2000;
8 }
9
10 .help-window-main {
11 color: white;
12 background-color: rgba(17, 17, 17, 0.85);
13 display: -webkit-flex;
14 -webkit-flex-direction: column;
15 border-top-width: 0;
16 border-radius: 10px;
17 }
18
19 .help-window-caption {
20 border-bottom: solid 1px rgb(153, 153, 153);
21 margin: 0 8px;
22 padding: 0 2px;
23 line-height: 28px;
24 }
25
26 .help-window-title {
27 font-size: 16px;
28 margin: 0;
29 padding-top: 1px;
30 margin-bottom: -1px;
31 }
32
33 .help-content {
34 overflow-y: auto;
35 overflow-x: hidden;
36 margin: 8px;
37 padding: 0 4px;
38 flex: auto;
39 }
40
41 .help-footnote {
42 border-top: 1px solid #EEEEEE;
43 margin: 0;
44 padding: 12px;
45 }
46
47 .help-window-main .help-container-wrapper::-webkit-scrollbar {
48 width: 11px;
49 }
50
51 .help-window-main .help-container-wrapper::-webkit-scrollbar-corner,
52 .help-window-main .help-container-wrapper::-webkit-resizer {
53 display: none;
54 }
55
56 .help-window-main .help-container-wrapper::-webkit-scrollbar-thumb:vertical {
57 background: linear-gradient(to right, rgb(128, 128, 128), rgb(96, 96, 96) 40 %, rgb(128, 128, 128));
58 border-radius: 5px;
59 min-height: 20px;
60 }
61
62 .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 {
64 background: linear-gradient(to right, rgb(176, 176, 176), rgb(144, 144, 144) 40%, rgb(176, 176, 176));
65 }
66
67 .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));
69 border-radius: 5px;
70 }
71
72 .help-close-button {
73 position: absolute;
74 top: 8px;
75 right: 8px;
76 }
77
78 body.dock-to-bottom .help-content {
79 margin-bottom: 8px;
80 }
81
82 .platform-mac .help-window-main .tabbed-pane-header-contents {
83 margin-left: 27px;
84 }
85
86 .platform-mac .help-window-main .help-window-title {
87 margin-left: 18px;
88 }
89
90 .help-container {
91 width: 100%;
92 -webkit-user-select: auto;
93 -webkit-column-width: 470px;
94 }
95
96 .platform-mac .settings-tab .help-container {
97 -webkit-column-width: 430px;
98 }
99
100 .platform-mac .help-container {
101 -webkit-column-width: 361px;
102 }
103
104 .help-no-columns {
105 -webkit-column-width: initial !important;
106 }
107
108 .help-block {
109 display: block;
110 padding-bottom: 9px;
111 width: 470px;
112 -webkit-column-break-inside: avoid;
113 }
114
115 .platform-mac .settings-tab .help-block {
116 width: 430px;
117 }
118
119 .settings-tab.help-container {
120 -webkit-column-width: 410px;
121 }
122
123 .settings-tab .help-block {
124 width: 410px;
125 margin-left: 20px;
126 }
127
128 .settings-tab .field-error-message {
129 color: DarkRed;
130 height: 0px; /* Avoid changing element height when content is set. */
131 }
132
133 .help-line {
134 padding-bottom: 5px;
135 margin-bottom: 5px;
136 }
137
138 .help-key-cell {
139 display: inline-block;
140 width: 270px;
141 text-align: right;
142 }
143
144 .platform-mac .help-key-cell {
145 width: 151px;
146 }
147
148 .help-cell {
149 display: inline-block;
150 width: 200px;
151 vertical-align: middle;
152 }
153
154 .help-section-title {
155 font-size: 120%;
156 }
157
158 .help-key {
159 padding: 0.1em 0.6em;
160 border: 1px solid #ccc;
161 font-size: 11px;
162 background-color: #f7f7f7;
163 color: #333;
164 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
165 border-radius: 3px;
166 display: inline-block;
167 margin: 0 0.1em;
168 text-shadow: 0 1px 0 #fff;
169 line-height: 1.5;
170 white-space: nowrap;
171 }
172
173 .platform-mac .help-key {
174 font-family: Lucida Grande, sans-serif;
175 }
176
177 .help-combine-keys,
178 .help-key-delimiter {
179 font-size: 9px;
180 }
181
182 .help-combine-keys {
183 margin: 0 0.3em;
184 }
185
186 .help-key-delimiter {
187 margin: 0 0.5em;
188 }
189
190 .help-window-outer fieldset {
191 margin: 0;
192 padding: 0;
193 border: none;
194 }
195
196 .settings-tab label {
197 padding-right: 4px;
198 display: inline-flex;
199 }
200
201 #general-tab-content .help-block fieldset legend {
202 font-size: 14px;
203 }
204
205 .help-block p p {
206 padding-left: 30px;
207 }
208
209 #enable-devtools-on-startup {
210 margin: 0 0 0 80px;
211 display: inline-block;
212 }
213
214 .help-content p.help-section {
215 margin: 0 0 15px 0;
216 }
217
218 .settings-experiments-warning-subsection-warning {
219 color: rgb(200, 0, 0);
220 }
221
222 .settings-experiments-warning-subsection-message {
223 color: inherit;
224 }
225
226 #resolution-override-section {
227 margin-left: 13px;
228 }
229
230 .help-content input[type=checkbox] {
231 margin-right: 7px;
232 }
233
234 .help-content option {
235 background-color: #EEEEEE;
236 color: #222;
237 }
238
239 #settings-screen .help-window-main{
240 color: rgb(48, 57, 66);
241 background-color: white;
242 border-radius: 0;
243 }
244
245 #settings-screen .help-window-main {
246 position: absolute;
247 top: 10px;
248 right: 10px;
249 bottom: 10px;
250 left: 10px;
251 height: initial;
252 padding: 21px 0 0 21px;
253 box-shadow: 1px 1px 5px 2px rgba(128, 128, 128, 0.7);
254 }
255
256 #settings-screen .help-window-label {
257 font-size: 18px;
258 color: inherit;
259 padding-top: 1px;
260 }
261
262 .help-container-wrapper {
263 position: absolute;
264 top: 54px;
265 left: 15px;
266 right: 0;
267 bottom: 0;
268 overflow: auto;
269 }
270
271 #settings-screen .tabbed-pane-header {
272 border: none transparent;
273 height: auto;
274 width: 110px;
275 margin-top: 14px;
276 flex: auto;
277 }
278
279 #settings-screen .tabbed-pane-header-contents {
280 margin: 0;
281 }
282
283 #settings-screen .tabbed-pane-header-tabs {
284 display: flex;
285 flex-direction: column;
286 padding-top: 5px;
287 width: 100px;
288 }
289
290 #settings-screen .tabbed-pane-header-tab {
291 background-color: transparent;
292 border: none transparent;
293 font-weight: normal;
294 text-shadow: none;
295 color: #999999;
296 height: 22px;
297 padding-left: 0;
298 }
299
300 #settings-screen .tabbed-pane-header-tab:not(.selected) {
301 cursor: pointer;
302 }
303
304 #settings-screen .tabbed-pane-header-tab.selected {
305 color: inherit;
306 }
307
308 #settings-screen .tabbed-pane-content {
309 position: absolute;
310 top: 0;
311 right: 0;
312 bottom: 0;
313 margin: 8px;
314 }
315
316 #settings-screen .tabbed-pane-content {
317 left: 120px;
318 }
319
320 .settings-tab.help-content {
321 margin: 0;
322 padding: 0;
323 }
324
325 .settings-tab input:not([type]),
326 .settings-tab input[type="text"] {
327 border: 1px solid rgb(213, 213, 213);
328 border-radius: 2px;
329 color: #444444;
330 padding: 3px;
331 }
332
333 .settings-tab input.numeric {
334 text-align: right;
335 }
336
337 .settings-tab-container {
338 flex: auto;
339 overflow: hidden;
340 }
341
342 .settings-tab-container header {
343 padding: 14px 0 6px;
344 border-bottom: 1px solid #EEEEEE;
345 }
346
347 #tab-shortcuts {
348 margin-top: 25px !important;
349 }
350
351 #experiments-tab-content .help-container {
352 -webkit-column-width: 470px;
353 }
354
355 #experiments-tab-content .help-block {
356 width: 470px;
357 }
358
359 .settings-tab-container header > h3 {
360 font-size: 18px;
361 font-weight: normal;
362 margin: 0;
363 padding-bottom: 3px;
364 }
365
366 .settings-tab .help-section-title {
367 margin-left: -20px;
368 color: #222;
369 }
370
371 .settings-tab .help-block fieldset:disabled label:hover {
372 color: inherit;
373 }
374
375 .settings-tab .help-block label:hover {
376 color: #222;
377 }
378
379 .settings-tab p {
380 margin: 12px 0;
381 }
382
383 .settings-tab select {
384 margin-left: 10px;
385 }
386
387 #workspace-tab-content .settings-tab.help-content.help-container {
388 -webkit-column-width: initial;
389 }
390
391
392 #workspace-tab-content .button:hover {
393 opacity: 1.0 !important;
394 }
395
396 .settings-tab .settings-list-container {
397 background-color: white;
398 margin-bottom: 10px;
399 }
400
401 .settings-tab .settings-list {
402 border: 1px solid hsl(0, 0%, 85%);
403 border-radius: 2px;
404 }
405
406 .settings-tab .settings-list .settings-list-item .settings-list-item-contents {
407 width: 100%;
408 height: 40px;
409 -webkit-box-align: center;
410 -webkit-transition: 150ms background-color;
411 display: -webkit-box;
412 padding-right: 3px;
413 }
414
415 .settings-tab .settings-list .settings-list-item .settings-list-item-contents > :first-child {
416 -webkit-box-align: center;
417 -webkit-box-flex: 1;
418 -webkit-padding-end: 5px;
419 display: -webkit-box;
420 }
421
422 .settings-tab .settings-list .settings-list-item.selected:not(.editable) {
423 background-color: hsl(0, 0%, 82%);
424 }
425
426 .settings-tab .settings-list .settings-list-item:hover {
427 background-color: hsl(215, 54%, 93%);
428 }
429
430 .settings-tab .settings-list .settings-list-item.selected:not(.editable):hover {
431 background-color: hsl(215, 51%, 82%);
432 }
433
434 .settings-tab .settings-list .settings-list-item .remove-item-button {
435 -webkit-transition: 150ms opacity;
436 background-color: hsla(0, 0%, 0%, 0);
437 background-image: -webkit-image-set(
438 url(Images/settingsListRemove.png) 1x,
439 url(Images/settingsListRemove_2x.png) 2x);
440 background-size: 48px 16px;
441 border: none;
442 display: block;
443 height: 16px;
444 width: 16px;
445 opacity: 0;
446 pointer-events: none;
447 }
448
449 .settings-tab .settings-list .settings-list-item.selected .remove-item-button,
450 .settings-tab .settings-list .settings-list-item:hover .remove-item-button {
451 opacity: 1;
452 pointer-events: auto;
453 }
454
455 .settings-tab .settings-list .settings-list-item .remove-item-button:hover {
456 background-position-x: -32px;
457 }
458
459 .settings-tab .settings-list .settings-list-item .remove-item-button:active {
460 background-position-x: -16px;
461 }
462
463 .settings-list-item-columns {
464 height: 100%;
465 }
466
467 .settings-tab .settings-list .settings-list-item .list-column {
468 displaY: -webkit-box;
469 -webkit-box-align: center;
470 padding-left: 5px;
471 padding-right: 2px;
472 box-sizing: border-box;
473 overflow: hidden;
474 text-overflow: ellipsis;
475 height: 100%;
476 }
477
478 .settings-tab .settings-list .settings-list-item .list-column .list-column-edito r {
479 width: 100%;
480 }
481
482 .settings-tab .settings-list .settings-list-item.add-list-item .remove-item-butt on {
483 visibility: hidden;
484 }
485
486 .settings-tab .settings-list .settings-list-item.editable .list-column .list-col umn-editor {
487 display: none;
488 }
489
490 .settings-tab .settings-list .settings-list-item.editable.item-editing .list-col umn .list-column-editor {
491 display: block;
492 }
493
494 .settings-tab .settings-list .settings-list-item.editable.item-editing .list-col umn .list-column-text {
495 display: none;
496 }
497
498 .settings-tab .settings-list .settings-list-item.editable.item-editing .list-col umn .list-column-editor.editable-item-error {
499 background-color: pink;
500 }
501
502 input.list-column-editor {
503 border: 1px solid rgb(213, 213, 213);
504 border-radius: 2px;
505 color: #444444;
506 padding: 3px;
507 }
508 select.list-column-editor {
509 padding: 2px;
510 margin-left: 0px;
511 }
512
513 .settings-tab .settings-list .settings-list-item .file-system-path {
514 white-space: nowrap;
515 font-size: 12px;
516 padding-left: 6px;
517 padding-right: 5px;
518 -webkit-box-flex: 1;
519 color: hsl(210, 16%, 22%);
520 }
521
522 .settings-tab .settings-list .settings-list-item .file-system-path-name {
523 padding-right: 6px;
524 font-weight: bold;
525 }
526
527 .file-systems-list .settings-list-item .list-column.settings-list-column-path {
528 width: 100%;
529 }
530
531 .file-mappings-list .settings-list-item .list-column.settings-list-column-url {
532 width: 50%;
533 }
534
535 .file-mappings-list .settings-list-item .list-column.settings-list-column-path {
536 width: 50%;
537 }
538
539 .blackbox-patterns-list .settings-list-item .list-column.settings-list-column-pa ttern {
540 width: 50%;
541 }
542
543 .blackbox-patterns-list .settings-list-item .list-column.settings-list-column-va lue {
544 width: 50%;
545 }
546
547 .excluded-folders-list .settings-list-item .list-column.settings-list-column-pat h {
548 width: 100%;
549 }
550
551 .settings-tab .settings-list .settings-list-item.disabled .settings-list-column- pattern .list-column-text {
552 color: #666;
553 text-decoration: line-through;
554 }
555
556 .settings-dialog {
557 border-radius: 3px;
558 box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
559 display: -webkit-flex;
560 -webkit-flex-direction: column;
561 background: white;
562 }
563
564 .settings-dialog .dialog-contents {
565 display: flex;
566 flex-direction: column;
567 }
568
569 .settings-dialog .header {
570 flex: 0 0 auto;
571 color: #333;
572 font-size: 14px;
573 margin: 0;
574 padding: 14px 17px 14px;
575 }
576
577 .settings-dialog .contents {
578 flex: 1 1 auto;
579 padding: 0 17px;
580 overflow-x: hidden;
581 overflow-y: auto;
582 }
583
584 .settings-dialog .block-header {
585 color: black;
586 font-size: 1.2em;
587 margin-bottom: 0.8em;
588 }
589
590 .blackbox-dialog .columns-header {
591 color: black;
592 font-weight: bold;
593 margin-bottom: 0.4em;
594 display: -webkit-box;
595 padding: 0;
596 }
597
598 .blackbox-dialog .columns-header span {
599 width: 50%;
600 display: -webkit-box;
601 }
602
603 .blackbox-dialog .columns-header span + span {
604 margin-left: -7px
605 }
606
607 .blackbox-content-scripts {
608 padding: 0 0 14px 0;
609 margin-left: -4px;
610 }
611
612 .settings-dialog .done-button {
613 float: right;
614 }
615
616 .settings-glass-pane {
617 -webkit-box-align: center;
618 -webkit-box-orient: vertical;
619 -webkit-box-pack: center;
620 display: -webkit-box;
621 z-index: 2000 !important;
622 padding: 5px;
623 background-color: rgba(255, 255, 255, 0.4) !important;
624 }
625
626 .help-indent-labels label {
627 padding-left: 10px;
628 }
629
630 .dialog-contents .section {
631 min-width: 400px;
632 }
633
634 .settings-experiment-hidden {
635 display: none;
636 }
637
638 .settings-experiment-hidden label {
639 background-color: #ddd;
640 }
641
642 .settings-developer-mode .settings-experiment-hidden {
643 display: block;
644 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/flameChart.css ('k') | Source/devtools/front_end/components/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698