@kerkhoff-ict/solora 2.1.8 → 2.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +37 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -175,6 +175,42 @@
|
|
|
175
175
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
+
flux\\:button {
|
|
179
|
+
all: unset;
|
|
180
|
+
display: inline-flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
font-weight: 600;
|
|
184
|
+
border-radius: 9999px;
|
|
185
|
+
padding: 0.5rem 1rem;
|
|
186
|
+
cursor: pointer;
|
|
187
|
+
transition: all 0.2s ease;
|
|
188
|
+
background: var(--color-primary, #0071e3);
|
|
189
|
+
color: var(--color-text-light, #fff);
|
|
190
|
+
}
|
|
191
|
+
flux\\:button:hover {
|
|
192
|
+
filter: brightness(0.85);
|
|
193
|
+
}
|
|
194
|
+
flux\\:button.btn-secondary {
|
|
195
|
+
background: var(--color-secondary, #f5f5f5);
|
|
196
|
+
color: var(--color-text-dark, #000);
|
|
197
|
+
border: 2px solid rgba(0, 0, 0, 0.1);
|
|
198
|
+
}
|
|
199
|
+
flux\\:input {
|
|
200
|
+
all: unset;
|
|
201
|
+
width: 100%;
|
|
202
|
+
padding: 0.3rem 0.4rem;
|
|
203
|
+
border-radius: 12px;
|
|
204
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
205
|
+
background: var(--color-bg, #fefefe);
|
|
206
|
+
color: var(--color-text-dark, #000);
|
|
207
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
208
|
+
transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
209
|
+
}
|
|
210
|
+
flux\\:input:focus {
|
|
211
|
+
border-color: var(--color-primary, #0071e3);
|
|
212
|
+
box-shadow: 0 0 0 4px var(--color-focus-glow, rgba(0, 113, 227, 0.15));
|
|
213
|
+
}
|
|
178
214
|
|
|
179
215
|
/* src/components/codeblock.css */
|
|
180
216
|
.codeblock {
|
|
@@ -650,7 +686,7 @@
|
|
|
650
686
|
}
|
|
651
687
|
.sol-input {
|
|
652
688
|
-moz-appearance: textfield;
|
|
653
|
-
appearance:
|
|
689
|
+
appearance: none;
|
|
654
690
|
}
|
|
655
691
|
.sol-input-group {
|
|
656
692
|
position: relative;
|