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

Side by Side Diff: Source/devtools/front_end/ui/toolbar.css

Issue 1164763004: DevTools: render category filters in a way that they don't clash. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for landing Created 5 years, 6 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 | « Source/devtools/front_end/ui/splitWidget.css ('k') | 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 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 :host { 7 :host {
8 flex: none; 8 flex: none;
9 } 9 }
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 button.toolbar-item { 118 button.toolbar-item {
119 width: 30px; 119 width: 30px;
120 } 120 }
121 121
122 :host-context(.material) button.toolbar-item { 122 :host-context(.material) button.toolbar-item {
123 width: 32px; 123 width: 32px;
124 } 124 }
125 125
126 :host-context(.material) button.toolbar-item:hover { 126 :host-context(.material) button.toolbar-item:hover {
127 background-color: rgba(105, 105, 105, 0.1); 127 background-color: #eee;
128 } 128 }
129 129
130 button.toolbar-item.toggled-on .glyph { 130 button.toolbar-item.toggled-on .glyph {
131 background-color: rgb(66, 129, 235) !important; 131 background-color: rgb(66, 129, 235) !important;
132 } 132 }
133 133
134 button.toolbar-item:hover .glyph { 134 button.toolbar-item:hover .glyph {
135 opacity: 1; 135 opacity: 1;
136 } 136 }
137 137
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 } 442 }
443 443
444 .filter-toolbar-item > .glyph { 444 .filter-toolbar-item > .glyph {
445 -webkit-mask-position: -32px -48px; 445 -webkit-mask-position: -32px -48px;
446 } 446 }
447 447
448 .filter-toolbar-item.toggled-shown .glyph { 448 .filter-toolbar-item.toggled-shown .glyph {
449 background-color: rgb(66, 129, 235); 449 background-color: rgb(66, 129, 235);
450 } 450 }
451 451
452 .filter-toolbar-item.toggled-shown {
453 background-color: rgba(105, 105, 105, 0.1);
454 }
455
452 .filter-toolbar-item.toggled-active .glyph { 456 .filter-toolbar-item.toggled-active .glyph {
453 background-color: rgb(216, 0, 0); 457 background-color: rgb(216, 0, 0);
454 } 458 }
455 459
456 .waterfall-toolbar-item .glyph { 460 .waterfall-toolbar-item .glyph {
457 -webkit-mask-position: -128px -48px; 461 -webkit-mask-position: -128px -48px;
458 } 462 }
459 463
460 .pan-toolbar-item .glyph { 464 .pan-toolbar-item .glyph {
461 -webkit-mask-position: -98px -120px; 465 -webkit-mask-position: -98px -120px;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 } 514 }
511 515
512 .playback-rate-button.toggled-on > .toolbar-button-text { 516 .playback-rate-button.toggled-on > .toolbar-button-text {
513 color: rgb(66, 129, 235); 517 color: rgb(66, 129, 235);
514 } 518 }
515 519
516 button.playback-rate-button { 520 button.playback-rate-button {
517 width: auto; 521 width: auto;
518 margin-right: 10px; 522 margin-right: 10px;
519 } 523 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/splitWidget.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698