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

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

Issue 2654063002: DevTools: migrate TabbedPane chevron over to UI.Icon. (Closed)
Patch Set: rebaseline Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js ('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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 float: left; 139 float: left;
140 position: relative; 140 position: relative;
141 vertical-align: bottom; 141 vertical-align: bottom;
142 line-height: 24px; 142 line-height: 24px;
143 opacity: 0.8; 143 opacity: 0.8;
144 color: inherit; 144 color: inherit;
145 font-size: 133%; 145 font-size: 133%;
146 cursor: pointer; 146 cursor: pointer;
147 } 147 }
148 148
149 .tabbed-pane-header-tabs-drop-down-container > .glyph { 149 .tabbed-pane-header-tabs-drop-down-container > .chevron-icon {
150 height: 26px;
151 background-color: hsla(0,0%,20%,1); 150 background-color: hsla(0,0%,20%,1);
152 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 151 display: block;
153 -webkit-mask-position: -68px -143px;
154 -webkit-mask-size: 352px 168px;
155 width: 24px;
156 } 152 }
157 153
158 @media (-webkit-min-device-pixel-ratio: 1.1) {
159 .tabbed-pane-header-tabs-drop-down-container > .glyph {
160 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
161 }
162 } /* media */
163
164 .tabbed-pane-header-tabs-drop-down-container:hover { 154 .tabbed-pane-header-tabs-drop-down-container:hover {
165 background-color: rgb(229, 229, 229); 155 background-color: rgb(229, 229, 229);
166 } 156 }
167 157
168 .tabbed-pane-header-tabs-drop-down-container.measuring { 158 .tabbed-pane-header-tabs-drop-down-container.measuring {
169 visibility: hidden; 159 visibility: hidden;
170 } 160 }
171 161
172 .tabbed-pane-header-tabs-drop-down-container:hover { 162 .tabbed-pane-header-tabs-drop-down-container:hover {
173 opacity: 1.0; 163 opacity: 1.0;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 267
278 .tabbed-pane-left-toolbar { 268 .tabbed-pane-left-toolbar {
279 margin-right: -4px; 269 margin-right: -4px;
280 flex: none; 270 flex: none;
281 } 271 }
282 272
283 .tabbed-pane-right-toolbar { 273 .tabbed-pane-right-toolbar {
284 margin-left: -4px; 274 margin-left: -4px;
285 flex: none; 275 flex: none;
286 } 276 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698