| 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 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 .metrics .top { | 146 .metrics .top { |
| 147 display: inline-block; | 147 display: inline-block; |
| 148 } | 148 } |
| 149 | 149 |
| 150 .metrics .bottom { | 150 .metrics .bottom { |
| 151 display: inline-block; | 151 display: inline-block; |
| 152 } | 152 } |
| 153 | 153 |
| 154 .styles-section { | 154 .styles-section { |
| 155 padding: 2px 2px 4px 4px; | |
| 156 min-height: 18px; | 155 min-height: 18px; |
| 157 white-space: nowrap; | 156 white-space: nowrap; |
| 158 -webkit-user-select: text; | 157 -webkit-user-select: text; |
| 159 border-bottom: 1px solid #eee; | 158 border-bottom: 1px solid #eee; |
| 160 position: relative; | 159 position: relative; |
| 161 overflow: hidden; | 160 overflow: hidden; |
| 162 } | 161 } |
| 163 | 162 |
| 163 .styles-section > div { |
| 164 padding: 2px 2px 4px 4px; |
| 165 } |
| 166 |
| 164 .styles-section:last-child { | 167 .styles-section:last-child { |
| 165 border-bottom: none; | 168 border-bottom: none; |
| 166 } | 169 } |
| 167 | 170 |
| 168 .styles-pane .sidebar-separator { | 171 .styles-pane .sidebar-separator { |
| 169 border-top: 0 none; | 172 border-top: 0 none; |
| 170 } | 173 } |
| 171 | 174 |
| 172 .style-panes-wrapper { | 175 .style-panes-wrapper { |
| 173 overflow: auto; | 176 overflow: auto; |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 display: flex; | 532 display: flex; |
| 530 flex-direction: row; | 533 flex-direction: row; |
| 531 align-items: center; | 534 align-items: center; |
| 532 } | 535 } |
| 533 | 536 |
| 534 .elements-tree-header-frame { | 537 .elements-tree-header-frame { |
| 535 margin-left: 6px; | 538 margin-left: 6px; |
| 536 margin-right: 6px; | 539 margin-right: 6px; |
| 537 flex: none; | 540 flex: none; |
| 538 } | 541 } |
| OLD | NEW |