@quidgest/ui 0.9.9 → 0.10.0

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/ui.css CHANGED
@@ -720,7 +720,7 @@ body *::-webkit-scrollbar-track {
720
720
  --q-overlay-bg: var(--q-theme-background);
721
721
  --q-overlay-color: var(--q-theme-on-background);
722
722
  --q-overlay-border-color: var(--q-theme-neutral-light);
723
- position: absolute;
723
+ position: fixed;
724
724
  z-index: 1070;
725
725
  }
726
726
  .q-overlay__underlay {
@@ -749,80 +749,36 @@ body *::-webkit-scrollbar-track {
749
749
  .q-overlay__arrow {
750
750
  position: absolute;
751
751
  display: block;
752
- width: 1rem;
753
- height: 0.5rem;
754
- }
755
- .q-overlay__arrow::before, .q-overlay__arrow::after {
756
- position: absolute;
757
- display: block;
758
- content: "";
759
- border-color: transparent;
760
- border-style: solid;
761
- border-width: 0;
752
+ width: 11.31px;
753
+ height: 11.31px;
754
+ transition: opacity 0.2s ease 0s;
755
+ transform: rotate(45deg);
756
+ background-color: inherit;
757
+ border: 0 solid var(--q-overlay-border-color);
762
758
  }
763
759
  .q-overlay--top .q-overlay__arrow {
764
- left: calc(50% - 0.5rem);
765
- bottom: calc(-0.5rem - 1px);
766
- }
767
- .q-overlay--top .q-overlay__arrow::before, .q-overlay--top .q-overlay__arrow::after {
768
- border-width: 0.5rem 0.5rem 0;
769
- }
770
- .q-overlay--top .q-overlay__arrow::before {
771
- bottom: 0;
772
- border-top-color: var(--q-overlay-border-color);
773
- }
774
- .q-overlay--top .q-overlay__arrow::after {
775
- bottom: 1px;
776
- border-top-color: var(--q-overlay-bg);
760
+ bottom: -6.655px;
761
+ border-bottom-right-radius: 0.1rem;
762
+ border-right-width: 1px;
763
+ border-bottom-width: 1px;
777
764
  }
778
765
  .q-overlay--bottom .q-overlay__arrow {
779
- top: calc(-0.5rem - 1px);
780
- left: calc(50% - 0.5rem);
781
- }
782
- .q-overlay--bottom .q-overlay__arrow::before, .q-overlay--bottom .q-overlay__arrow::after {
783
- border-width: 0 0.5rem 0.5rem;
784
- }
785
- .q-overlay--bottom .q-overlay__arrow::before {
786
- top: 0;
787
- border-bottom-color: var(--q-overlay-border-color);
788
- }
789
- .q-overlay--bottom .q-overlay__arrow::after {
790
- top: 1px;
791
- border-bottom-color: var(--q-overlay-bg);
766
+ top: -6.655px;
767
+ border-top-left-radius: 0.1rem;
768
+ border-left-width: 1px;
769
+ border-top-width: 1px;
792
770
  }
793
771
  .q-overlay--left .q-overlay__arrow {
794
- top: calc(50% - 0.5rem);
795
- right: -0.5rem;
796
- width: 0.5rem;
797
- height: 1rem;
798
- }
799
- .q-overlay--left .q-overlay__arrow::before, .q-overlay--left .q-overlay__arrow::after {
800
- border-width: 0.5rem 0 0.5rem 0.5rem;
801
- }
802
- .q-overlay--left .q-overlay__arrow::before {
803
- right: 0;
804
- border-left-color: var(--q-overlay-border-color);
805
- }
806
- .q-overlay--left .q-overlay__arrow::after {
807
- right: 1px;
808
- border-left-color: var(--q-overlay-bg);
772
+ right: -6.655px;
773
+ border-top-right-radius: 0.1rem;
774
+ border-right-width: 1px;
775
+ border-top-width: 1px;
809
776
  }
810
777
  .q-overlay--right .q-overlay__arrow {
811
- top: calc(50% - 0.5rem);
812
- left: -0.5rem;
813
- width: 0.5rem;
814
- height: 1rem;
815
- }
816
- .q-overlay--right .q-overlay__arrow::before, .q-overlay--right .q-overlay__arrow::after {
817
- border-width: 0.5rem 0.5rem 0.5rem 0;
818
- }
819
- .q-overlay--right .q-overlay__arrow::before {
820
- left: 0;
821
- border-right-color: var(--q-overlay-border-color);
822
- }
823
- .q-overlay--right .q-overlay__arrow::after {
824
- left: 1px;
825
- border-right-color: var(--q-overlay-bg);
778
+ left: -6.655px;
779
+ border-bottom-left-radius: 0.1rem;
780
+ border-left-width: 1px;
781
+ border-bottom-width: 1px;
826
782
  }
827
783
  .q-overlay--independent {
828
784
  position: fixed;
@@ -944,64 +900,24 @@ body *::-webkit-scrollbar-track {
944
900
  }
945
901
 
946
902
  .q-spinner-loader {
947
- display: flex;
948
- position: relative;
949
- width: 1em;
950
- height: 1em;
951
903
  font-size: 48px;
952
- line-height: 1;
953
- align-items: center;
954
- justify-content: center;
904
+ width: 1em;
905
+ padding: 0.15em;
906
+ aspect-ratio: 1;
907
+ border-radius: 50%;
955
908
  color: var(--q-theme-primary);
956
- }
957
- .q-spinner-loader svg {
958
- width: 100%;
959
- height: 100%;
960
- margin: auto;
961
- position: absolute;
962
- top: 0;
963
- bottom: 0;
964
- left: 0;
965
- right: 0;
966
- z-index: 0;
967
- animation: q-spin 2s linear infinite;
968
- transform-origin: center center;
969
- }
970
- .q-spinner-loader .path {
971
- stroke-dasharray: 1, 250;
972
- stroke-dashoffset: 0;
973
- animation: q-md-dash 1.5s ease-in-out infinite;
909
+ background: currentColor;
910
+ --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
911
+ -webkit-mask: var(--_m);
912
+ mask: var(--_m);
913
+ -webkit-mask-composite: source-out;
914
+ mask-composite: subtract;
915
+ animation: q-rotate 1s infinite linear;
974
916
  }
975
917
 
976
- @keyframes q-spin {
977
- 0% {
978
- transform: rotate3d(0, 0, 1, 0);
979
- }
980
- 25% {
981
- transform: rotate3d(0, 0, 1, 90deg);
982
- }
983
- 50% {
984
- transform: rotate3d(0, 0, 1, 180deg);
985
- }
986
- 75% {
987
- transform: rotate3d(0, 0, 1, 270deg);
988
- }
989
- to {
990
- transform: rotate3d(0, 0, 1, 359deg);
991
- }
992
- }
993
- @keyframes q-md-dash {
994
- 0% {
995
- stroke-dasharray: 1, 200;
996
- stroke-dashoffset: 0;
997
- }
998
- 50% {
999
- stroke-dasharray: 89, 200;
1000
- stroke-dashoffset: -35px;
1001
- }
918
+ @keyframes q-rotate {
1002
919
  to {
1003
- stroke-dasharray: 89, 200;
1004
- stroke-dashoffset: -124px;
920
+ transform: rotate(1turn);
1005
921
  }
1006
922
  }
1007
923
  .q-text-field__input {