@omnia/runtime 8.0.176-dev → 8.0.177-dev

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.
@@ -3,7 +3,7 @@
3
3
  max-width: 100%;
4
4
  overflow: hidden;
5
5
  position: absolute;
6
- transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
6
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
7
7
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
8
8
  border-style: solid;
9
9
  border-width: 0;
@@ -877,43 +877,6 @@
877
877
  background-position-x: var(--v-progress-linear-height);
878
878
  }
879
879
  }
880
- .v-ripple__container {
881
- color: inherit;
882
- border-radius: inherit;
883
- position: absolute;
884
- width: 100%;
885
- height: 100%;
886
- left: 0;
887
- top: 0;
888
- overflow: hidden;
889
- z-index: 0;
890
- pointer-events: none;
891
- contain: strict;
892
- }
893
- .v-ripple__animation {
894
- color: inherit;
895
- position: absolute;
896
- top: 0;
897
- left: 0;
898
- border-radius: 50%;
899
- background: currentColor;
900
- opacity: 0;
901
- pointer-events: none;
902
- overflow: hidden;
903
- will-change: transform, opacity;
904
- }
905
- .v-ripple__animation--enter {
906
- transition: none;
907
- opacity: 0;
908
- }
909
- .v-ripple__animation--in {
910
- transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
911
- opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
912
- }
913
- .v-ripple__animation--out {
914
- transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
915
- opacity: 0;
916
- }
917
880
  .v-icon {
918
881
  --v-icon-size-multiplier: 1;
919
882
  align-items: center;
@@ -1070,6 +1033,43 @@
1070
1033
  transform: rotate(270deg);
1071
1034
  }
1072
1035
  }
1036
+ .v-ripple__container {
1037
+ color: inherit;
1038
+ border-radius: inherit;
1039
+ position: absolute;
1040
+ width: 100%;
1041
+ height: 100%;
1042
+ left: 0;
1043
+ top: 0;
1044
+ overflow: hidden;
1045
+ z-index: 0;
1046
+ pointer-events: none;
1047
+ contain: strict;
1048
+ }
1049
+ .v-ripple__animation {
1050
+ color: inherit;
1051
+ position: absolute;
1052
+ top: 0;
1053
+ left: 0;
1054
+ border-radius: 50%;
1055
+ background: currentColor;
1056
+ opacity: 0;
1057
+ pointer-events: none;
1058
+ overflow: hidden;
1059
+ will-change: transform, opacity;
1060
+ }
1061
+ .v-ripple__animation--enter {
1062
+ transition: none;
1063
+ opacity: 0;
1064
+ }
1065
+ .v-ripple__animation--in {
1066
+ transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
1067
+ opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1068
+ }
1069
+ .v-ripple__animation--out {
1070
+ transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
1071
+ opacity: 0;
1072
+ }
1073
1073
  .v-infinite-scroll--horizontal {
1074
1074
  display: flex;
1075
1075
  flex-direction: row;
@@ -1,4 +1,43 @@
1
1
  .v-speed-dial__content {
2
2
  gap: 8px;
3
3
  }
4
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
5
+ flex-direction: row;
6
+ }
7
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
8
+ flex-direction: row-reverse;
9
+ }
10
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
11
+ flex-direction: column-reverse;
12
+ }
13
+ .v-speed-dial__content > *:nth-child(1) {
14
+ transition-delay: 0s;
15
+ }
16
+ .v-speed-dial__content > *:nth-child(2) {
17
+ transition-delay: 0.05s;
18
+ }
19
+ .v-speed-dial__content > *:nth-child(3) {
20
+ transition-delay: 0.1s;
21
+ }
22
+ .v-speed-dial__content > *:nth-child(4) {
23
+ transition-delay: 0.15s;
24
+ }
25
+ .v-speed-dial__content > *:nth-child(5) {
26
+ transition-delay: 0.2s;
27
+ }
28
+ .v-speed-dial__content > *:nth-child(6) {
29
+ transition-delay: 0.25s;
30
+ }
31
+ .v-speed-dial__content > *:nth-child(7) {
32
+ transition-delay: 0.3s;
33
+ }
34
+ .v-speed-dial__content > *:nth-child(8) {
35
+ transition-delay: 0.35s;
36
+ }
37
+ .v-speed-dial__content > *:nth-child(9) {
38
+ transition-delay: 0.4s;
39
+ }
40
+ .v-speed-dial__content > *:nth-child(10) {
41
+ transition-delay: 0.45s;
42
+ }
4
43