@doyourjob/gravity-ui-page-constructor-addons 2.1.17 → 2.1.19
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.
|
@@ -5,6 +5,8 @@ unpredictable css rules order in build */
|
|
|
5
5
|
width: 100%;
|
|
6
6
|
color: var(--g-color-text-brand-contrast);
|
|
7
7
|
background-color: var(--g-color-base-brand);
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
animation: expand-mobile 0.5s ease forwards;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
.pc-addons-header-stripe__root_only-desktop {
|
|
@@ -16,6 +18,11 @@ unpredictable css rules order in build */
|
|
|
16
18
|
display: block;
|
|
17
19
|
}
|
|
18
20
|
}
|
|
21
|
+
@media (min-width: 769px) {
|
|
22
|
+
.pc-addons-header-stripe__root {
|
|
23
|
+
animation: expand-desktop 0.5s ease forwards;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
19
26
|
.pc-addons-header-stripe__content {
|
|
20
27
|
position: relative;
|
|
21
28
|
display: flex;
|
|
@@ -86,6 +93,12 @@ unpredictable css rules order in build */
|
|
|
86
93
|
text-decoration: none;
|
|
87
94
|
}
|
|
88
95
|
|
|
96
|
+
@media (min-width: 769px) {
|
|
97
|
+
.pc-addons-header-stripe__item-link {
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
text-overflow: inherit;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
89
102
|
.pc-addons-header-stripe__close {
|
|
90
103
|
position: absolute;
|
|
91
104
|
top: 0;
|
|
@@ -103,4 +116,21 @@ unpredictable css rules order in build */
|
|
|
103
116
|
|
|
104
117
|
.pc-addons-header-stripe__close:hover {
|
|
105
118
|
opacity: 0.6;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@keyframes expand-mobile {
|
|
122
|
+
from {
|
|
123
|
+
max-height: 0;
|
|
124
|
+
}
|
|
125
|
+
to {
|
|
126
|
+
max-height: 56px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
@keyframes expand-desktop {
|
|
130
|
+
from {
|
|
131
|
+
max-height: 0;
|
|
132
|
+
}
|
|
133
|
+
to {
|
|
134
|
+
max-height: 36px;
|
|
135
|
+
}
|
|
106
136
|
}
|
|
@@ -5,6 +5,8 @@ unpredictable css rules order in build */
|
|
|
5
5
|
width: 100%;
|
|
6
6
|
color: var(--g-color-text-brand-contrast);
|
|
7
7
|
background-color: var(--g-color-base-brand);
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
animation: expand-mobile 0.5s ease forwards;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
.pc-addons-header-stripe__root_only-desktop {
|
|
@@ -16,6 +18,11 @@ unpredictable css rules order in build */
|
|
|
16
18
|
display: block;
|
|
17
19
|
}
|
|
18
20
|
}
|
|
21
|
+
@media (min-width: 769px) {
|
|
22
|
+
.pc-addons-header-stripe__root {
|
|
23
|
+
animation: expand-desktop 0.5s ease forwards;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
19
26
|
.pc-addons-header-stripe__content {
|
|
20
27
|
position: relative;
|
|
21
28
|
display: flex;
|
|
@@ -86,6 +93,12 @@ unpredictable css rules order in build */
|
|
|
86
93
|
text-decoration: none;
|
|
87
94
|
}
|
|
88
95
|
|
|
96
|
+
@media (min-width: 769px) {
|
|
97
|
+
.pc-addons-header-stripe__item-link {
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
text-overflow: inherit;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
89
102
|
.pc-addons-header-stripe__close {
|
|
90
103
|
position: absolute;
|
|
91
104
|
top: 0;
|
|
@@ -103,4 +116,21 @@ unpredictable css rules order in build */
|
|
|
103
116
|
|
|
104
117
|
.pc-addons-header-stripe__close:hover {
|
|
105
118
|
opacity: 0.6;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@keyframes expand-mobile {
|
|
122
|
+
from {
|
|
123
|
+
max-height: 0;
|
|
124
|
+
}
|
|
125
|
+
to {
|
|
126
|
+
max-height: 56px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
@keyframes expand-desktop {
|
|
130
|
+
from {
|
|
131
|
+
max-height: 0;
|
|
132
|
+
}
|
|
133
|
+
to {
|
|
134
|
+
max-height: 36px;
|
|
135
|
+
}
|
|
106
136
|
}
|