| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 .bad-clock .icon { | 5 .bad-clock .icon { |
| 6 background-image: -webkit-image-set( | 6 background-image: -webkit-image-set( |
| 7 url(images/1x/clock.png) 1x, | 7 url(images/1x/clock.png) 1x, |
| 8 url(images/2x/clock.png) 2x); | 8 url(images/2x/clock.png) 2x); |
| 9 } | 9 } |
| 10 | 10 |
| 11 body.safe-browsing { | 11 body.safe-browsing { |
| 12 background-color: rgb(206, 52, 38); | 12 background-color: rgb(206, 52, 38); |
| 13 color: white; | 13 color: white; |
| 14 } | 14 } |
| 15 | 15 |
| 16 button { | 16 button { |
| 17 -webkit-user-select: none; | |
| 18 background: rgb(66, 133, 244); | 17 background: rgb(66, 133, 244); |
| 19 border: 0; | 18 border: 0; |
| 20 border-radius: 2px; | 19 border-radius: 2px; |
| 21 box-sizing: border-box; | 20 box-sizing: border-box; |
| 22 color: #fff; | 21 color: #fff; |
| 23 cursor: pointer; | 22 cursor: pointer; |
| 24 float: right; | 23 float: right; |
| 25 font-size: .875em; | 24 font-size: .875em; |
| 26 margin: 0; | 25 margin: 0; |
| 27 padding: 10px 24px; | 26 padding: 10px 24px; |
| 28 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); | 27 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); |
| 28 user-select: none; |
| 29 } | 29 } |
| 30 | 30 |
| 31 [dir='rtl'] button { | 31 [dir='rtl'] button { |
| 32 float: left; | 32 float: left; |
| 33 } | 33 } |
| 34 | 34 |
| 35 button:active { | 35 button:active { |
| 36 background: rgb(50, 102, 213); | 36 background: rgb(50, 102, 213); |
| 37 outline: 0; | 37 outline: 0; |
| 38 } | 38 } |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 width: 100%; | 496 width: 100%; |
| 497 } | 497 } |
| 498 } | 498 } |
| 499 | 499 |
| 500 @media (max-width: 239px) and (orientation: portrait) { | 500 @media (max-width: 239px) and (orientation: portrait) { |
| 501 .nav-wrapper { | 501 .nav-wrapper { |
| 502 padding-left: 0; | 502 padding-left: 0; |
| 503 padding-right: 0; | 503 padding-right: 0; |
| 504 } | 504 } |
| 505 } | 505 } |
| OLD | NEW |