@rolster/styles-foundations 2.3.28 → 2.3.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/styles-foundations",
3
- "version": "2.3.28",
3
+ "version": "2.3.30",
4
4
  "description": "Front-end style pack to develop responsive and mobile projects on the web with Rolster.",
5
5
  "sass": "scss/styles.scss",
6
6
  "style": "dist/styles.css",
@@ -10,8 +10,7 @@
10
10
  --pvt-list-height: 0rem;
11
11
  --pvt-list-max-height: 0rem;
12
12
  --pvt-list-opacity: 0;
13
- --pvt-list-transform: scale(0, 0);
14
- --pvt-list-transform-origin: 0% 0%;
13
+ --pvt-list-transform: none;
15
14
  --pvt-backdrop-opacity: 0;
16
15
  --pvt-backdrop-bottom: initial;
17
16
 
@@ -87,7 +86,6 @@
87
86
  --pvt-list-max-height: 160rem;
88
87
  --pvt-list-height: auto;
89
88
  --pvt-list-opacity: 1;
90
- --pvt-list-transform: scale(1, 1);
91
89
 
92
90
  overflow: initial;
93
91
  opacity: 1;
@@ -96,8 +94,6 @@
96
94
  }
97
95
 
98
96
  &--higher {
99
- --pvt-list-transform-origin: 0% 100%;
100
-
101
97
  top: initial;
102
98
  bottom: var(--rlc-fieldlist-suggestions-bottom);
103
99
  }
@@ -118,7 +114,6 @@
118
114
  border: var(--rls-theme-border-1-500);
119
115
  box-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
120
116
  transform: var(--pvt-list-transform);
121
- transform-origin: var(--pvt-list-transform-origin);
122
117
  }
123
118
  }
124
119
 
@@ -205,7 +200,6 @@
205
200
  @media screen and (max-width: 480px) {
206
201
  .rls-field-list {
207
202
  --pvt-list-transform: translateY(100%);
208
- --pvt-list-transform-origin: initial;
209
203
 
210
204
  &__suggestions {
211
205
  position: fixed;
@@ -229,6 +223,9 @@
229
223
  bottom: 0px;
230
224
  border: none;
231
225
  z-index: var(--rls-z-index-4);
226
+ transition:
227
+ opacity 240ms 0ms var(--rls-standard-curve),
228
+ transform 240ms 0ms var(--rls-standard-curve);
232
229
  }
233
230
  }
234
231