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 | 5 |
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, | 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, |
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, | 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, |
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, | 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, |
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, | 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, |
10 tfoot, thead, tr, th, td, button { | 10 tfoot, thead, tr, th, td, button { |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 border: 1px solid #f0c36d; | 370 border: 1px solid #f0c36d; |
371 -webkit-border-radius: 2px; | 371 -webkit-border-radius: 2px; |
372 box-shadow: 0px 2px 4px rgba(0,0,0,0.2); | 372 box-shadow: 0px 2px 4px rgba(0,0,0,0.2); |
373 color: #222; | 373 color: #222; |
374 padding: 8px 16px; | 374 padding: 8px 16px; |
375 text-align: center; | 375 text-align: center; |
376 font-size: 12px; | 376 font-size: 12px; |
377 margin-top: 30px; | 377 margin-top: 30px; |
378 } | 378 } |
379 | 379 |
380 #survey-opt-in { | 380 #butter-bar { |
381 position: absolute; | 381 position: absolute; |
382 top: 80px; | 382 top: 80px; |
383 left: 0; | 383 left: 0; |
384 } | |
385 | |
386 .butter-bar { | |
387 display: -webkit-box; | 384 display: -webkit-box; |
388 width: 100%; | 385 width: 100%; |
389 } | 386 } |
390 | 387 |
391 .butter-bar .close-icon { | 388 #butter-bar-dismiss img { |
392 vertical-align: top; | 389 vertical-align: top; |
393 opacity: 0.4; | 390 opacity: 0.4; |
394 margin-__MSG_@@bidi_start_edge__: 2px; | 391 margin-__MSG_@@bidi_start_edge__: 2px; |
395 margin-__MSG_@@bidi_end_edge__: -12px; | 392 margin-__MSG_@@bidi_end_edge__: -12px; |
396 } | 393 } |
397 | 394 |
398 .butter-bar .close-icon:hover { | 395 #butter-bar-dimiss:hover { |
399 opacity: 0.7; | 396 opacity: 0.7; |
400 } | 397 } |
401 | 398 |
402 .butter-bar > p { | 399 #butter-bar > p { |
403 background-color: #f9edbe; | 400 background-color: #f9edbe; |
404 border: 1px solid #f0c36d; | 401 border: 1px solid #f0c36d; |
405 -webkit-border-radius: 2px; | 402 -webkit-border-radius: 2px; |
406 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); | 403 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); |
407 color: #222; | 404 color: #222; |
408 font-size: 12px; | 405 font-size: 12px; |
409 padding: 4px 16px; | 406 padding: 4px 16px; |
410 margin: auto; | 407 margin: auto; |
411 } | 408 } |
412 | 409 |
413 .butter-bar a { | 410 #butter-bar a { |
414 color: inherit; | 411 color: inherit; |
415 text-decoration: underline; | 412 text-decoration: underline; |
416 padding-__MSG_@@bidi_start_edge__: 2px; | 413 padding-__MSG_@@bidi_start_edge__: 2px; |
417 } | 414 } |
418 | 415 |
419 .message { | 416 .message { |
420 margin-bottom: 24px; | 417 margin-bottom: 24px; |
421 } | 418 } |
422 | 419 |
423 .mode-select-button-column { | 420 .mode-select-button-column { |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 box-sizing: border-box; | 634 box-sizing: border-box; |
638 } | 635 } |
639 | 636 |
640 /* | 637 /* |
641 * Setting hidden on elements that match some rule overriding 'display' doesn't | 638 * Setting hidden on elements that match some rule overriding 'display' doesn't |
642 * do what you would expect unless this is made explicit (and !important). | 639 * do what you would expect unless this is made explicit (and !important). |
643 */ | 640 */ |
644 [hidden] { | 641 [hidden] { |
645 display: none !important; | 642 display: none !important; |
646 } | 643 } |
OLD | NEW |