OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .exceptionPattern { | 7 .exceptionPattern { |
8 -webkit-box-flex: 1; | 8 -webkit-box-flex: 1; |
9 display: -webkit-box; | 9 display: -webkit-box; |
10 overflow: hidden; | 10 overflow: hidden; |
11 white-space: nowrap; | 11 white-space: nowrap; |
12 } | 12 } |
13 | 13 |
14 .exceptionSetting { | 14 .exceptionSetting { |
15 display: inline-block; | 15 display: inline-block; |
16 width: 100px; | 16 width: 100px; |
17 margin-right: 20px; | 17 margin-right: 20px; |
18 } | 18 } |
| 19 |
| 20 #exceptionColumnHeaders { |
| 21 display: -webkit-box; |
| 22 margin-bottom: 4px; |
| 23 margin-top: 17px; |
| 24 -webkit-margin-start: 3px; |
| 25 } |
| 26 |
| 27 #exceptionColumnHeaders > div { |
| 28 font-weight: bold; |
| 29 } |
| 30 |
| 31 #exceptionPatternColumn { |
| 32 -webkit-box-flex: 1; |
| 33 } |
| 34 |
| 35 #exceptionBehaviorColumn { |
| 36 width: 140px; |
| 37 } |
OLD | NEW |