| 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 27 matching lines...) Expand all Loading... |
| 38 overflow: auto; | 38 overflow: auto; |
| 39 flex: auto; | 39 flex: auto; |
| 40 display: flex; | 40 display: flex; |
| 41 flex-direction: column; | 41 flex-direction: column; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .tabbed-pane-content.has-no-tabs { | 44 .tabbed-pane-content.has-no-tabs { |
| 45 background-color: lightgray; | 45 background-color: lightgray; |
| 46 } | 46 } |
| 47 | 47 |
| 48 .tabbed-pane-placeholder { | |
| 49 font-size: 14px; | |
| 50 text-align: center; | |
| 51 margin-top: 20px; | |
| 52 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; | |
| 53 } | |
| 54 | |
| 55 .tabbed-pane-header { | 48 .tabbed-pane-header { |
| 56 display: flex; | 49 display: flex; |
| 57 flex: 0 0 27px; | 50 flex: 0 0 27px; |
| 58 border-bottom: 1px solid #ccc; | 51 border-bottom: 1px solid #ccc; |
| 59 overflow: visible; | 52 overflow: visible; |
| 60 width: 100%; | 53 width: 100%; |
| 61 background-color: #f3f3f3; | 54 background-color: #f3f3f3; |
| 62 } | 55 } |
| 63 | 56 |
| 64 .tabbed-pane-header-contents { | 57 .tabbed-pane-header-contents { |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 260 |
| 268 .tabbed-pane-left-toolbar { | 261 .tabbed-pane-left-toolbar { |
| 269 margin-right: -4px; | 262 margin-right: -4px; |
| 270 flex: none; | 263 flex: none; |
| 271 } | 264 } |
| 272 | 265 |
| 273 .tabbed-pane-right-toolbar { | 266 .tabbed-pane-right-toolbar { |
| 274 margin-left: -4px; | 267 margin-left: -4px; |
| 275 flex: none; | 268 flex: none; |
| 276 } | 269 } |
| OLD | NEW |