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

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

Issue 1342243006: Devtools UI: Add high DPI chevron overflow icon (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
« no previous file with comments | « Source/devtools/front_end/promises/promisePane.css ('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) 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 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 .tabbed-pane-header-tabs-drop-down-container > .glyph { 148 .tabbed-pane-header-tabs-drop-down-container > .glyph {
149 height: 26px; 149 height: 26px;
150 background-color: hsla(0,0%,20%,1); 150 background-color: hsla(0,0%,20%,1);
151 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 151 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
152 -webkit-mask-position: -68px -143px; 152 -webkit-mask-position: -68px -143px;
153 -webkit-mask-size: 352px 168px; 153 -webkit-mask-size: 352px 168px;
154 width: 24px; 154 width: 24px;
155 } 155 }
156 156
157 @media (-webkit-min-device-pixel-ratio: 1.5) { 157 @media (-webkit-min-device-pixel-ratio: 1.5) {
158 .tabbed-pane-header-tabs-drop-down-container { 158 .tabbed-pane-header-tabs-drop-down-container > .glyph {
159 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 159 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
160 } 160 }
161 } /* media */ 161 } /* media */
162 162
163 .tabbed-pane-header-tabs-drop-down-container:hover { 163 .tabbed-pane-header-tabs-drop-down-container:hover {
164 background-color: rgb(229, 229, 229); 164 background-color: rgb(229, 229, 229);
165 } 165 }
166 166
167 .tabbed-pane-header-tabs-drop-down-container.measuring { 167 .tabbed-pane-header-tabs-drop-down-container.measuring {
168 visibility: hidden; 168 visibility: hidden;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 } 250 }
251 } 251 }
252 252
253 .tabbed-pane-tab-slider.enabled { 253 .tabbed-pane-tab-slider.enabled {
254 visibility: visible; 254 visibility: visible;
255 } 255 }
256 256
257 .tabbed-pane-header.tabbed-pane-no-header-background { 257 .tabbed-pane-header.tabbed-pane-no-header-background {
258 background-color: transparent; 258 background-color: transparent;
259 } 259 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/promises/promisePane.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698