@tapizlabs/ui 0.2.3 → 0.2.5
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/CHANGELOG.md +10 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +35 -12
- package/dist/index.js.map +1 -1
- package/dist/theme.css +7 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -245,6 +245,13 @@ html:not(.dark) {
|
|
|
245
245
|
transform var(--tapiz-motion-base);
|
|
246
246
|
}
|
|
247
247
|
|
|
248
|
+
/* Tokom promene teme per-element tranzicije prave "pola svetlo / pola tamno" lag
|
|
249
|
+
(svaki element animira boje za sebe). Aplikacija pri toggle-u doda klasu
|
|
250
|
+
`theme-switching` na <html> i skine je sledeći frame — tema se menja odjednom. */
|
|
251
|
+
html.theme-switching *:not([class*="animate-"]):not(.sliding-logo):not(.pulse-line) {
|
|
252
|
+
transition: none !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
248
255
|
input, textarea, select {
|
|
249
256
|
background-color: var(--tapiz-bg-surface) !important;
|
|
250
257
|
border-color: var(--tapiz-border-strong) !important;
|