Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 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 :host { | |
| 8 padding: 12px; | |
| 9 } | |
| 10 | |
| 7 label { | 11 label { |
| 8 margin: 12px 0 0 0; | 12 margin: 0px 0 12px 0; |
| 9 padding: 0 4px 0 12px; | |
| 10 flex: none; | 13 flex: none; |
| 11 } | 14 } |
| 12 | 15 |
| 13 .media-row { | 16 .media-row { |
| 14 display: flex; | 17 display: inline-block; |
|
lushnikov
2016/04/20 23:50:32
i believe this rule could be stripped down:
.medi
luoe
2016/04/22 00:44:50
Done.
| |
| 15 align-items: center; | 18 align-items: center; |
| 16 margin-top: 9px; | 19 margin-left: 25px; |
| 17 flex: none; | 20 flex: none; |
| 18 } | 21 } |
| 19 | 22 |
| 20 .media-row > label { | 23 .media-row > label { |
|
lushnikov
2016/04/20 23:50:32
this is not needed
luoe
2016/04/22 00:44:50
Done.
| |
| 21 margin: 0 5px 0 0; | 24 margin: 0 5px 0 0; |
| 22 } | 25 } |
| 26 | |
| 27 .panel-section-separator { | |
| 28 height: 2px; | |
| 29 margin-bottom: 12px; | |
| 30 background: #f1f1f1; | |
| 31 } | |
| OLD | NEW |