blob: 4b508b628a57f590c13e25549a50532540d91a4f [file] [log] [blame]
Blink Reformat4c46d092018-04-07 15:32:371/*
2 * Copyright 2015 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.file-system-header {
8 display: flex;
9 flex-direction: row;
10 align-items: center;
11 flex: auto;
12 margin: 10px 0;
13}
14
15.file-system-header-text {
16 flex: 1 0 auto;
17}
18
19.add-button {
20 margin-left: 10px;
21 align-self: flex-start;
22}
23
24.file-system-list {
25 flex: auto;
26}
27
28.file-system-list-empty {
29 flex: auto;
30 height: 30px;
31 display: flex;
32 align-items: center;
33 justify-content: center;
34 text-align: center;
35}
36
37.file-system-list-item {
38 padding: 3px 5px 3px 5px;
39 height: 30px;
40 display: flex;
41 align-items: center;
42 flex: auto 1 1;
43}
44
45.list-item .file-system-value {
46 white-space: nowrap;
47 text-overflow: ellipsis;
Mathias Bynens9680e2e2019-12-06 10:16:0248 user-select: none;
Blink Reformat4c46d092018-04-07 15:32:3749 overflow: hidden;
50}
51
52.file-system-value {
53 flex: 1 1 0px;
54}
55
56.file-system-edit-row {
57 flex: none;
58 display: flex;
59 flex-direction: row;
60 margin: 6px 5px;
61 align-items: center;
62}
63
64.file-system-edit-row input {
65 width: 100%;
66 text-align: inherit;
67}