PluginProbe
Code Snippets / 3.10.1
Code Snippets v3.10.1
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / import / _migrate.scss

_migrate.scss in Code Snippets 3.10.1, at css/import/_migrate.scss

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