| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 border-top-color: #ccc; | 119 border-top-color: #ccc; |
| 120 } | 120 } |
| 121 | 121 |
| 122 .tabbed-pane-header-tab.dragging { | 122 .tabbed-pane-header-tab.dragging { |
| 123 position: relative; | 123 position: relative; |
| 124 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37); | 124 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37); |
| 125 background-color: #e5e5e5; | 125 background-color: #e5e5e5; |
| 126 } | 126 } |
| 127 | 127 |
| 128 .tabbed-pane-header-tab .tabbed-pane-close-button { | 128 .tabbed-pane-header-tab .tabbed-pane-close-button { |
| 129 display: inline-block; | 129 margin: 0 -3px 0 4px; |
| 130 position: relative; | |
| 131 top: 2px; | |
| 132 left: 1px; | |
| 133 margin-left: 2px; | |
| 134 margin-top: -3px; | |
| 135 visibility: hidden; | 130 visibility: hidden; |
| 136 } | 131 } |
| 137 | 132 |
| 138 .tabbed-pane-header-tab:hover .tabbed-pane-close-button, | 133 .tabbed-pane-header-tab:hover .tabbed-pane-close-button, |
| 139 .tabbed-pane-header-tab.selected .tabbed-pane-close-button { | 134 .tabbed-pane-header-tab.selected .tabbed-pane-close-button { |
| 140 visibility: visible; | 135 visibility: visible; |
| 141 } | 136 } |
| 142 | 137 |
| 143 .tabbed-pane-header-tabs-drop-down-container { | 138 .tabbed-pane-header-tabs-drop-down-container { |
| 144 float: left; | 139 float: left; |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 277 |
| 283 .tabbed-pane-left-toolbar { | 278 .tabbed-pane-left-toolbar { |
| 284 margin-right: -4px; | 279 margin-right: -4px; |
| 285 flex: none; | 280 flex: none; |
| 286 } | 281 } |
| 287 | 282 |
| 288 .tabbed-pane-right-toolbar { | 283 .tabbed-pane-right-toolbar { |
| 289 margin-left: -4px; | 284 margin-left: -4px; |
| 290 flex: none; | 285 flex: none; |
| 291 } | 286 } |
| OLD | NEW |