| 1 |
@use '../common/theme'; |
| 2 |
|
| 3 |
.importer-selector-card { |
| 4 |
h2 { |
| 5 |
margin: 0 0 1em; |
| 6 |
} |
| 7 |
|
| 8 |
select { |
| 9 |
display: block; |
| 10 |
margin-block-start: 5px; |
| 11 |
inline-size: 100%; |
| 12 |
max-inline-size: 300px; |
| 13 |
} |
| 14 |
|
| 15 |
p { |
| 16 |
margin: 10px 0 0; |
| 17 |
color: var(--cs-color-text-muted); |
| 18 |
font-size: 14px; |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
.import-options-card { |
| 23 |
h3 { |
| 24 |
margin: 0 0 1em; |
| 25 |
} |
| 26 |
|
| 27 |
label { |
| 28 |
display: flex; |
| 29 |
align-items: flex-start; |
| 30 |
gap: 8px; |
| 31 |
cursor: pointer; |
| 32 |
|
| 33 |
.description { |
| 34 |
color: var(--cs-color-text-muted); |
| 35 |
font-size: 0.9em; |
| 36 |
} |
| 37 |
} |
| 38 |
|
| 39 |
input { |
| 40 |
margin-block-start: 2px; |
| 41 |
} |
| 42 |
|
| 43 |
> div { |
| 44 |
flex: 1; |
| 45 |
} |
| 46 |
|
| 47 |
.import-tag-entry { |
| 48 |
margin-block-start: 12px; |
| 49 |
|
| 50 |
input { |
| 51 |
inline-size: 100%; |
| 52 |
max-inline-size: 300px; |
| 53 |
} |
| 54 |
} |
| 55 |
} |
| 56 |
|
| 57 |
|
| 58 |
.import-section-status { |
| 59 |
display: flex; |
| 60 |
align-items: flex-start; |
| 61 |
gap: 12px; |
| 62 |
|
| 63 |
.error, .success { |
| 64 |
border-radius: 50%; |
| 65 |
inline-size: 24px; |
| 66 |
block-size: 24px; |
| 67 |
display: flex; |
| 68 |
align-items: center; |
| 69 |
justify-content: center; |
| 70 |
flex-shrink: 0; |
| 71 |
margin-block-start: 2px; |
| 72 |
|
| 73 |
span { |
| 74 |
color: #fff; |
| 75 |
font-size: 14px; |
| 76 |
font-weight: bold; |
| 77 |
} |
| 78 |
} |
| 79 |
|
| 80 |
.success { |
| 81 |
background-color: var(--cs-color-success); |
| 82 |
} |
| 83 |
|
| 84 |
.error { |
| 85 |
background-color: var(--cs-color-error); |
| 86 |
} |
| 87 |
|
| 88 |
h4 { |
| 89 |
margin: 0 0 8px; |
| 90 |
font-size: 16px; |
| 91 |
font-weight: 600; |
| 92 |
} |
| 93 |
|
| 94 |
p { |
| 95 |
margin: 0; |
| 96 |
color: var(--cs-color-text-muted); |
| 97 |
} |
| 98 |
|
| 99 |
a { |
| 100 |
color: var(--cs-color-accent); |
| 101 |
text-decoration: none; |
| 102 |
} |
| 103 |
} |
| 104 |
|
| 105 |
.no-snippets-card { |
| 106 |
.card-inner { |
| 107 |
text-align: center; |
| 108 |
padding: 40px 20px; |
| 109 |
color: var(--cs-color-text-muted); |
| 110 |
|
| 111 |
p { |
| 112 |
margin: 0; |
| 113 |
font-size: 14px; |
| 114 |
} |
| 115 |
} |
| 116 |
|
| 117 |
.card-icon { |
| 118 |
font-size: 48px; |
| 119 |
margin-block-end: 16px; |
| 120 |
} |
| 121 |
|
| 122 |
h4 { |
| 123 |
margin: 0 0 8px; |
| 124 |
font-size: 18px; |
| 125 |
color: var(--cs-color-text-muted); |
| 126 |
} |
| 127 |
|
| 128 |
} |
| 129 |
|
| 130 |
.migrate-snippets-table-card { |
| 131 |
> div:first-child { |
| 132 |
display: flex; |
| 133 |
justify-content: space-between; |
| 134 |
align-items: center; |
| 135 |
margin-block-end: 10px; |
| 136 |
|
| 137 |
h3 { |
| 138 |
margin: 0; |
| 139 |
} |
| 140 |
|
| 141 |
p { |
| 142 |
margin: 0.5em 0 1em; |
| 143 |
} |
| 144 |
} |
| 145 |
|
| 146 |
.column-id { |
| 147 |
text-align: end; |
| 148 |
inline-size: 50px; |
| 149 |
} |
| 150 |
} |
| 151 |
|