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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 line-height: 15px; | 110 line-height: 15px; |
111 white-space: nowrap; | 111 white-space: nowrap; |
112 cursor: default; | 112 cursor: default; |
113 display: flex; | 113 display: flex; |
114 align-items: center; | 114 align-items: center; |
115 color: #5a5a5a; | 115 color: #5a5a5a; |
116 } | 116 } |
117 | 117 |
118 .tabbed-pane-header-tab:hover, | 118 .tabbed-pane-header-tab:hover, |
119 .tabbed-pane-header-tab.selected:hover, | 119 .tabbed-pane-header-tab.selected:hover, |
120 .tabbed-pane-header-tab[data-keyboard-focus="true"]:focus { | 120 .tabbed-pane-shadow .tabbed-pane-header-tab[data-keyboard-focus="true"]:focus { |
121 color: #333; | 121 color: #333; |
122 background-color: #e5e5e5; | 122 background-color: #e5e5e5; |
123 } | 123 } |
124 | 124 |
125 .tabbed-pane-header-tab-title { | 125 .tabbed-pane-header-tab-title { |
126 text-overflow: ellipsis; | 126 text-overflow: ellipsis; |
127 overflow: hidden; | 127 overflow: hidden; |
128 } | 128 } |
129 | 129 |
130 .tabbed-pane-header-tab.measuring { | 130 .tabbed-pane-header-tab.measuring { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 | 288 |
289 .tabbed-pane-left-toolbar { | 289 .tabbed-pane-left-toolbar { |
290 margin-right: -4px; | 290 margin-right: -4px; |
291 flex: none; | 291 flex: none; |
292 } | 292 } |
293 | 293 |
294 .tabbed-pane-right-toolbar { | 294 .tabbed-pane-right-toolbar { |
295 margin-left: -4px; | 295 margin-left: -4px; |
296 flex: none; | 296 flex: none; |
297 } | 297 } |
OLD | NEW |