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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 } | 68 } |
69 | 69 |
70 .tabbed-pane-header-tab { | 70 .tabbed-pane-header-tab { |
71 float: left; | 71 float: left; |
72 margin-top: 2px; | 72 margin-top: 2px; |
73 padding: 2px 4px 2px 4px; | 73 padding: 2px 4px 2px 4px; |
74 height: 21px; | 74 height: 21px; |
75 border: 1px solid transparent; | 75 border: 1px solid transparent; |
76 border-bottom: none; | 76 border-bottom: none; |
77 line-height: 15px; | 77 line-height: 15px; |
78 | |
79 white-space: nowrap; | 78 white-space: nowrap; |
80 text-overflow: ellipsis; | 79 text-overflow: ellipsis; |
81 overflow: hidden; | 80 overflow: hidden; |
82 cursor: default; | 81 cursor: default; |
83 } | 82 } |
84 | 83 |
85 .tabbed-pane-header-tab.measuring { | 84 .tabbed-pane-header-tab.measuring { |
86 visibility: hidden; | 85 visibility: hidden; |
87 } | 86 } |
88 | 87 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 .tabbed-pane-header-tabs-drop-down > select.drop-down-menu { | 149 .tabbed-pane-header-tabs-drop-down > select.drop-down-menu { |
151 position: absolute; | 150 position: absolute; |
152 top: 0; | 151 top: 0; |
153 right: 0; | 152 right: 0; |
154 bottom: 0; | 153 bottom: 0; |
155 left: 0; | 154 left: 0; |
156 opacity: 0; | 155 opacity: 0; |
157 font-size: 75%; | 156 font-size: 75%; |
158 width: 20px; | 157 width: 20px; |
159 } | 158 } |
OLD | NEW |