| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 { | 48 .tabbed-pane-placeholder { |
| 49 font-size: 14px; | 49 font-size: 14px; |
| 50 text-align: center; | 50 text-align: center; |
| 51 margin-top: 20px; | 51 margin-top: 20px; |
| 52 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; | 52 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 53 white-space: pre; | 53 line-height: 28px; |
| 54 overflow: hidden; |
| 55 } |
| 56 |
| 57 .tabbed-pane-placeholder-row { |
| 58 display: flex; |
| 59 white-space: nowrap; |
| 60 } |
| 61 |
| 62 .tabbed-pane-placeholder-key { |
| 63 flex: 1; |
| 64 text-align: right; |
| 65 padding-right: 14px; |
| 66 overflow: hidden; |
| 67 text-overflow: ellipsis; |
| 68 } |
| 69 |
| 70 .tabbed-pane-placeholder-value { |
| 71 flex: 1; |
| 72 text-align: left; |
| 73 padding-left: 14px; |
| 54 } | 74 } |
| 55 | 75 |
| 56 .tabbed-pane-header { | 76 .tabbed-pane-header { |
| 57 display: flex; | 77 display: flex; |
| 58 flex: 0 0 27px; | 78 flex: 0 0 27px; |
| 59 border-bottom: 1px solid #ccc; | 79 border-bottom: 1px solid #ccc; |
| 60 overflow: visible; | 80 overflow: visible; |
| 61 width: 100%; | 81 width: 100%; |
| 62 background-color: #f3f3f3; | 82 background-color: #f3f3f3; |
| 63 } | 83 } |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 287 |
| 268 .tabbed-pane-left-toolbar { | 288 .tabbed-pane-left-toolbar { |
| 269 margin-right: -4px; | 289 margin-right: -4px; |
| 270 flex: none; | 290 flex: none; |
| 271 } | 291 } |
| 272 | 292 |
| 273 .tabbed-pane-right-toolbar { | 293 .tabbed-pane-right-toolbar { |
| 274 margin-left: -4px; | 294 margin-left: -4px; |
| 275 flex: none; | 295 flex: none; |
| 276 } | 296 } |
| OLD | NEW |