| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 /* We introduce a wrapper animatable element and set the overflow since | 5 /* We introduce a wrapper animatable element and set the overflow since |
| 6 * core-transition interferes with the box-shadow from paper-shadow. */ | 6 * core-transition interferes with the box-shadow from paper-shadow. */ |
| 7 #animatable { | 7 #animatable { |
| 8 overflow: visible; | 8 overflow: visible; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 | 34 |
| 35 paper-progress { | 35 paper-progress { |
| 36 height: 56px; | 36 height: 56px; |
| 37 position: absolute; | 37 position: absolute; |
| 38 width: 100%; | 38 width: 100%; |
| 39 z-index: 3; | 39 z-index: 3; |
| 40 } | 40 } |
| 41 | 41 |
| 42 paper-progress::shadow #activeProgress { | 42 paper-progress::shadow #activeProgress { |
| 43 background-color: rgb(27, 168, 243); | 43 background-color: rgb(50, 54, 57); |
| 44 } | 44 } |
| 45 | 45 |
| 46 paper-progress::shadow #progressContainer { | 46 paper-progress::shadow #progressContainer { |
| 47 background-color: rgb(100, 181, 246); | 47 background-color: rgba(0, 0, 0, 0.3); |
| 48 } | 48 } |
| 49 | 49 |
| 50 paper-toolbar { | 50 paper-toolbar { |
| 51 background-color: rgb(27, 168, 243); | 51 background-color: rgb(50, 54, 57); |
| 52 color: rgb(241, 241, 241); | 52 color: rgb(241, 241, 241); |
| 53 font-size: 1.5em; | 53 font-size: 1.5em; |
| 54 height: 56px; | 54 height: 56px; |
| 55 padding-left: 1em; | 55 padding-left: 1em; |
| 56 padding-right: 1em; | 56 padding-right: 1em; |
| 57 z-index: 3; | 57 z-index: 3; |
| 58 } | 58 } |
| 59 | 59 |
| 60 paper-toolbar /deep/ ::selection { | 60 paper-toolbar /deep/ ::selection { |
| 61 background: rgb(187, 222, 251); | 61 background: rgba(255, 255, 255, 0.3); |
| 62 } | 62 } |
| 63 | 63 |
| 64 paper-toolbar /deep/ .toolbar-tools { | 64 paper-toolbar /deep/ .toolbar-tools { |
| 65 height: 56px; | 65 height: 56px; |
| 66 } | 66 } |
| 67 | 67 |
| 68 .invisible { | 68 .invisible { |
| 69 visibility: hidden; | 69 visibility: hidden; |
| 70 } | 70 } |
| OLD | NEW |