|
16 | 16 | #column_settings_sidebar { |
17 | 17 | overflow: hidden; |
18 | 18 | text-overflow: ellipsis; |
19 | | - } |
20 | 19 |
|
21 | | - // NOTE: These should probably make their way to global form styling eventually. |
22 | | - .errored { |
23 | | - outline-color: var(--error--color); |
24 | | - } |
| 20 | + #attributes-button-panel { |
| 21 | + flex: 0 0 auto; |
| 22 | + margin-top: 4px; |
| 23 | + } |
25 | 24 |
|
26 | | - .item_title { |
27 | | - flex: 0 0 auto; |
28 | | - font-size: var(--label--font-size, 0.75em); |
29 | | - } |
| 25 | + #attributes-tab > .split-panel-child { |
| 26 | + min-height: 200px; |
| 27 | + flex: 0 1 auto; |
| 28 | + } |
30 | 29 |
|
31 | | - .radio-list-item label { |
32 | | - margin-top: 6px; |
33 | | - } |
| 30 | + // NOTE: These should probably make their way to global form styling eventually. |
| 31 | + .errored { |
| 32 | + outline-color: var(--error--color); |
| 33 | + } |
34 | 34 |
|
35 | | - input { |
36 | | - &[type="text"], |
37 | | - &[type="search"] { |
38 | | - outline: 1px solid; |
39 | | - outline-color: var(--inactive--color); |
40 | | - background-color: var(--plugin--background); |
41 | | - border: none; |
42 | | - margin-bottom: 0.5em; |
43 | | - font-family: inherit; |
44 | | - font-size: 1em; |
45 | | - &:disabled { |
46 | | - background-color: var(--inactive--color); |
47 | | - } |
| 35 | + .item_title { |
| 36 | + flex: 0 0 auto; |
| 37 | + font-size: var(--label--font-size, 0.75em); |
48 | 38 | } |
49 | 39 |
|
50 | | - &[type="search"] { |
51 | | - min-height: 24px; |
52 | | - border-radius: 2px; |
| 40 | + .radio-list-item label { |
| 41 | + margin-top: 6px; |
53 | 42 | } |
54 | | - } |
55 | 43 |
|
56 | | - .sidebar_header_contents { |
57 | | - display: flex; |
58 | | - margin: 8px; |
59 | | - align-items: center; |
60 | | - border-radius: 3px; |
61 | | - outline-width: 1px; |
62 | | - outline-color: var(--inactive--color); |
| 44 | + input { |
| 45 | + &[type="text"], |
| 46 | + &[type="search"] { |
| 47 | + outline: 1px solid; |
| 48 | + outline-color: var(--inactive--color); |
| 49 | + background-color: var(--plugin--background); |
| 50 | + border: none; |
| 51 | + margin-bottom: 0.5em; |
| 52 | + font-family: inherit; |
| 53 | + font-size: 1em; |
| 54 | + &:disabled { |
| 55 | + background-color: var(--inactive--color); |
| 56 | + } |
| 57 | + } |
63 | 58 |
|
64 | | - &.editable { |
65 | | - &:hover { |
66 | | - outline-style: solid; |
67 | | - cursor: text; |
| 59 | + &[type="search"] { |
| 60 | + min-height: 24px; |
| 61 | + border-radius: 2px; |
| 62 | + } |
| 63 | + |
| 64 | + &::-webkit-search-cancel-button { |
| 65 | + cursor: pointer; |
68 | 66 | } |
69 | | - } |
70 | | - &::focus { |
71 | | - outline-style: solid; |
72 | | - background: var(--plugin--background); |
73 | | - } |
74 | | - &.edited { |
75 | | - outline-style: dashed; |
76 | | - } |
77 | | - &.invalid { |
78 | | - outline-color: var(--error--color); |
79 | 67 | } |
80 | 68 |
|
81 | | - .sidebar_header_title { |
82 | | - line-height: normal; |
83 | | - margin: 0; |
84 | | - flex: 1; |
85 | | - padding-left: 5px; |
86 | | - background: none; |
87 | | - outline: none; |
88 | | - color: unset; |
| 69 | + .sidebar_header_contents { |
| 70 | + display: flex; |
| 71 | + margin: 8px; |
| 72 | + align-items: center; |
| 73 | + border-radius: 3px; |
| 74 | + outline-width: 1px; |
| 75 | + outline-color: var(--inactive--color); |
89 | 76 |
|
90 | | - &:disabled { |
| 77 | + &.editable { |
| 78 | + &:hover { |
| 79 | + outline-style: solid; |
| 80 | + cursor: text; |
| 81 | + } |
| 82 | + } |
| 83 | + &::focus { |
| 84 | + outline-style: solid; |
| 85 | + background: var(--plugin--background); |
| 86 | + } |
| 87 | + &.edited { |
| 88 | + outline-style: dashed; |
| 89 | + } |
| 90 | + &.invalid { |
| 91 | + outline-color: var(--error--color); |
| 92 | + } |
| 93 | + |
| 94 | + .sidebar_header_title { |
| 95 | + line-height: normal; |
| 96 | + margin: 0; |
| 97 | + flex: 1; |
| 98 | + padding-left: 5px; |
91 | 99 | background: none; |
92 | 100 | outline: none; |
93 | 101 | color: unset; |
| 102 | + |
| 103 | + &:disabled { |
| 104 | + background: none; |
| 105 | + outline: none; |
| 106 | + color: unset; |
| 107 | + } |
94 | 108 | } |
95 | 109 | } |
96 | 110 | } |
|
0 commit comments