Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 body { | |
| 6 margin: 0; | |
| 7 padding: 0; | |
| 8 } | |
| 9 | |
| 10 .container { | |
| 11 background-color: white; | |
| 12 color: #333; | |
| 13 overflow: hidden; | |
| 14 width: 448px; | |
| 15 } | |
| 16 | |
| 17 .top-title-bar { | |
| 18 align-items: center; | |
| 19 border-bottom: 1px solid lightgray; | |
|
tommycli
2016/08/23 19:15:38
Are we sure we want to just use 'lightgray' instea
Jane
2016/08/24 13:40:31
Replaced with paper-grey-300. I was just copying t
| |
| 20 display: flex; | |
| 21 font-size: 16px; | |
| 22 height: 52px; | |
| 23 padding: 0 24px; | |
| 24 } | |
| 25 | |
| 26 .details { | |
| 27 margin-bottom: 8px; | |
| 28 margin-top: 16px; | |
| 29 padding: 0 24px; | |
| 30 } | |
| 31 | |
| 32 .action-container { | |
| 33 display: flex; | |
| 34 justify-content: flex-end; | |
| 35 padding: 16px; | |
| 36 } | |
| 37 | |
| 38 #switchButton, | |
| 39 #secondaryConfirmButton, | |
| 40 #primaryConfirmButton { | |
| 41 line-height: 16px; | |
| 42 margin: 0; | |
| 43 padding: 8px 16px; | |
| 44 } | |
| 45 | |
| 46 #switchButton { | |
| 47 -webkit-margin-start: 8px; | |
| 48 } | |
| 49 | |
| OLD | NEW |