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: Source/devtools/front_end/ui/toolbar.css

Issue 1158133004: Devtools UX: Add elements toolbar with breadcrumbs (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix padding 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
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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 .toolbar-counter-item.toolbar-counter-item-first { 250 .toolbar-counter-item.toolbar-counter-item-first {
251 margin-left: 0; 251 margin-left: 0;
252 } 252 }
253 253
254 .toolbar-counter-item > div { 254 .toolbar-counter-item > div {
255 margin-right: 2px; 255 margin-right: 2px;
256 } 256 }
257 257
258 .toolbar-divider { 258 .toolbar-divider {
259 margin-left: 7px; 259 margin-left: 7px;
260 border-right: 1px solid #CCC; 260 border-right: 1px solid hsla(0, 0%, 0%, 0.1);
261 }
262
263 :host-context(.material) .toolbar-divider {
264 height: 18px;
261 } 265 }
262 266
263 .toolbar-group-label { 267 .toolbar-group-label {
264 margin-left: 6px; 268 margin-left: 6px;
265 margin-right: 3px; 269 margin-right: 3px;
266 color: #888; 270 color: #888;
267 } 271 }
268 272
269 273
270 /* Predefined items */ 274 /* Predefined items */
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 } 502 }
499 503
500 .playback-rate-button.toggled-on > .toolbar-button-text { 504 .playback-rate-button.toggled-on > .toolbar-button-text {
501 color: rgb(66, 129, 235); 505 color: rgb(66, 129, 235);
502 } 506 }
503 507
504 button.playback-rate-button { 508 button.playback-rate-button {
505 width: auto; 509 width: auto;
506 margin-right: 10px; 510 margin-right: 10px;
507 } 511 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698