| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .tabbed-pane-header { | 7 .tabbed-pane-header { |
| 8 background-color: #f3f3f3; | 8 background-color: #f3f3f3; |
| 9 flex: 0 0 24px; | 9 flex: 0 0 24px; |
| 10 } | 10 } |
| 11 | 11 |
| 12 :host-context(.material) .tabbed-pane-header { | 12 :host-context(.material) .tabbed-pane-header { |
| 13 flex: 0 0 29px; | 13 flex: 0 0 29px; |
| 14 overflow: visible; | 14 overflow: visible; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .tabbed-pane-header-tab { | |
| 18 height: 23px; | |
| 19 } | |
| 20 | |
| 21 :host-context(.material) .tabbed-pane-header-tab { | 17 :host-context(.material) .tabbed-pane-header-tab { |
| 22 height: 28px; | 18 height: 28px; |
| 23 border: none; | 19 border: none; |
| 24 transition: background-color 100ms cubic-bezier(0.4, 0, 0.2, 1); | 20 transition: background-color 100ms cubic-bezier(0.4, 0, 0.2, 1); |
| 25 } | 21 } |
| 26 | 22 |
| 27 .tabbed-pane-header-tab:hover { | 23 .tabbed-pane-header-tab:hover { |
| 28 background-color: rgba(105, 105, 105, 0.1); | 24 background-color: rgba(105, 105, 105, 0.1); |
| 29 } | 25 } |
| 30 | 26 |
| 31 .tabbed-pane-header-tab, | 27 .tabbed-pane-header-tab, |
| 32 .tabbed-pane-header-tab.selected { | 28 .tabbed-pane-header-tab.selected { |
| 33 border-width: 0 2px 0 2px; | 29 border: none; |
| 30 height: 23px; |
| 31 margin: 0; |
| 34 background: none; | 32 background: none; |
| 35 margin: 0; | |
| 36 padding: 0 3px; | |
| 37 } | |
| 38 | |
| 39 .tabbed-pane-header-tab, | |
| 40 .tabbed-pane-header-tab.selected { | |
| 41 border: none; | 33 border: none; |
| 42 padding: 0 6px; | 34 padding: 0 6px; |
| 43 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); | 35 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); |
| 44 } | 36 } |
| 45 | 37 |
| 38 .tabbed-pane-header-tab { |
| 39 color: #666; |
| 40 } |
| 41 |
| 42 .tabbed-pane-header-tab.selected { |
| 43 color: #333; |
| 44 } |
| 45 |
| 46 :host-context(body.undocked.platform-mac) .tabbed-pane-header { | 46 :host-context(body.undocked.platform-mac) .tabbed-pane-header { |
| 47 background-color: rgb(243, 243, 243); | 47 background-color: rgb(243, 243, 243); |
| 48 color: #333 !important; | 48 color: #333 !important; |
| 49 } | 49 } |
| OLD | NEW |