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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 1290883006: Devtools: Add new row in toolbarButtonGlyphs and layout editor icon (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 } 204 }
205 205
206 ol.outline-disclosure:focus li.selected * { 206 ol.outline-disclosure:focus li.selected * {
207 color: inherit; 207 color: inherit;
208 } 208 }
209 209
210 .outline-disclosure li::before { 210 .outline-disclosure li::before {
211 float: left; 211 float: left;
212 -webkit-user-select: none; 212 -webkit-user-select: none;
213 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 213 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
214 -webkit-mask-size: 352px 144px; 214 -webkit-mask-size: 352px 168px;
215 content: "a"; 215 content: "a";
216 color: transparent; 216 color: transparent;
217 text-shadow: none; 217 text-shadow: none;
218 position: relative; 218 position: relative;
219 top: 2px; 219 top: 2px;
220 margin-right: 1px; 220 margin-right: 1px;
221 width: 10px; 221 width: 10px;
222 height: 10px; 222 height: 10px;
223 } 223 }
224 224
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 .sidebar-tree.some-expandable > .sidebar-tree-item:not(.parent) .icon { 358 .sidebar-tree.some-expandable > .sidebar-tree-item:not(.parent) .icon {
359 margin-left: 16px; 359 margin-left: 16px;
360 } 360 }
361 361
362 .sidebar-tree-item .disclosure-button { 362 .sidebar-tree-item .disclosure-button {
363 float: left; 363 float: left;
364 width: 10px; 364 width: 10px;
365 height: 10px; 365 height: 10px;
366 border: 0; 366 border: 0;
367 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 367 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
368 -webkit-mask-size: 352px 144px; 368 -webkit-mask-size: 352px 168px;
369 -webkit-appearance: none; 369 -webkit-appearance: none;
370 background-color: rgba(0, 0, 0, 0.75); 370 background-color: rgba(0, 0, 0, 0.75);
371 position: relative; 371 position: relative;
372 top: 10px; 372 top: 10px;
373 } 373 }
374 374
375 @media (-webkit-min-device-pixel-ratio: 1.5) { 375 @media (-webkit-min-device-pixel-ratio: 1.5) {
376 .sidebar-tree-item .disclosure-button { 376 .sidebar-tree-item .disclosure-button {
377 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 377 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
378 } 378 }
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 } 628 }
629 629
630 body.inactive select.chrome-select, 630 body.inactive select.chrome-select,
631 .chrome-select:disabled { 631 .chrome-select:disabled {
632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
633 border-color: rgba(80, 80, 80, 0.2); 633 border-color: rgba(80, 80, 80, 0.2);
634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
635 inset 0 1px 2px rgba(255, 255, 255, 0.75); 635 inset 0 1px 2px rgba(255, 255, 255, 0.75);
636 color: #aaa; 636 color: #aaa;
637 } 637 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/emulation/overrides.css ('k') | Source/devtools/front_end/network/xmlView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698