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

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

Issue 1167573003: Devtools: Resize glpyhs and add animation icons (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 } 219 }
220 220
221 ol.outline-disclosure:focus li.selected * { 221 ol.outline-disclosure:focus li.selected * {
222 color: inherit; 222 color: inherit;
223 } 223 }
224 224
225 .outline-disclosure li::before { 225 .outline-disclosure li::before {
226 float: left; 226 float: left;
227 -webkit-user-select: none; 227 -webkit-user-select: none;
228 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 228 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
229 -webkit-mask-size: 320px 144px; 229 -webkit-mask-size: 352px 144px;
230 content: "a"; 230 content: "a";
231 color: transparent; 231 color: transparent;
232 text-shadow: none; 232 text-shadow: none;
233 position: relative; 233 position: relative;
234 top: 2px; 234 top: 2px;
235 margin-right: 1px; 235 margin-right: 1px;
236 width: 10px; 236 width: 10px;
237 height: 10px; 237 height: 10px;
238 } 238 }
239 239
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 .sidebar-tree.some-expandable > .sidebar-tree-item:not(.parent) .icon { 373 .sidebar-tree.some-expandable > .sidebar-tree-item:not(.parent) .icon {
374 margin-left: 16px; 374 margin-left: 16px;
375 } 375 }
376 376
377 .sidebar-tree-item .disclosure-button { 377 .sidebar-tree-item .disclosure-button {
378 float: left; 378 float: left;
379 width: 10px; 379 width: 10px;
380 height: 10px; 380 height: 10px;
381 border: 0; 381 border: 0;
382 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 382 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
383 -webkit-mask-size: 320px 144px; 383 -webkit-mask-size: 352px 144px;
384 -webkit-appearance: none; 384 -webkit-appearance: none;
385 background-color: rgba(0, 0, 0, 0.75); 385 background-color: rgba(0, 0, 0, 0.75);
386 position: relative; 386 position: relative;
387 top: 10px; 387 top: 10px;
388 } 388 }
389 389
390 @media (-webkit-min-device-pixel-ratio: 1.5) { 390 @media (-webkit-min-device-pixel-ratio: 1.5) {
391 .sidebar-tree-item .disclosure-button { 391 .sidebar-tree-item .disclosure-button {
392 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 392 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
393 } 393 }
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 } 643 }
644 644
645 body.inactive select.chrome-select, 645 body.inactive select.chrome-select,
646 .chrome-select:disabled { 646 .chrome-select:disabled {
647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
648 border-color: rgba(80, 80, 80, 0.2); 648 border-color: rgba(80, 80, 80, 0.2);
649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
650 inset 0 1px 2px rgba(255, 255, 255, 0.75); 650 inset 0 1px 2px rgba(255, 255, 255, 0.75);
651 color: #aaa; 651 color: #aaa;
652 } 652 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/emulation/responsiveDesignView.css ('k') | Source/devtools/front_end/network/xmlView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698