| 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 header { |
| 8 padding: 0 0 6px; |
| 9 border-bottom: 1px solid #EEEEEE; |
| 10 } |
| 11 |
| 12 header > h3 { |
| 13 font-size: 18px; |
| 14 font-weight: normal; |
| 15 margin: 0; |
| 16 padding-bottom: 3px; |
| 17 } |
| 18 |
| 19 .help-content { |
| 20 overflow-y: auto; |
| 21 overflow-x: hidden; |
| 22 margin: 8px 8px 8px 0; |
| 23 padding: 0 4px; |
| 24 flex: auto; |
| 25 } |
| 26 |
| 27 .help-container { |
| 28 width: 100%; |
| 29 -webkit-user-select: auto; |
| 30 -webkit-column-width: 288px; |
| 31 } |
| 32 |
| 33 |
| 34 .settings-tab.help-container { |
| 35 -webkit-column-width: 308px; |
| 36 } |
| 37 |
| 38 .settings-tab label { |
| 39 padding-right: 4px; |
| 40 display: inline-flex; |
| 41 } |
| 42 |
| 43 .help-container-wrapper { |
| 44 position: absolute; |
| 45 top: 31px; |
| 46 left: 0px; |
| 47 right: 0; |
| 48 bottom: 0; |
| 49 overflow: auto; |
| 50 padding-top: 9px; |
| 51 } |
| 52 |
| 53 .settings-tab.help-content { |
| 54 margin: 0; |
| 55 padding: 0; |
| 56 } |
| 57 |
| 58 .settings-tab input:not([type]), |
| 59 .settings-tab input[type="text"] { |
| 60 border: 1px solid rgb(213, 213, 213); |
| 61 border-radius: 2px; |
| 62 color: #444444; |
| 63 padding: 3px; |
| 64 } |
| 65 |
| 66 .settings-tab p { |
| 67 margin: 12px 0; |
| 68 } |
| 69 |
| 70 p.folder-exclude-pattern { |
| 71 display: flex; |
| 72 align-items: center; |
| 73 } |
| 74 |
| 75 p.folder-exclude-pattern > input { |
| 76 flex: auto; |
| 77 } |
| 78 |
| 79 .settings-tab .file-system-container { |
| 80 border-top: 1px solid #aaa; |
| 81 padding: 19px 0 10px; |
| 82 margin: 20px 0; |
| 83 } |
| 84 |
| 85 .settings-tab .file-system-header { |
| 86 display: flex; |
| 87 flex-direction: row; |
| 88 align-items: center; |
| 89 } |
| 90 |
| 91 .settings-tab .file-system-name { |
| 92 font-weight: bold; |
| 93 flex: none; |
| 94 margin-right: 10px; |
| 95 font-size: 15px; |
| 96 overflow: hidden; |
| 97 text-overflow: ellipsis; |
| 98 max-width: 70%; |
| 99 } |
| 100 |
| 101 .settings-tab .file-system-path { |
| 102 white-space: nowrap; |
| 103 overflow: hidden; |
| 104 text-overflow: ellipsis; |
| 105 flex: auto; |
| 106 } |
| 107 |
| 108 .settings-info-message { |
| 109 background-color: #eee; |
| 110 padding: 10px; |
| 111 margin: 20px 0; |
| 112 } |
| 113 |
| 114 .settings-tab.help-content.help-container { |
| 115 -webkit-column-width: initial; |
| 116 overflow: hidden; |
| 117 padding-right: 10px; |
| 118 } |
| OLD | NEW |