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

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

Issue 1304173004: Devtools UI: Add node-specific actions into a ghost toolbar in DOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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
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 padding: 0 2px; 9 padding: 0 2px;
10 } 10 }
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 } 265 }
266 266
267 .settings-toolbar-item .glyph { 267 .settings-toolbar-item .glyph {
268 -webkit-mask-position: -160px -24px; 268 -webkit-mask-position: -160px -24px;
269 } 269 }
270 270
271 .menu-toolbar-item .glyph { 271 .menu-toolbar-item .glyph {
272 -webkit-mask-position: -192px -24px; 272 -webkit-mask-position: -192px -24px;
273 } 273 }
274 274
275 .horizontal-dots-toolbar-item .glyph {
276 -webkit-mask-position: -201px -26px;
277 /* -webkit-mask-size: 352px 168px; */
278 width: 16.25px;
279 height: 20px;
280 transform: scale(0.8) rotate(90deg);
281 position: absolute;
282 top: -3px;
283 left: 0;
284 }
285
275 .node-search-toolbar-item .glyph { 286 .node-search-toolbar-item .glyph {
276 -webkit-mask-position: -320px -120px; 287 -webkit-mask-position: -320px -120px;
277 } 288 }
278 289
279 .emulation-toolbar-item .glyph { 290 .emulation-toolbar-item .glyph {
280 -webkit-mask-position: -160px 0; 291 -webkit-mask-position: -160px 0;
281 } 292 }
282 293
283 .emulation-toolbar-item.warning::after { 294 .emulation-toolbar-item.warning::after {
284 background-image: url(Images/toolbarButtonGlyphs.png); 295 background-image: url(Images/toolbarButtonGlyphs.png);
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 } 530 }
520 531
521 button.playback-rate-button { 532 button.playback-rate-button {
522 width: auto; 533 width: auto;
523 margin-right: 10px; 534 margin-right: 10px;
524 } 535 }
525 536
526 .layout-editor-toolbar-item .glyph { 537 .layout-editor-toolbar-item .glyph {
527 -webkit-mask-position: 0 -144px; 538 -webkit-mask-position: 0 -144px;
528 } 539 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698