daisyui 4.12.2 → 4.12.3
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/full.css +14057 -123
- package/dist/styled.css +9 -7
- package/dist/styled.js +1 -1
- package/dist/unstyled.css +5 -3
- package/dist/unstyled.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/package.json +9 -10
- package/src/index.js +8 -8
- package/src/lib/createPlugin.js +6 -8
- package/src/theming/functions.js +35 -39
- package/src/theming/themes.d.ts +1 -1
package/dist/styled.css
CHANGED
|
@@ -807,14 +807,14 @@
|
|
|
807
807
|
mask-size: 200%;
|
|
808
808
|
mask-position: left;
|
|
809
809
|
}
|
|
810
|
-
:
|
|
810
|
+
.mask-half-1:where([dir="rtl"], [dir="rtl"] *) {
|
|
811
811
|
mask-position: right;
|
|
812
812
|
}
|
|
813
813
|
.mask-half-2 {
|
|
814
814
|
mask-size: 200%;
|
|
815
815
|
mask-position: right;
|
|
816
816
|
}
|
|
817
|
-
:
|
|
817
|
+
.mask-half-2:where([dir="rtl"], [dir="rtl"] *) {
|
|
818
818
|
mask-position: left;
|
|
819
819
|
}
|
|
820
820
|
.menu {
|
|
@@ -1166,7 +1166,9 @@
|
|
|
1166
1166
|
display: grid;
|
|
1167
1167
|
align-items: flex-end;
|
|
1168
1168
|
}
|
|
1169
|
-
.tabs-lifted:has(.tab-content[class^="rounded-"])
|
|
1169
|
+
.tabs-lifted:has(.tab-content[class^="rounded-"])
|
|
1170
|
+
.tab:first-child:not(:is(.tab-active, [aria-selected="true"])), .tabs-lifted:has(.tab-content[class*=" rounded-"])
|
|
1171
|
+
.tab:first-child:not(:is(.tab-active, [aria-selected="true"])) {
|
|
1170
1172
|
border-bottom-color: transparent;
|
|
1171
1173
|
}
|
|
1172
1174
|
.tab {
|
|
@@ -3491,7 +3493,7 @@ details.collapse summary {
|
|
|
3491
3493
|
border-radius: 9999px;
|
|
3492
3494
|
opacity: 0.3;
|
|
3493
3495
|
}
|
|
3494
|
-
:
|
|
3496
|
+
.mockup-window:where([dir="rtl"], [dir="rtl"] *):before {
|
|
3495
3497
|
align-self: flex-end;
|
|
3496
3498
|
}
|
|
3497
3499
|
.mockup-window:before {
|
|
@@ -3558,7 +3560,7 @@ details.collapse summary {
|
|
|
3558
3560
|
align-items: center;
|
|
3559
3561
|
padding-right: 1.4em;
|
|
3560
3562
|
}
|
|
3561
|
-
:
|
|
3563
|
+
.mockup-browser .mockup-browser-toolbar:where([dir="rtl"], [dir="rtl"] *) {
|
|
3562
3564
|
flex-direction: row-reverse;
|
|
3563
3565
|
}
|
|
3564
3566
|
.mockup-browser .mockup-browser-toolbar:before {
|
|
@@ -4757,7 +4759,7 @@ details.collapse summary {
|
|
|
4757
4759
|
font-size: 0.875rem;
|
|
4758
4760
|
line-height: 1.25rem
|
|
4759
4761
|
}
|
|
4760
|
-
:
|
|
4762
|
+
.table:where([dir="rtl"], [dir="rtl"] *) {
|
|
4761
4763
|
text-align: right
|
|
4762
4764
|
}
|
|
4763
4765
|
.table :where(th, td) {
|
|
@@ -4793,7 +4795,7 @@ details.collapse summary {
|
|
|
4793
4795
|
background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)))
|
|
4794
4796
|
}
|
|
4795
4797
|
}
|
|
4796
|
-
.table :where(thead tr, tbody tr:not(:last-child),tbody tr:first-child:last-child) {
|
|
4798
|
+
.table :where(thead tr, tbody tr:not(:last-child), tbody tr:first-child:last-child) {
|
|
4797
4799
|
border-bottom-width: 1px;
|
|
4798
4800
|
--tw-border-opacity: 1;
|
|
4799
4801
|
border-bottom-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)))
|