OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 font: inherit; | 222 font: inherit; |
223 border-width: 1px; | 223 border-width: 1px; |
224 } | 224 } |
225 | 225 |
226 .overrides-view input[type=text] { | 226 .overrides-view input[type=text] { |
227 margin: 0; | 227 margin: 0; |
228 min-height: 2em; | 228 min-height: 2em; |
229 padding: 3px; | 229 padding: 3px; |
230 } | 230 } |
231 | 231 |
| 232 .overrides-view input[readonly] { |
| 233 background-color: rgb(235, 235, 228); |
| 234 } |
| 235 |
232 .overrides-view .overrides-footer { | 236 .overrides-view .overrides-footer { |
233 flex: none; | 237 flex: none; |
234 padding: 0 0 1px 3px; | 238 padding: 0 0 1px 3px; |
235 border-top: 1px solid rgb(203,203,203); | 239 border-top: 1px solid rgb(203,203,203); |
236 background-color: rgb(236,236,236); | 240 background-color: rgb(236,236,236); |
237 } | 241 } |
238 | 242 |
239 .overrides-view .overrides-footer::before { | 243 .overrides-view .overrides-footer::before { |
240 background-image: url(Images/statusbarButtonGlyphs.png); | 244 background-image: url(Images/statusbarButtonGlyphs.png); |
241 background-size: 320px 144px; | 245 background-size: 320px 144px; |
242 width: 10px; | 246 width: 10px; |
243 height: 10px; | 247 height: 10px; |
244 content: ""; | 248 content: ""; |
245 position: relative; | 249 position: relative; |
246 top: 2px; | 250 top: 2px; |
247 background-position: -202px -107px; | 251 background-position: -202px -107px; |
248 float: left; | 252 float: left; |
249 margin-right: 4px; | 253 margin-right: 4px; |
250 } | 254 } |
251 | 255 |
252 @media (-webkit-min-device-pixel-ratio: 1.5) { | 256 @media (-webkit-min-device-pixel-ratio: 1.5) { |
253 .overrides-view .overrides-footer::before { | 257 .overrides-view .overrides-footer::before { |
254 background-image: url(Images/statusbarButtonGlyphs_2x.png); | 258 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
255 } | 259 } |
256 } /* media */ | 260 } /* media */ |
257 | 261 |
258 .overrides-view .overrides-footer .warning-icon-small { | 262 .overrides-view .overrides-footer .warning-icon-small { |
259 margin-right: 3px; | 263 margin-right: 3px; |
260 } | 264 } |
OLD | NEW |