OLD | NEW |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 body { | 5 body { |
6 color: #333; | 6 color: #333; |
7 } | 7 } |
8 | 8 |
9 h2 { | 9 h2 { |
10 font-size: 110%; | 10 font-size: 110%; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 #tabpanel-prefs ul { | 44 #tabpanel-prefs ul { |
45 list-style-type: none; | 45 list-style-type: none; |
46 padding-left: 0; | 46 padding-left: 0; |
47 } | 47 } |
48 | 48 |
49 #tabpanel-prefs ul li { | 49 #tabpanel-prefs ul li { |
50 width: 100%; | 50 width: 100%; |
51 } | 51 } |
52 | 52 |
53 #tabpanel-prefs ul li button { | 53 #tabpanel-prefs button.dismissing { |
54 background-color: transparent; | 54 background-color: transparent; |
55 border-style: solid; | 55 border-style: solid; |
56 border-width: 1px; | 56 border-width: 1px; |
57 color: #666; | 57 color: #666; |
58 cursor: pointer; | 58 cursor: pointer; |
59 font-size: 110%; | 59 font-size: 110%; |
60 margin-left: 1em; | 60 margin-left: 1em; |
61 } | 61 } |
62 | 62 |
63 .detection-logs-time { | 63 .detection-logs-time { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 .event-logs-place { | 123 .event-logs-place { |
124 overflow: hidden; | 124 overflow: hidden; |
125 text-overflow: ellipsis; | 125 text-overflow: ellipsis; |
126 white-space: nowrap; | 126 white-space: nowrap; |
127 width: 35%; | 127 width: 35%; |
128 } | 128 } |
129 | 129 |
130 .event-logs-message { | 130 .event-logs-message { |
131 width: 50%; | 131 width: 50%; |
132 } | 132 } |
| 133 |
| 134 .prefs-setting-disabled { |
| 135 display: none; |
| 136 } |
OLD | NEW |