Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .timeline-landing-page { | |
| 8 align-self: center; | |
| 9 max-width: 500px; | |
| 10 font-size: 13px; | |
| 11 } | |
| 12 | |
| 13 .timeline-landing-page .tabbed-pane { | |
| 14 padding: 10px 0 0 0; | |
| 15 } | |
| 16 | |
| 17 .timeline-landing-page .timeline-perspective-body { | |
| 18 align-items: stretch; | |
| 19 line-height: 1.5; | |
| 20 padding: 12px; | |
| 21 white-space: pre-line; | |
| 22 width: 100%; | |
| 23 font-size: 12px; | |
| 24 } | |
| 25 | |
| 26 .timeline-landing-page .timeline-perspective-body > div { | |
| 27 margin-bottom: 12px; | |
| 28 flex-shrink: 0; | |
| 29 } | |
| 30 | |
| 31 .timeline-landing-page button { | |
| 32 width: 90px; | |
|
caseq
2016/12/12 19:04:34
let's not do that, it's a landmine.
alph
2016/12/12 20:43:13
I need to specify width to make sure all the [pote
| |
| 33 height: 26px; | |
| 34 margin: 10px 0 0 0; | |
| 35 } | |
| 36 | |
| 37 .timeline-landing-page .recording-setting { | |
| 38 display: flex; | |
| 39 align-items: flex-start; | |
| 40 margin-bottom: 2px !important; | |
| 41 } | |
| 42 | |
| 43 .timeline-landing-page .recording-setting label { | |
| 44 flex: 100px 0 0; | |
|
caseq
2016/12/12 19:04:34
we typically put basis at the end of the shorthand
alph
2016/12/12 20:43:13
Indeed. There are 60 instances vs 14.
| |
| 45 } | |
| 46 | |
| 47 .timeline-landing-page .recording-setting-description { | |
| 48 color: #999; | |
| 49 } | |
| OLD | NEW |