| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 padding:30px 42px; | 191 padding:30px 42px; |
| 192 width: 500px; | 192 width: 500px; |
| 193 height: auto; | 193 height: auto; |
| 194 overflow: hidden; | 194 overflow: hidden; |
| 195 z-index: 100; | 195 z-index: 100; |
| 196 opacity: 0.0; | 196 opacity: 0.0; |
| 197 -webkit-transform: scale(1.05); | 197 -webkit-transform: scale(1.05); |
| 198 -webkit-transition: all 0.218s; | 198 -webkit-transition: all 0.218s; |
| 199 } | 199 } |
| 200 | 200 |
| 201 button:active, .toggle-button-active { | 201 button:active:not([disabled]) { |
| 202 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); | 202 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); |
| 203 color: #333; | 203 color: #333; |
| 204 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | 204 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); |
| 205 } | 205 } |
| 206 | 206 |
| 207 button[disabled], button[disabled]:hover, button[disabled]:active { | 207 button[disabled], button[disabled]:hover, button[disabled]:active { |
| 208 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 208 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
| 209 border-color: #aaa; | 209 border-color: #aaa; |
| 210 color: #888; | 210 color: #888; |
| 211 -webkit-box-shadow: none; | 211 -webkit-box-shadow: none; |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 #session-mode { | 492 #session-mode { |
| 493 position: absolute; | 493 position: absolute; |
| 494 -webkit-box-shadow: 0 0 8px 0 black; | 494 -webkit-box-shadow: 0 0 8px 0 black; |
| 495 -webkit-user-select: none; | 495 -webkit-user-select: none; |
| 496 } | 496 } |
| 497 | 497 |
| 498 #session-client-plugin { | 498 #session-client-plugin { |
| 499 display: block; | 499 display: block; |
| 500 } | 500 } |
| 501 | 501 |
| 502 #toggle-scaling { | |
| 503 margin: 1px 0 0 0; | |
| 504 padding: 1px; | |
| 505 min-width: 0; | |
| 506 line-height: 0; | |
| 507 } | |
| 508 | |
| 509 #top-secondary { | 502 #top-secondary { |
| 510 margin-top: 10px | 503 margin-top: 10px |
| 511 } | 504 } |
| 512 | 505 |
| 513 * { | 506 * { |
| 514 box-sizing: border-box; | 507 box-sizing: border-box; |
| 515 } | 508 } |
| 516 | 509 |
| 517 /* | 510 /* |
| 518 * Setting hidden on elements that match some rule overriding 'display' doesn't | 511 * Setting hidden on elements that match some rule overriding 'display' doesn't |
| 519 * do what you would expect unless this is made explicit (and !important). | 512 * do what you would expect unless this is made explicit (and !important). |
| 520 */ | 513 */ |
| 521 [hidden] { | 514 [hidden] { |
| 522 display: none !important; | 515 display: none !important; |
| 523 } | 516 } |
| OLD | NEW |