| 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 .help-window-main { | 7 .help-window-main { |
| 8 color: rgb(48, 57, 66); | 8 color: rgb(48, 57, 66); |
| 9 background-color: white; | 9 background-color: white; |
| 10 padding: 11px 0 0 0; | 10 padding: 11px 0 0 0; |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 margin: 12px 0; | 226 margin: 12px 0; |
| 227 } | 227 } |
| 228 | 228 |
| 229 .settings-tab select { | 229 .settings-tab select { |
| 230 margin-left: 10px; | 230 margin-left: 10px; |
| 231 } | 231 } |
| 232 | 232 |
| 233 #workspace-tab-content .settings-tab.help-content.help-container { | 233 #workspace-tab-content .settings-tab.help-content.help-container { |
| 234 -webkit-column-width: initial; | 234 -webkit-column-width: initial; |
| 235 overflow: hidden; | 235 overflow: hidden; |
| 236 padding-right: 10px; |
| 236 } | 237 } |
| 237 | 238 |
| 238 | 239 |
| 239 #workspace-tab-content .button:hover { | 240 #workspace-tab-content .button:hover { |
| 240 opacity: 1.0 !important; | 241 opacity: 1.0 !important; |
| 241 } | 242 } |
| 242 | 243 |
| 243 #workspace-tab-content .help-block { | 244 #workspace-tab-content .help-block { |
| 244 width: auto; | 245 width: auto; |
| 245 margin-right: 20px; | 246 margin-right: 20px; |
| 246 } | 247 } |
| 247 | 248 |
| 248 p.folder-exclude-pattern { | 249 p.folder-exclude-pattern { |
| 249 margin-top: 0 !important; | 250 display: flex; |
| 251 align-items: center; |
| 250 } | 252 } |
| 251 | 253 |
| 252 .folder-exclude-pattern input { | 254 p.folder-exclude-pattern > input { |
| 253 margin-top: 10px; | 255 flex: auto; |
| 254 } | 256 } |
| 255 | 257 |
| 256 .file-system-mapping-view { | 258 .file-system-mapping-view { |
| 257 margin-left: 30px; | |
| 258 margin-right: 10px; | |
| 259 } | 259 } |
| 260 | 260 |
| 261 .settings-tab .file-system-container { | 261 .settings-tab .file-system-container { |
| 262 margin-bottom: 18px; | 262 border-top: 1px solid #aaa; |
| 263 padding: 0 8px; | 263 padding: 19px 0 10px; |
| 264 border-left: 1px solid hsl(0, 0%, 90%); | 264 margin: 20px 0; |
| 265 max-width: 800px; | |
| 266 } | 265 } |
| 267 | 266 |
| 268 .settings-tab .file-system-header { | 267 .settings-tab .file-system-header { |
| 269 display: flex; | 268 display: flex; |
| 270 flex-direction: row; | 269 flex-direction: row; |
| 271 align-items: center; | 270 align-items: center; |
| 272 } | 271 } |
| 273 | 272 |
| 274 .settings-tab .file-system-name { | 273 .settings-tab .file-system-name { |
| 275 font-weight: bold; | 274 font-weight: bold; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 301 display: none; | 300 display: none; |
| 302 } | 301 } |
| 303 | 302 |
| 304 .settings-experiment-hidden label { | 303 .settings-experiment-hidden label { |
| 305 background-color: #ddd; | 304 background-color: #ddd; |
| 306 } | 305 } |
| 307 | 306 |
| 308 .settings-developer-mode .settings-experiment-hidden { | 307 .settings-developer-mode .settings-experiment-hidden { |
| 309 display: block; | 308 display: block; |
| 310 } | 309 } |
| 310 |
| 311 .settings-info-message { |
| 312 background-color: #eee; |
| 313 padding: 10px; |
| 314 margin: 20px 0; |
| 315 } |
| OLD | NEW |