Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #login-header-bar { | 5 :host { |
| 6 bottom: 0; | 6 align-self: center; |
| 7 left: 0; | 7 }; |
|
Dan Beam
2016/03/25 02:39:14
}; -> }
Moe
2016/03/29 18:54:39
Oops. Done.
| |
| 8 min-height: 32px; | 8 |
| 9 padding-bottom: 12px; | 9 #container { |
| 10 padding-top: 12px; | 10 color: var(--google-grey-800); |
| 11 position: absolute; | 11 line-height: 20px; |
| 12 right: 0; | 12 width: 624px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 paper-button { | 15 #title-area { |
| 16 border-bottom: 1px solid rgba(0, 0, 0, .12); | |
| 17 font-size: 16px; | |
| 18 padding-bottom: 16px; | |
| 19 } | |
| 20 | |
| 21 #title-area iron-icon { | |
| 22 --iron-icon-height: 20px; | |
| 23 --iron-icon-width: 20px; | |
| 24 color: var(--google-grey-500); | |
| 25 } | |
| 26 | |
| 27 .content-area { | |
| 28 padding-top: 32px; | |
| 29 white-space: pre-wrap; | |
| 30 word-wrap: break-word; | |
| 31 } | |
| 32 | |
| 33 #actions { | |
| 34 bottom: 16px; | |
| 35 position: absolute; | |
| 36 right: 16px; | |
| 37 } | |
| 38 | |
| 39 :host-context([dir='rtl']) #actions { | |
| 40 left: 16px; | |
| 41 right: auto; | |
| 42 } | |
| 43 | |
| 44 #actions paper-button { | |
| 16 border-radius: 2px; | 45 border-radius: 2px; |
| 46 font-weight: 500; | |
| 17 line-height: 32px; | 47 line-height: 32px; |
| 48 margin: 0; | |
| 18 min-width: 52px; | 49 min-width: 52px; |
| 19 padding: 0 16px; | 50 padding: 0 16px; |
| 20 } | 51 } |
| 21 | 52 |
| 22 #addUser { | 53 #actions #done { |
| 23 -webkit-margin-end: 16px; | 54 background: var(--google-blue-500); |
| 55 color: white; | |
| 24 } | 56 } |
| 25 | |
| 26 #logo { | |
| 27 content: -webkit-image-set( | |
| 28 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 1x, | |
| 29 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_logo_nam e_48.png) 2x); | |
| 30 height: 18px; | |
| 31 left: 24px; | |
| 32 position: absolute; | |
| 33 top: 19px; | |
| 34 } | |
| 35 | |
| 36 :host-context([dir='rtl']) #logo { | |
| 37 left: auto; | |
| 38 right: 24px; | |
| 39 } | |
| OLD | NEW |