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

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

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css 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/Widget.js ('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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 116 }
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 .toolbar-item:hover {
127 background-color: #eee; 127 background-color: rgba(110, 110, 110, 0.1);
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 -webkit-appearance: none; 196 -webkit-appearance: none;
197 border: 0; 197 border: 0;
198 border-radius: 0; 198 border-radius: 0;
199 padding: 0 15px 0 5px; 199 padding: 0 15px 0 5px;
200 margin-right: -10px; 200 margin-right: -10px;
201 position: relative; 201 position: relative;
202 line-height: 22px; 202 line-height: 22px;
203 } 203 }
204 204
205 .toolbar-item.checkbox { 205 .toolbar-item.checkbox {
206 margin: auto 6px auto 0; 206 padding-right: 5px;
207 height: auto;
208 display: flex;
209 } 207 }
210 208
211 .toolbar-item > .glyph { 209 .toolbar-item > .glyph {
212 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 210 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
213 -webkit-mask-size: 352px 144px; 211 -webkit-mask-size: 352px 144px;
214 background-color: rgba(0, 0, 0, 0.75); 212 background-color: rgba(0, 0, 0, 0.75);
215 opacity: 0.8; 213 opacity: 0.8;
216 z-index: 1; 214 z-index: 1;
217 width: 32px; 215 width: 32px;
218 height: 24px; 216 height: 24px;
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 441
444 .filter-toolbar-item > .glyph { 442 .filter-toolbar-item > .glyph {
445 -webkit-mask-position: -32px -48px; 443 -webkit-mask-position: -32px -48px;
446 } 444 }
447 445
448 .filter-toolbar-item.toggled-shown .glyph { 446 .filter-toolbar-item.toggled-shown .glyph {
449 background-color: rgb(66, 129, 235); 447 background-color: rgb(66, 129, 235);
450 } 448 }
451 449
452 .filter-toolbar-item.toggled-shown { 450 .filter-toolbar-item.toggled-shown {
453 background-color: rgba(105, 105, 105, 0.1); 451 background-color: #eee;
454 } 452 }
455 453
456 .filter-toolbar-item.toggled-active .glyph { 454 .filter-toolbar-item.toggled-active .glyph {
457 background-color: rgb(216, 0, 0); 455 background-color: rgb(216, 0, 0);
458 } 456 }
459 457
460 .waterfall-toolbar-item .glyph { 458 .waterfall-toolbar-item .glyph {
461 -webkit-mask-position: -128px -48px; 459 -webkit-mask-position: -128px -48px;
462 } 460 }
463 461
464 .pan-toolbar-item .glyph { 462 .pan-toolbar-item .glyph {
465 -webkit-mask-position: -98px -120px; 463 -webkit-mask-position: -98px -120px;
466 } 464 }
467 465
468 .center-toolbar-item .glyph { 466 .center-toolbar-item .glyph {
469 -webkit-mask-position: -128px -120px; 467 -webkit-mask-position: -128px -120px;
470 } 468 }
471 469
472 .rotate-toolbar-item .glyph { 470 .rotate-toolbar-item .glyph {
473 -webkit-mask-position: -160px -120px; 471 -webkit-mask-position: -160px -120px;
474 } 472 }
475 473
476 .element-state-toolbar-item .glyph { 474 .pin-toolbar-item .glyph {
477 -webkit-mask-position: -256px -120px; 475 -webkit-mask-position: -256px -120px;
478 } 476 }
479 477
478 .pin-toolbar-item.toggled-on,
479 .animation-toolbar-item.toggled-on {
480 background-color: #eee;
481 }
482
480 .animation-toolbar-item .glyph { 483 .animation-toolbar-item .glyph {
481 -webkit-mask-position: -192px -120px; 484 -webkit-mask-position: -192px -120px;
482 } 485 }
483 486
484 .eyedropper-toolbar-item .glyph { 487 .eyedropper-toolbar-item .glyph {
485 -webkit-mask-position: -288px -120px; 488 -webkit-mask-position: -288px -120px;
486 } 489 }
487 490
488 .add-toolbar-item .glyph { 491 .add-toolbar-item .glyph {
489 -webkit-mask-position: -224px -120px; 492 -webkit-mask-position: -224px -120px;
(...skipping 24 matching lines...) Expand all
514 } 517 }
515 518
516 .playback-rate-button.toggled-on > .toolbar-button-text { 519 .playback-rate-button.toggled-on > .toolbar-button-text {
517 color: rgb(66, 129, 235); 520 color: rgb(66, 129, 235);
518 } 521 }
519 522
520 button.playback-rate-button { 523 button.playback-rate-button {
521 width: auto; 524 width: auto;
522 margin-right: 10px; 525 margin-right: 10px;
523 } 526 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/Widget.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698