daisyui 2.18.1 → 2.19.1

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/styled.css CHANGED
@@ -660,6 +660,9 @@
660
660
  width: 100%;
661
661
  align-items: stretch;
662
662
  }
663
+ .input-group > .input {
664
+ isolation: isolate;
665
+ }
663
666
  .input-group > *,
664
667
  .input-group > .input {
665
668
  border-radius: 0px;
@@ -951,47 +954,29 @@
951
954
  cursor: pointer
952
955
  }
953
956
  .select {
954
-
955
- display: inline-flex;
956
-
957
- flex-shrink: 0;
958
-
959
- cursor: pointer;
960
-
961
- -webkit-user-select: none;
962
-
963
- user-select: none;
964
-
965
- appearance: none;
966
-
967
- height: 3rem;
968
-
969
- padding-left: 1rem;
970
-
971
- padding-right: 2.5rem;
972
-
973
- font-size: 0.875rem;
974
-
975
- line-height: 1.25rem;
976
-
977
- line-height: 2;
978
-
979
- min-height: 3rem
980
- }
957
+ display: inline-flex;
958
+ flex-shrink: 0;
959
+ cursor: pointer;
960
+ -webkit-user-select: none;
961
+ user-select: none;
962
+ appearance: none;
963
+ height: 3rem;
964
+ padding-left: 1rem;
965
+ padding-right: 2.5rem;
966
+ font-size: 0.875rem;
967
+ line-height: 1.25rem;
968
+ line-height: 2;
969
+ min-height: 3rem
981
970
 
982
971
  /* disabled */
983
-
984
- .select-disabled,
985
- .select[disabled] {
986
-
987
- pointer-events: none
972
+ /* &-disabled,
973
+ &[disabled] {
974
+ @apply pointer-events-none;
975
+ } */
988
976
  }
989
-
990
977
  /* multiple */
991
-
992
978
  .select[multiple] {
993
-
994
- height: auto
979
+ height: auto
995
980
  }
996
981
  .stack {
997
982
  display: inline-grid;
@@ -1154,6 +1139,12 @@
1154
1139
  line-height: 2;
1155
1140
  min-height: 3rem
1156
1141
  }
1142
+ .toast {
1143
+ position: fixed;
1144
+ display: flex;
1145
+ min-width: fit-content;
1146
+ flex-direction: column
1147
+ }
1157
1148
  .toggle {
1158
1149
  flex-shrink: 0
1159
1150
  }
@@ -3840,6 +3831,24 @@ body[dir="rtl"] .checkbox:checked,
3840
3831
  color: hsl(var(--bc) / var(--tw-placeholder-opacity));
3841
3832
  --tw-placeholder-opacity: 0.2;
3842
3833
  }
3834
+ .toast{
3835
+ gap: 0.5rem;
3836
+ padding: 1rem;
3837
+ }
3838
+ .toast>*{
3839
+ animation: toast-pop 0.25s ease-out;
3840
+ }
3841
+
3842
+ @keyframes toast-pop {
3843
+ 0% {
3844
+ transform: scale(0.9);
3845
+ opacity: 0;
3846
+ }
3847
+ 100% {
3848
+ transform: scale(1);
3849
+ opacity: 1;
3850
+ }
3851
+ }
3843
3852
  .toggle {
3844
3853
  --chkbg: hsla(var(--bc) / 0.2);
3845
3854
  --handleoffset: 1.5rem;