| 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-tab, | 7 .tabbed-pane-header-tab, |
| 8 .tabbed-pane-header-tab.selected { | 8 .tabbed-pane-header-tab.selected { |
| 9 height: 26px; | 9 height: 26px; |
| 10 margin: 0; | 10 margin: 0; |
| 11 background: #f3f3f3; | 11 background: #f3f3f3; |
| 12 border: none; | 12 border: none; |
| 13 border-left: 2px solid transparent; | 13 border-left: 2px solid transparent; |
| 14 border-right: 2px solid transparent; | 14 border-right: 2px solid transparent; |
| 15 padding: 0 6px; | 15 padding: 0 6px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .tabbed-pane-header-tab.selected { | 18 .tabbed-pane-header-tab.selected { |
| 19 border-width: 0 2px 0 2px; | 19 border-width: 0 2px 0 2px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .tabbed-pane-header-contents { | 22 .tabbed-pane-header-contents { |
| 23 margin-left: 0; | 23 margin-left: 0; |
| 24 } | 24 } |
| 25 |
| 26 .tabbed-pane-left-toolbar { |
| 27 margin-right: 0 !important; |
| 28 } |
| OLD | NEW |