OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .infobar { | 7 .infobar { |
8 color: rgb(34, 34, 34); | 8 color: rgb(34, 34, 34); |
9 display: flex; | 9 display: flex; |
10 flex: auto; | 10 flex: auto; |
11 border-bottom: 1px solid rgb(171, 171, 171); | 11 border-bottom: 1px solid rgb(171, 171, 171); |
12 flex-direction: column; | 12 flex-direction: column; |
13 align-items: stretch; | 13 align-items: stretch; |
| 14 position: relative; |
14 } | 15 } |
15 | 16 |
16 .infobar-warning { | 17 .infobar-warning { |
17 background-color: rgb(253, 242, 192); | 18 background-color: rgb(253, 242, 192); |
18 } | 19 } |
19 | 20 |
20 .infobar-info { | 21 .infobar-info { |
21 background-color: rgb(255, 255, 255); | 22 background-color: rgb(255, 255, 255); |
22 } | 23 } |
23 | 24 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 .warning-icon { | 81 .warning-icon { |
81 -webkit-mask-image: url(Images/ic_warning_black_18dp.svg); | 82 -webkit-mask-image: url(Images/ic_warning_black_18dp.svg); |
82 background-color: hsl(44, 92%, 50%); | 83 background-color: hsl(44, 92%, 50%); |
83 } | 84 } |
84 | 85 |
85 .icon { | 86 .icon { |
86 -webkit-mask-size: 18px 18px; | 87 -webkit-mask-size: 18px 18px; |
87 width: 18px; | 88 width: 18px; |
88 height: 19px; | 89 height: 19px; |
89 } | 90 } |
OLD | NEW |