| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |