vcomply-design-system 1.0.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/README.md +22 -0
- package/css-build/css/alignment/alignment.css +33 -0
- package/css-build/css/animate/animate-fade-in-left.css +28 -0
- package/css-build/css/animate/animate-fade-in-right.css +28 -0
- package/css-build/css/animate/animate-fade-in.css +20 -0
- package/css-build/css/animate/animate-fade-out.css +20 -0
- package/css-build/css/animate/animate-slide-down.css +26 -0
- package/css-build/css/animate/animate-slide-left.css +26 -0
- package/css-build/css/animate/animate-slide-right.css +26 -0
- package/css-build/css/animate/animate-slide-up.css +26 -0
- package/css-build/css/animate/animation.css +58 -0
- package/css-build/css/animate/index.css +258 -0
- package/css-build/css/avatars/avatars.css +83 -0
- package/css-build/css/button/button.css +237 -0
- package/css-build/css/color/color.css +152 -0
- package/css-build/css/dialog/dialog.css +421 -0
- package/css-build/css/display/display.css +24 -0
- package/css-build/css/forms/check-box.css +97 -0
- package/css-build/css/forms/forms.css +336 -0
- package/css-build/css/forms/index.css +862 -0
- package/css-build/css/forms/radio.css +116 -0
- package/css-build/css/forms/range-slider.css +203 -0
- package/css-build/css/forms/switch.css +124 -0
- package/css-build/css/header/header.css +344 -0
- package/css-build/css/icons/icons.css +53 -0
- package/css-build/css/index.css +548 -0
- package/css-build/css/index2.css +313 -0
- package/css-build/css/layout/layout.css +19 -0
- package/css-build/css/left-menu/main-menu.css +98 -0
- package/css-build/css/left-menu/sub-menu.css +323 -0
- package/css-build/css/list/list.css +3 -0
- package/css-build/css/loader/v-loader.css +183 -0
- package/css-build/css/margin/index.css +112 -0
- package/css-build/css/margin/margin-bottom.css +25 -0
- package/css-build/css/margin/margin-left.css +25 -0
- package/css-build/css/margin/margin-right.css +40 -0
- package/css-build/css/margin/margin-top.css +25 -0
- package/css-build/css/margin/margin.css +25 -0
- package/css-build/css/mixin/mixin.css +7 -0
- package/css-build/css/mixin.css +0 -0
- package/css-build/css/no-data/no-data.css +36 -0
- package/css-build/css/padding/index.css +97 -0
- package/css-build/css/padding/padding-bottom.css +25 -0
- package/css-build/css/padding/padding-left.css +25 -0
- package/css-build/css/padding/padding-right.css +25 -0
- package/css-build/css/padding/padding-top.css +25 -0
- package/css-build/css/padding/padding.css +25 -0
- package/css-build/css/pagination/pagination.css +131 -0
- package/css-build/css/panel/panel.css +76 -0
- package/css-build/css/popover/popover.css +237 -0
- package/css-build/css/quick-links/quick-links.css +84 -0
- package/css-build/css/smiley/smiley.css +353 -0
- package/css-build/css/snack-bar/snack-bar.css +77 -0
- package/css-build/css/table/table.css +191 -0
- package/css-build/css/table-card/table-card.css +242 -0
- package/css-build/css/text/text.css +157 -0
- package/css-build/css/user-panel/user-panel.css +115 -0
- package/css-build/css/vx.css +4254 -0
- package/css-build/css/width/width.css +43 -0
- package/css-build/fonts/icon.eot +0 -0
- package/css-build/fonts/icon.svg +583 -0
- package/css-build/fonts/icon.ttf +0 -0
- package/css-build/fonts/icon.woff +0 -0
- package/css-build/images/1.jpg +0 -0
- package/css-build/images/2.jpg +0 -0
- package/css-build/images/3.jpg +0 -0
- package/css-build/images/4.jpg +0 -0
- package/css-build/images/example/graph-sec-menu.JPG +0 -0
- package/css-build/images/example/layout.svg +388 -0
- package/css-build/images/example/menu-icon-m.svg +56 -0
- package/css-build/images/example/primary-menu.svg +66 -0
- package/css-build/images/example/vcomply-icon-m.svg +43 -0
- package/css-build/images/favicon.ico +0 -0
- package/css-build/images/grid.JPG +0 -0
- package/css-build/images/no-data.svg +268 -0
- package/css-build/images/open-arrow-left.svg +3 -0
- package/css-build/images/plus-create-icon.svg +23 -0
- package/css-build/images/plus-incident-icon.svg +44 -0
- package/css-build/images/plus-risk-icon.svg +45 -0
- package/css-build/images/v-icon.svg +1 -0
- package/css-build/index.html +188 -0
- package/css-build/js/table.js +72 -0
- package/css-build/js/toolbar.js +48 -0
- package/css-build/less/alignment/alignment.less +43 -0
- package/css-build/less/animate/animate-fade-in-left.less +32 -0
- package/css-build/less/animate/animate-fade-in-right.less +32 -0
- package/css-build/less/animate/animate-fade-in.less +24 -0
- package/css-build/less/animate/animate-fade-out.less +24 -0
- package/css-build/less/animate/animate-slide-down.less +30 -0
- package/css-build/less/animate/animate-slide-left.less +30 -0
- package/css-build/less/animate/animate-slide-right.less +30 -0
- package/css-build/less/animate/animate-slide-up.less +30 -0
- package/css-build/less/animate/animation.less +58 -0
- package/css-build/less/animate/index.less +9 -0
- package/css-build/less/avatars/avatars.less +96 -0
- package/css-build/less/button/button.less +201 -0
- package/css-build/less/color/color.less +209 -0
- package/css-build/less/dialog/dialog.less +502 -0
- package/css-build/less/display/display.less +31 -0
- package/css-build/less/forms/check-box.less +117 -0
- package/css-build/less/forms/forms.less +386 -0
- package/css-build/less/forms/index.less +5 -0
- package/css-build/less/forms/radio.less +139 -0
- package/css-build/less/forms/range-slider.less +69 -0
- package/css-build/less/forms/switch.less +166 -0
- package/css-build/less/header/header.less +236 -0
- package/css-build/less/icons/icons.less +50 -0
- package/css-build/less/index.less +74 -0
- package/css-build/less/index2.less +396 -0
- package/css-build/less/layout/layout.less +16 -0
- package/css-build/less/left-menu/main-menu.less +123 -0
- package/css-build/less/left-menu/sub-menu.less +326 -0
- package/css-build/less/list/list.less +5 -0
- package/css-build/less/loader/v-loader.less +219 -0
- package/css-build/less/margin/index.less +5 -0
- package/css-build/less/margin/margin-bottom.less +25 -0
- package/css-build/less/margin/margin-left.less +25 -0
- package/css-build/less/margin/margin-right.less +40 -0
- package/css-build/less/margin/margin-top.less +25 -0
- package/css-build/less/margin/margin.less +25 -0
- package/css-build/less/mixin/mixin.less +27 -0
- package/css-build/less/mixin.less +1 -0
- package/css-build/less/no-data/no-data.less +52 -0
- package/css-build/less/padding/index.less +5 -0
- package/css-build/less/padding/padding-bottom.less +25 -0
- package/css-build/less/padding/padding-left.less +20 -0
- package/css-build/less/padding/padding-right.less +20 -0
- package/css-build/less/padding/padding-top.less +25 -0
- package/css-build/less/padding/padding.less +25 -0
- package/css-build/less/pagination/pagination.less +144 -0
- package/css-build/less/panel/panel.less +116 -0
- package/css-build/less/popover/popover.less +273 -0
- package/css-build/less/quick-links/quick-links.less +90 -0
- package/css-build/less/smiley/smiley.less +422 -0
- package/css-build/less/snack-bar/snack-bar.less +86 -0
- package/css-build/less/table/table.less +293 -0
- package/css-build/less/table-card/table-card.less +116 -0
- package/css-build/less/text/text.less +179 -0
- package/css-build/less/user-panel/user-panel.less +123 -0
- package/css-build/less/vx.less +28 -0
- package/css-build/less/width/width.less +37 -0
- package/css-build/less.js +11 -0
- package/css-build/pages/alignment.html +102 -0
- package/css-build/pages/avatars.html +555 -0
- package/css-build/pages/button.html +993 -0
- package/css-build/pages/checkbox.html +560 -0
- package/css-build/pages/color-palette.html +358 -0
- package/css-build/pages/common-layout.html +125 -0
- package/css-build/pages/dialog.html +738 -0
- package/css-build/pages/display.html +67 -0
- package/css-build/pages/font-family.html +281 -0
- package/css-build/pages/header.html +590 -0
- package/css-build/pages/icons.html +3715 -0
- package/css-build/pages/mein-menu-active.html +67 -0
- package/css-build/pages/mein-menu-sub-menu.html +110 -0
- package/css-build/pages/mein-menu-tooltip.html +70 -0
- package/css-build/pages/mein-menu.html +321 -0
- package/css-build/pages/no-data.html +277 -0
- package/css-build/pages/panel.html +423 -0
- package/css-build/pages/popover.html +666 -0
- package/css-build/pages/radio.html +418 -0
- package/css-build/pages/range-slider.html +279 -0
- package/css-build/pages/select-box.html +933 -0
- package/css-build/pages/smiley.html +355 -0
- package/css-build/pages/sub-menu.html +396 -0
- package/css-build/pages/switch.html +349 -0
- package/css-build/pages/tab-menu.html +301 -0
- package/css-build/pages/table-card.html +510 -0
- package/css-build/pages/table.html +2218 -0
- package/css-build/pages/text-box.html +325 -0
- package/css-build/pages/text.html +106 -0
- package/css-build/pages/v-loader.html +163 -0
- package/css-build/sw/pwabuilder-sw-register.js +14 -0
- package/css-build/sw/pwabuilder-sw.js +47 -0
- package/css-build/utility/code-prev.css +19 -0
- package/css-build/utility/prism.css +130 -0
- package/css-build/utility/prism.js +8 -0
- package/index.js +66 -0
- package/nodemon.json +4 -0
- package/package.json +24 -0
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-size: 16px;
|
|
3
|
+
}
|
|
4
|
+
a,
|
|
5
|
+
button {
|
|
6
|
+
cursor: pointer;
|
|
7
|
+
}
|
|
8
|
+
.vx-pt-0 {
|
|
9
|
+
padding-top: 0 !important;
|
|
10
|
+
}
|
|
11
|
+
.vx-pt-1 {
|
|
12
|
+
padding-top: 4px !important;
|
|
13
|
+
}
|
|
14
|
+
.vx-pt-2 {
|
|
15
|
+
padding-top: 8px !important;
|
|
16
|
+
}
|
|
17
|
+
.vx-pt-3 {
|
|
18
|
+
padding-top: 12px !important;
|
|
19
|
+
}
|
|
20
|
+
.vx-pt-4 {
|
|
21
|
+
padding-top: 16px !important;
|
|
22
|
+
}
|
|
23
|
+
.vx-pt-5 {
|
|
24
|
+
padding-top: 20px !important;
|
|
25
|
+
}
|
|
26
|
+
.vx-pr-0 {
|
|
27
|
+
padding-right: 0 !important;
|
|
28
|
+
}
|
|
29
|
+
.vx-pr-1 {
|
|
30
|
+
padding-right: 4px !important;
|
|
31
|
+
}
|
|
32
|
+
.vx-pr-2 {
|
|
33
|
+
padding-right: 8px !important;
|
|
34
|
+
}
|
|
35
|
+
.vx-pr-3 {
|
|
36
|
+
padding-right: 12px !important;
|
|
37
|
+
}
|
|
38
|
+
.vx-pr-4 {
|
|
39
|
+
padding-right: 16px !important;
|
|
40
|
+
}
|
|
41
|
+
.vx-pr-5 {
|
|
42
|
+
padding-right: 20px !important;
|
|
43
|
+
}
|
|
44
|
+
.vx-pb-0 {
|
|
45
|
+
padding-bottom: 0 !important;
|
|
46
|
+
}
|
|
47
|
+
.vx-pb-1 {
|
|
48
|
+
padding-bottom: 4px !important;
|
|
49
|
+
}
|
|
50
|
+
.vx-pb-2 {
|
|
51
|
+
padding-bottom: 8px !important;
|
|
52
|
+
}
|
|
53
|
+
.vx-pb-3 {
|
|
54
|
+
padding-bottom: 12px !important;
|
|
55
|
+
}
|
|
56
|
+
.vx-pb-4 {
|
|
57
|
+
padding-bottom: 16px !important;
|
|
58
|
+
}
|
|
59
|
+
.vx-pb-5 {
|
|
60
|
+
padding-bottom: 20px !important;
|
|
61
|
+
}
|
|
62
|
+
.vx-pl-0 {
|
|
63
|
+
padding-left: 0 !important;
|
|
64
|
+
}
|
|
65
|
+
.vx-pl-1 {
|
|
66
|
+
padding-left: 4px !important;
|
|
67
|
+
}
|
|
68
|
+
.vx-pl-2 {
|
|
69
|
+
padding-left: 8px !important;
|
|
70
|
+
}
|
|
71
|
+
.vx-pl-3 {
|
|
72
|
+
padding-left: 12px !important;
|
|
73
|
+
}
|
|
74
|
+
.vx-pl-4 {
|
|
75
|
+
padding-left: 16px !important;
|
|
76
|
+
}
|
|
77
|
+
.vx-pl-5 {
|
|
78
|
+
padding-left: 20px !important;
|
|
79
|
+
}
|
|
80
|
+
.vx-btn {
|
|
81
|
+
border: 1px solid #F1F1F1;
|
|
82
|
+
color: #1E5DD3;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
overflow: hidden;
|
|
85
|
+
outline: none;
|
|
86
|
+
border-radius: 2px;
|
|
87
|
+
display: inline-flex;
|
|
88
|
+
font-size: 12px;
|
|
89
|
+
text-transform: uppercase;
|
|
90
|
+
font-weight: 500;
|
|
91
|
+
transition: all 0.2s ease-in-out;
|
|
92
|
+
position: relative;
|
|
93
|
+
margin: 0;
|
|
94
|
+
text-decoration: none;
|
|
95
|
+
padding-right: 12px;
|
|
96
|
+
padding-left: 12px;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
}
|
|
99
|
+
.vx-btn i {
|
|
100
|
+
margin-right: 8px;
|
|
101
|
+
transform: scale(1.2);
|
|
102
|
+
}
|
|
103
|
+
.vx-btn.after i {
|
|
104
|
+
margin-left: 8px;
|
|
105
|
+
margin-right: 0;
|
|
106
|
+
}
|
|
107
|
+
.vx-btn.outline {
|
|
108
|
+
background: transparent;
|
|
109
|
+
}
|
|
110
|
+
.vx-btn + .vx-btn {
|
|
111
|
+
margin-left: 8px;
|
|
112
|
+
}
|
|
113
|
+
.vx-btn.transparent {
|
|
114
|
+
background: transparent !important;
|
|
115
|
+
border: none;
|
|
116
|
+
}
|
|
117
|
+
.vx-btn.transparent.primary {
|
|
118
|
+
color: #1E5DD3;
|
|
119
|
+
}
|
|
120
|
+
.vx-btn.transparent.red {
|
|
121
|
+
color: #EB2424;
|
|
122
|
+
}
|
|
123
|
+
.vx-btn.transparent.grey {
|
|
124
|
+
color: #161B2F;
|
|
125
|
+
}
|
|
126
|
+
.vx-btn:disabled {
|
|
127
|
+
filter: grayscale(1);
|
|
128
|
+
cursor: not-allowed;
|
|
129
|
+
}
|
|
130
|
+
.vx-btn:disabled:hover {
|
|
131
|
+
filter: grayscale(1);
|
|
132
|
+
}
|
|
133
|
+
.vx-btn:disabled:hover:before {
|
|
134
|
+
display: none;
|
|
135
|
+
}
|
|
136
|
+
.vx-btn.primary {
|
|
137
|
+
color: #FFFFFF;
|
|
138
|
+
background: #1E5DD3;
|
|
139
|
+
border-color: #1E5DD3;
|
|
140
|
+
}
|
|
141
|
+
.vx-btn.primary.outline {
|
|
142
|
+
color: #1E5DD3;
|
|
143
|
+
background: transparent;
|
|
144
|
+
border-color: #1E5DD3;
|
|
145
|
+
}
|
|
146
|
+
.vx-btn.primary.outline.light {
|
|
147
|
+
border-color: #f1f1f1;
|
|
148
|
+
}
|
|
149
|
+
.vx-btn.red {
|
|
150
|
+
color: #FFFFFF;
|
|
151
|
+
background: #EB2424;
|
|
152
|
+
border-color: #EB2424;
|
|
153
|
+
}
|
|
154
|
+
.vx-btn.red.outline {
|
|
155
|
+
color: #EB2424;
|
|
156
|
+
background: transparent;
|
|
157
|
+
border-color: #EB2424;
|
|
158
|
+
}
|
|
159
|
+
.vx-btn.grey {
|
|
160
|
+
color: #161B2F;
|
|
161
|
+
background: #DBDBDB;
|
|
162
|
+
border-color: #DBDBDB;
|
|
163
|
+
}
|
|
164
|
+
.vx-btn.grey.outline {
|
|
165
|
+
color: #161B2F;
|
|
166
|
+
background: transparent;
|
|
167
|
+
border-color: #F1F1F1;
|
|
168
|
+
}
|
|
169
|
+
.vx-btn.white {
|
|
170
|
+
background: #FFFFFF;
|
|
171
|
+
color: #747576;
|
|
172
|
+
border-color: #FFFFFF;
|
|
173
|
+
}
|
|
174
|
+
.vx-btn.lg {
|
|
175
|
+
line-height: 48px;
|
|
176
|
+
padding-right: 20px !important;
|
|
177
|
+
padding-left: 20px !important;
|
|
178
|
+
border-radius: 4px;
|
|
179
|
+
font-size: 16px;
|
|
180
|
+
font-weight: 600;
|
|
181
|
+
border-width: 2px;
|
|
182
|
+
}
|
|
183
|
+
.vx-btn.md {
|
|
184
|
+
line-height: 24px;
|
|
185
|
+
min-width: 80px;
|
|
186
|
+
}
|
|
187
|
+
.vx-btn.sm {
|
|
188
|
+
line-height: 20px;
|
|
189
|
+
font-size: 9px;
|
|
190
|
+
margin-bottom: 0;
|
|
191
|
+
}
|
|
192
|
+
.vx-btn.block {
|
|
193
|
+
display: flex;
|
|
194
|
+
width: 100%;
|
|
195
|
+
line-height: 38px;
|
|
196
|
+
padding-right: 20px !important;
|
|
197
|
+
padding-left: 20px !important;
|
|
198
|
+
border-radius: 0px;
|
|
199
|
+
justify-content: center;
|
|
200
|
+
font-size: 11px;
|
|
201
|
+
letter-spacing: 3.08px;
|
|
202
|
+
}
|
|
203
|
+
.vx-btn.block.rounded {
|
|
204
|
+
border-radius: 4px;
|
|
205
|
+
}
|
|
206
|
+
.vx-btn.icon {
|
|
207
|
+
height: 36px;
|
|
208
|
+
width: 36px;
|
|
209
|
+
border-radius: 50%;
|
|
210
|
+
display: inline-flex;
|
|
211
|
+
justify-content: center;
|
|
212
|
+
align-items: center;
|
|
213
|
+
margin-bottom: 0;
|
|
214
|
+
}
|
|
215
|
+
.vx-btn.icon.sm {
|
|
216
|
+
height: 28px;
|
|
217
|
+
width: 28px;
|
|
218
|
+
line-height: 26px;
|
|
219
|
+
}
|
|
220
|
+
.vx-btn.icon i {
|
|
221
|
+
margin: 0;
|
|
222
|
+
}
|
|
223
|
+
.vx-btn:before {
|
|
224
|
+
content: "";
|
|
225
|
+
position: absolute;
|
|
226
|
+
top: 0;
|
|
227
|
+
right: 0;
|
|
228
|
+
bottom: 0;
|
|
229
|
+
left: 0;
|
|
230
|
+
background: #000000;
|
|
231
|
+
opacity: 0;
|
|
232
|
+
transition: all 0.2s ease-in-out;
|
|
233
|
+
}
|
|
234
|
+
.vx-btn:hover {
|
|
235
|
+
position: relative;
|
|
236
|
+
filter: brightness(85%);
|
|
237
|
+
}
|
|
238
|
+
.animate {
|
|
239
|
+
-webkit-animation-duration: 1s;
|
|
240
|
+
animation-duration: 1s;
|
|
241
|
+
-webkit-animation-fill-mode: both;
|
|
242
|
+
animation-fill-mode: both;
|
|
243
|
+
}
|
|
244
|
+
.animate.animate-infinite {
|
|
245
|
+
-webkit-animation-iteration-count: infinite;
|
|
246
|
+
animation-iteration-count: infinite;
|
|
247
|
+
}
|
|
248
|
+
.animate.animate-repeat-1 {
|
|
249
|
+
-webkit-animation-iteration-count: 1;
|
|
250
|
+
animation-iteration-count: 1;
|
|
251
|
+
}
|
|
252
|
+
.animate.animate-repeat-2 {
|
|
253
|
+
-webkit-animation-iteration-count: 2;
|
|
254
|
+
animation-iteration-count: 2;
|
|
255
|
+
}
|
|
256
|
+
.animate.animate-repeat-3 {
|
|
257
|
+
-webkit-animation-iteration-count: 3;
|
|
258
|
+
animation-iteration-count: 3;
|
|
259
|
+
}
|
|
260
|
+
.animate.animate-delay-1s {
|
|
261
|
+
-webkit-animation-delay: 1s;
|
|
262
|
+
animation-delay: 1s;
|
|
263
|
+
}
|
|
264
|
+
.animate.animate-delay-2s {
|
|
265
|
+
-webkit-animation-delay: 2s;
|
|
266
|
+
animation-delay: 2s;
|
|
267
|
+
}
|
|
268
|
+
.animate.animate-delay-3s {
|
|
269
|
+
-webkit-animation-delay: 3s;
|
|
270
|
+
animation-delay: 3s;
|
|
271
|
+
}
|
|
272
|
+
.animate.animate-delay-4s {
|
|
273
|
+
-webkit-animation-delay: 4s;
|
|
274
|
+
animation-delay: 4s;
|
|
275
|
+
}
|
|
276
|
+
.animate.animate-delay-5s {
|
|
277
|
+
-webkit-animation-delay: 5s;
|
|
278
|
+
animation-delay: 5s;
|
|
279
|
+
}
|
|
280
|
+
.animate.animate-faster {
|
|
281
|
+
-webkit-animation-duration: 0.2s;
|
|
282
|
+
animation-duration: 0.2s;
|
|
283
|
+
}
|
|
284
|
+
.animate.animate-fast {
|
|
285
|
+
-webkit-animation-duration: 0.5s;
|
|
286
|
+
animation-duration: 0.5s;
|
|
287
|
+
}
|
|
288
|
+
.animate.animate-slow {
|
|
289
|
+
-webkit-animation-duration: 2s;
|
|
290
|
+
animation-duration: 2s;
|
|
291
|
+
}
|
|
292
|
+
.animate.animate-slower {
|
|
293
|
+
-webkit-animation-duration: 3s;
|
|
294
|
+
animation-duration: 3s;
|
|
295
|
+
}
|
|
296
|
+
@-webkit-keyframes fadeInLeft {
|
|
297
|
+
0% {
|
|
298
|
+
opacity: 0;
|
|
299
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
300
|
+
transform: translate3d(-200px, 0, 0);
|
|
301
|
+
}
|
|
302
|
+
to {
|
|
303
|
+
opacity: 1;
|
|
304
|
+
-webkit-transform: translateZ(0);
|
|
305
|
+
transform: translateZ(0);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
@keyframes fadeInLeft {
|
|
309
|
+
0% {
|
|
310
|
+
opacity: 0;
|
|
311
|
+
-webkit-transform: translate3d(-200px, 0, 0);
|
|
312
|
+
transform: translate3d(-200px, 0, 0);
|
|
313
|
+
}
|
|
314
|
+
to {
|
|
315
|
+
opacity: 1;
|
|
316
|
+
-webkit-transform: translateZ(0);
|
|
317
|
+
transform: translateZ(0);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
.animate-fadeInLeft {
|
|
321
|
+
-webkit-animation-name: fadeInLeft;
|
|
322
|
+
animation-name: fadeInLeft;
|
|
323
|
+
}
|
|
324
|
+
@-webkit-keyframes fadeInRight {
|
|
325
|
+
0% {
|
|
326
|
+
opacity: 0;
|
|
327
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
328
|
+
transform: translate3d(200px, 0, 0);
|
|
329
|
+
}
|
|
330
|
+
to {
|
|
331
|
+
opacity: 1;
|
|
332
|
+
-webkit-transform: translateZ(0);
|
|
333
|
+
transform: translateZ(0);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
@keyframes fadeInRight {
|
|
337
|
+
0% {
|
|
338
|
+
opacity: 0;
|
|
339
|
+
-webkit-transform: translate3d(200px, 0, 0);
|
|
340
|
+
transform: translate3d(200px, 0, 0);
|
|
341
|
+
}
|
|
342
|
+
to {
|
|
343
|
+
opacity: 1;
|
|
344
|
+
-webkit-transform: translateZ(0);
|
|
345
|
+
transform: translateZ(0);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
.animate-fadeInRight {
|
|
349
|
+
-webkit-animation-name: fadeInRight;
|
|
350
|
+
animation-name: fadeInRight;
|
|
351
|
+
}
|
|
352
|
+
@-webkit-keyframes fadeIn {
|
|
353
|
+
0% {
|
|
354
|
+
opacity: 0;
|
|
355
|
+
}
|
|
356
|
+
to {
|
|
357
|
+
opacity: 1;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
@keyframes fadeIn {
|
|
361
|
+
0% {
|
|
362
|
+
opacity: 0;
|
|
363
|
+
}
|
|
364
|
+
to {
|
|
365
|
+
opacity: 1;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
.animate-fadeIn {
|
|
369
|
+
-webkit-animation-name: fadeIn;
|
|
370
|
+
animation-name: fadeIn;
|
|
371
|
+
}
|
|
372
|
+
@-webkit-keyframes fadeOut {
|
|
373
|
+
0% {
|
|
374
|
+
opacity: 1;
|
|
375
|
+
}
|
|
376
|
+
to {
|
|
377
|
+
opacity: 0;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
@keyframes fadeOut {
|
|
381
|
+
0% {
|
|
382
|
+
opacity: 1;
|
|
383
|
+
}
|
|
384
|
+
to {
|
|
385
|
+
opacity: 0;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
.animate-fadeOut {
|
|
389
|
+
-webkit-animation-name: fadeOut;
|
|
390
|
+
animation-name: fadeOut;
|
|
391
|
+
}
|
|
392
|
+
@-webkit-keyframes slideInDown {
|
|
393
|
+
0% {
|
|
394
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
395
|
+
transform: translate3d(0, -200px, 0);
|
|
396
|
+
visibility: visible;
|
|
397
|
+
}
|
|
398
|
+
to {
|
|
399
|
+
-webkit-transform: translateZ(0);
|
|
400
|
+
transform: translateZ(0);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
@keyframes slideInDown {
|
|
404
|
+
0% {
|
|
405
|
+
-webkit-transform: translate3d(0, -200px, 0);
|
|
406
|
+
transform: translate3d(0, -200px, 0);
|
|
407
|
+
visibility: visible;
|
|
408
|
+
}
|
|
409
|
+
to {
|
|
410
|
+
-webkit-transform: translateZ(0);
|
|
411
|
+
transform: translateZ(0);
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
.animate-slideInDown {
|
|
415
|
+
-webkit-animation-name: slideInDown;
|
|
416
|
+
animation-name: slideInDown;
|
|
417
|
+
}
|
|
418
|
+
@-webkit-keyframes slideInLeft {
|
|
419
|
+
0% {
|
|
420
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
421
|
+
transform: translate3d(-100%, 0, 0);
|
|
422
|
+
visibility: visible;
|
|
423
|
+
}
|
|
424
|
+
to {
|
|
425
|
+
-webkit-transform: translateZ(0);
|
|
426
|
+
transform: translateZ(0);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
@keyframes slideInLeft {
|
|
430
|
+
0% {
|
|
431
|
+
-webkit-transform: translate3d(-100%, 0, 0);
|
|
432
|
+
transform: translate3d(-100%, 0, 0);
|
|
433
|
+
visibility: visible;
|
|
434
|
+
}
|
|
435
|
+
to {
|
|
436
|
+
-webkit-transform: translateZ(0);
|
|
437
|
+
transform: translateZ(0);
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
.animate-slideInLeft {
|
|
441
|
+
-webkit-animation-name: slideInLeft;
|
|
442
|
+
animation-name: slideInLeft;
|
|
443
|
+
}
|
|
444
|
+
@-webkit-keyframes slideInRight {
|
|
445
|
+
0% {
|
|
446
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
447
|
+
transform: translate3d(100%, 0, 0);
|
|
448
|
+
visibility: visible;
|
|
449
|
+
}
|
|
450
|
+
to {
|
|
451
|
+
-webkit-transform: translateZ(0);
|
|
452
|
+
transform: translateZ(0);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
@keyframes slideInRight {
|
|
456
|
+
0% {
|
|
457
|
+
-webkit-transform: translate3d(100%, 0, 0);
|
|
458
|
+
transform: translate3d(100%, 0, 0);
|
|
459
|
+
visibility: visible;
|
|
460
|
+
}
|
|
461
|
+
to {
|
|
462
|
+
-webkit-transform: translateZ(0);
|
|
463
|
+
transform: translateZ(0);
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
.animate-slideInRight {
|
|
467
|
+
-webkit-animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
468
|
+
animation: slideInRight 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
469
|
+
}
|
|
470
|
+
@-webkit-keyframes slideInUp {
|
|
471
|
+
0% {
|
|
472
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
473
|
+
transform: translate3d(0, 200px, 0);
|
|
474
|
+
visibility: visible;
|
|
475
|
+
}
|
|
476
|
+
to {
|
|
477
|
+
-webkit-transform: translateZ(0);
|
|
478
|
+
transform: translateZ(0);
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
@keyframes slideInUp {
|
|
482
|
+
0% {
|
|
483
|
+
-webkit-transform: translate3d(0, 200px, 0);
|
|
484
|
+
transform: translate3d(0, 200px, 0);
|
|
485
|
+
visibility: visible;
|
|
486
|
+
}
|
|
487
|
+
to {
|
|
488
|
+
-webkit-transform: translateZ(0);
|
|
489
|
+
transform: translateZ(0);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
.animate-slideInUp {
|
|
493
|
+
-webkit-animation-name: slideInUp;
|
|
494
|
+
animation-name: slideInUp;
|
|
495
|
+
}
|
|
496
|
+
.vx-left-menu {
|
|
497
|
+
width: 260px;
|
|
498
|
+
height: 100vh;
|
|
499
|
+
position: sticky;
|
|
500
|
+
top: 0;
|
|
501
|
+
transition: all 0.2s ease-in-out;
|
|
502
|
+
z-index: 2;
|
|
503
|
+
overflow: auto;
|
|
504
|
+
}
|
|
505
|
+
.vx-left-menu.toggle {
|
|
506
|
+
width: 60px;
|
|
507
|
+
transition: all 0.2s ease-in-out;
|
|
508
|
+
}
|
|
509
|
+
.vx-right-container {
|
|
510
|
+
width: 100%;
|
|
511
|
+
transition: all 0.2s ease-in-out;
|
|
512
|
+
}
|
|
513
|
+
.vx-wrapper {
|
|
514
|
+
padding: 0 12px;
|
|
515
|
+
}
|
|
516
|
+
.vx-wrapper iframe {
|
|
517
|
+
height: calc(100vh - 4px);
|
|
518
|
+
background: #FFFFFF;
|
|
519
|
+
border-radius: 4px;
|
|
520
|
+
padding: 0 12px;
|
|
521
|
+
display: none;
|
|
522
|
+
}
|
|
523
|
+
.vx-wrapper iframe.active {
|
|
524
|
+
display: block;
|
|
525
|
+
}
|
|
526
|
+
.vx-h-100 {
|
|
527
|
+
height: 100%;
|
|
528
|
+
}
|
|
529
|
+
.vx-dialog-wrapper {
|
|
530
|
+
display: flex;
|
|
531
|
+
position: fixed;
|
|
532
|
+
z-index: 5;
|
|
533
|
+
top: 0;
|
|
534
|
+
right: 0;
|
|
535
|
+
bottom: 0;
|
|
536
|
+
left: 0;
|
|
537
|
+
justify-content: center;
|
|
538
|
+
align-items: center;
|
|
539
|
+
}
|
|
540
|
+
.vx-dialog-overlay {
|
|
541
|
+
position: fixed;
|
|
542
|
+
z-index: -1;
|
|
543
|
+
top: 0;
|
|
544
|
+
right: 0;
|
|
545
|
+
bottom: 0;
|
|
546
|
+
left: 0;
|
|
547
|
+
background: #161b2f60;
|
|
548
|
+
}
|