OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 margin: 10px; | 6 margin: 10px; |
7 min-width: 47em; | 7 min-width: 47em; |
8 } | 8 } |
9 | 9 |
10 a { | 10 a { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
145 .tmi-mode { | 145 .tmi-mode { |
146 -webkit-padding-start: 10px; | 146 -webkit-padding-start: 10px; |
147 background: rgb(244, 246, 252); | 147 background: rgb(244, 246, 252); |
148 border-bottom: 1px solid rgb(237, 239, 245); | 148 border-bottom: 1px solid rgb(237, 239, 245); |
149 font-size: 89%; | 149 font-size: 89%; |
150 padding-bottom: 0.8em; | 150 padding-bottom: 0.8em; |
151 padding-top: 0.8em; | 151 padding-top: 0.8em; |
152 width: 100%; | 152 width: 100%; |
153 } | 153 } |
154 | 154 |
155 .plugin-disabled > td { | 155 .disabled { |
Evan Stade
2012/04/20 20:49:29
can you change the name of this so it's less gener
Bernhard Bauer
2012/04/23 07:26:08
Done.
| |
156 background-color: #f0f0f0; | 156 background-color: #f0f0f0; |
157 color: #a0a0a0; | 157 color: #a0a0a0; |
158 } | |
159 | |
160 .enabled { | |
Evan Stade
2012/04/20 20:49:29
?
Bernhard Bauer
2012/04/23 07:26:08
Removed. I had forgotten to upload the updated ver
| |
161 } | |
162 | |
163 .plugin > tr > td { | |
158 padding-bottom: 4px; | 164 padding-bottom: 4px; |
159 padding-top: 5px; | 165 padding-top: 5px; |
160 } | 166 } |
161 | 167 |
162 .plugin-enabled > td { | 168 .plugin-file { |
163 padding-bottom: 4px; | |
164 padding-top: 5px; | |
165 } | |
166 | |
167 .plugin-file-disabled { | |
168 background-color: #f0f0f0; | |
169 color: #a0a0a0; | |
170 padding-bottom: 5px; | 169 padding-bottom: 5px; |
171 padding-top: 5px; | 170 padding-top: 5px; |
172 } | 171 } |
173 | |
174 .plugin-file-enabled { | |
175 padding-bottom: 5px; | |
176 padding-top: 5px; | |
177 } | |
178 | 172 |
179 .plugin { | 173 .plugin { |
180 border-bottom: 1px solid #cdcdcd; | 174 border-bottom: 1px solid #cdcdcd; |
181 } | 175 } |
182 | 176 |
183 .critical { | 177 .critical { |
184 color: red; | 178 color: red; |
185 } | 179 } |
186 | 180 |
187 /* Indent the text related to each plug-in. */ | 181 /* Indent the text related to each plug-in. */ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
247 margin-top: 0.2em; | 241 margin-top: 0.2em; |
248 } | 242 } |
249 | 243 |
250 .always-allow { | 244 .always-allow { |
251 -webkit-margin-start: 30px; | 245 -webkit-margin-start: 30px; |
252 } | 246 } |
253 | 247 |
254 button { | 248 button { |
255 font-size: 104%; | 249 font-size: 104%; |
256 } | 250 } |
OLD | NEW |