| OLD | NEW |
| (Empty) | |
| 1 /** |
| 2 * Copyright 2017 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 .styles-element-classes-pane { |
| 8 background-color: #f3f3f3; |
| 9 border-bottom: 1px solid rgb(189, 189, 189); |
| 10 padding: 6px 2px 2px; |
| 11 } |
| 12 |
| 13 .styles-element-classes-container { |
| 14 display: flex; |
| 15 flex-wrap: wrap; |
| 16 justify-content: flex-start; |
| 17 } |
| 18 |
| 19 .styles-element-classes-pane label { |
| 20 margin-right: 15px; |
| 21 } |
| 22 |
| 23 .styles-element-classes-pane .title-container { |
| 24 padding-bottom: 2px; |
| 25 } |
| 26 |
| 27 .styles-element-classes-pane .new-class-input { |
| 28 padding-left: 3px; |
| 29 padding-right: 3px; |
| 30 overflow: hidden; |
| 31 border: 1px solid #ddd; |
| 32 line-height: 15px; |
| 33 margin-left: 3px; |
| 34 width: calc(100% - 7px); |
| 35 background-color: #fff; |
| 36 cursor: text; |
| 37 } |
| OLD | NEW |