@posiwise/core-styles 0.0.1
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/app.scss +43 -0
- package/css/animate.css +1750 -0
- package/css/demo.css +16 -0
- package/css/google-fonts.css +17 -0
- package/css/hopscotch.css +531 -0
- package/css/perfect-scrollbar.min.css +151 -0
- package/css/wizard.css +396 -0
- package/package.json +11 -0
- package/scss/_bootstrap_modules.scss +40 -0
- package/scss/_custom-bootstrap.scss +13 -0
- package/scss/_dashboard.scss +31 -0
- package/scss/_dynamic-styles.scss +534 -0
- package/scss/_plugins.scss +3 -0
- package/scss/_public-pages.scss +7 -0
- package/scss/_shared.scss +3 -0
- package/scss/_variables.scss +5 -0
- package/scss/common/landing-page-a/landing-page-style-1.scss +670 -0
- package/scss/common/landing-page-b/banner.scss +141 -0
- package/scss/common/landing-page-b/contact-us.scss +167 -0
- package/scss/common/landing-page-b/explainer.scss +75 -0
- package/scss/common/landing-page-b/explainer2.scss +35 -0
- package/scss/common/landing-page-b/header.scss +56 -0
- package/scss/common/landing-page-b/landing-page-style-2.scss +20 -0
- package/scss/custom-bootstrap/_badge.scss +468 -0
- package/scss/custom-bootstrap/_bootstrap_variables.scss +30 -0
- package/scss/custom-bootstrap/_buttons.scss +84 -0
- package/scss/custom-bootstrap/_card.scss +319 -0
- package/scss/custom-bootstrap/_carousel.scss +6 -0
- package/scss/custom-bootstrap/_form_select.scss +7 -0
- package/scss/custom-bootstrap/_forms.scss +337 -0
- package/scss/custom-bootstrap/_links.scss +7 -0
- package/scss/custom-bootstrap/_modal.scss +16 -0
- package/scss/custom-bootstrap/_navbar.scss +42 -0
- package/scss/custom-bootstrap/_popover.scss +10 -0
- package/scss/custom-bootstrap/_progress.scss +12 -0
- package/scss/custom-bootstrap/_reboot.scss +93 -0
- package/scss/custom-bootstrap/_type.scss +202 -0
- package/scss/dashboard/_admin.scss +15 -0
- package/scss/dashboard/_animations.scss +20 -0
- package/scss/dashboard/_bootstrap-social.scss +641 -0
- package/scss/dashboard/_chat.scss +250 -0
- package/scss/dashboard/_coming-soon.scss +34 -0
- package/scss/dashboard/_components.scss +229 -0
- package/scss/dashboard/_email.scss +184 -0
- package/scss/dashboard/_fixed-navbar.scss +18 -0
- package/scss/dashboard/_gallery.scss +1201 -0
- package/scss/dashboard/_helper.scss +736 -0
- package/scss/dashboard/_horizontal-timeline.scss +314 -0
- package/scss/dashboard/_icons.scss +107 -0
- package/scss/dashboard/_layout.scss +23 -0
- package/scss/dashboard/_misc.scss +220 -0
- package/scss/dashboard/_notifications.scss +27 -0
- package/scss/dashboard/_palette.scss +308 -0
- package/scss/dashboard/_profile.scss +36 -0
- package/scss/dashboard/_responsive.scss +209 -0
- package/scss/dashboard/_search.scss +33 -0
- package/scss/dashboard/_select.scss +16 -0
- package/scss/dashboard/_sidebar-content.scss +632 -0
- package/scss/dashboard/_tables.scss +17 -0
- package/scss/dashboard/_tabs.scss +151 -0
- package/scss/dashboard/_ui-switch.scss +6 -0
- package/scss/dashboard/_upload.scss +249 -0
- package/scss/dashboard/_utilities.scss +105 -0
- package/scss/dashboard/_vertical-timeline.scss +1261 -0
- package/scss/dashboard/mixins/_buttons.scss +78 -0
- package/scss/dashboard/mixins/_colors.scss +29 -0
- package/scss/dashboard/mixins/_custom.scss +34 -0
- package/scss/dashboard/mixins/_shadows.scss +62 -0
- package/scss/dashboard/mixins/_type.scss +16 -0
- package/scss/dashboard/mixins/_typography.scss +29 -0
- package/scss/dashboard/mixins/_utilities.scss +129 -0
- package/scss/dashboard/mixins/_vendor-prefixes.scss +71 -0
- package/scss/plugins/_plugin-nouislider.scss +199 -0
- package/scss/plugins/_toastr.scss +71 -0
- package/scss/plugins/perfect-scrollbar/_main.scss +3 -0
- package/scss/plugins/perfect-scrollbar/_mixins.scss +135 -0
- package/scss/plugins/perfect-scrollbar/_ps-custom.scss +134 -0
- package/scss/plugins/perfect-scrollbar/_themes.scss +23 -0
- package/scss/plugins/perfect-scrollbar/_variables.scss +19 -0
- package/scss/public-pages/_buttons.scss +136 -0
- package/scss/public-pages/_input-fields.scss +29 -0
- package/scss/public-pages/_layout.scss +108 -0
- package/scss/public-pages/mixins/_buttons.scss +28 -0
- package/scss/shared/_modal.scss +28 -0
- package/scss/shared/_prime-ng-tables.scss +107 -0
- package/scss/shared/_prime-ng.scss +5100 -0
- package/scss/variables/_app-colors-variables.scss +760 -0
- package/scss/variables/_branding-variables.scss +93 -0
- package/scss/variables/_dashboard-variables.scss +96 -0
- package/scss/variables/_generic-variables.scss +33 -0
- package/scss/variables/_landing-page-new-variables.scss +11 -0
- package/scss/variables/_primeng-variables.scss +190 -0
package/css/wizard.css
ADDED
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
.main-content .wizard {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
width: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.main-content .wizard .content {
|
|
7
|
+
margin-left: 0 !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.main-content .wizard > .steps {
|
|
11
|
+
display: block;
|
|
12
|
+
position: relative;
|
|
13
|
+
width: 100%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.main-content .wizard > .steps .current-info {
|
|
17
|
+
left: -99999px;
|
|
18
|
+
position: absolute;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.main-content .wizard > .steps > ul {
|
|
22
|
+
display: table;
|
|
23
|
+
list-style: none;
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
table-layout: fixed;
|
|
27
|
+
width: 100%;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.main-content .wizard > .steps > ul > li {
|
|
31
|
+
display: table-cell;
|
|
32
|
+
position: relative;
|
|
33
|
+
text-align: center;
|
|
34
|
+
vertical-align: top;
|
|
35
|
+
width: auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.main-content .wizard > .steps > ul > li a {
|
|
39
|
+
display: block;
|
|
40
|
+
margin-bottom: 20px;
|
|
41
|
+
margin-top: 20px;
|
|
42
|
+
padding-top: 52px;
|
|
43
|
+
position: relative;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.main-content .wizard > .steps > ul > li::before {
|
|
47
|
+
content: '';
|
|
48
|
+
display: block;
|
|
49
|
+
left: 0;
|
|
50
|
+
position: absolute;
|
|
51
|
+
z-index: 9;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.main-content .wizard > .steps > ul > li::after {
|
|
55
|
+
content: '';
|
|
56
|
+
display: block;
|
|
57
|
+
position: absolute;
|
|
58
|
+
right: 0;
|
|
59
|
+
z-index: 9;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.main-content .wizard > .steps > ul > li:first-child::before {
|
|
63
|
+
content: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.main-content .wizard > .steps > ul > li:last-child::after {
|
|
67
|
+
content: none;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.main-content .wizard > .steps > ul > li.current > a {
|
|
71
|
+
color: rgb(51 51 51);
|
|
72
|
+
cursor: default;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.main-content .wizard > .steps > ul > li.current .step {
|
|
76
|
+
background-color: rgb(255 255 255);
|
|
77
|
+
border-color: rgb(0 181 184);
|
|
78
|
+
color: rgb(0 181 184);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.main-content .wizard > .steps > ul > li.disabled a {
|
|
82
|
+
color: rgb(153 153 153);
|
|
83
|
+
cursor: default;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.main-content .wizard > .steps > ul > li.disabled a:hover {
|
|
87
|
+
color: rgb(153 153 153);
|
|
88
|
+
cursor: default;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.main-content .wizard > .steps > ul > li.disabled a:focus {
|
|
92
|
+
color: rgb(153 153 153);
|
|
93
|
+
cursor: default;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.main-content .wizard > .steps > ul > li.done a {
|
|
97
|
+
color: rgb(153 153 153);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.main-content .wizard > .steps > ul > li.done a:hover {
|
|
101
|
+
color: rgb(153 153 153);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.main-content .wizard > .steps > ul > li.done a:focus {
|
|
105
|
+
color: rgb(153 153 153);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.main-content .wizard > .steps > ul > li.done .step {
|
|
109
|
+
background-color: rgb(0 181 184);
|
|
110
|
+
border-color: rgb(0 181 184);
|
|
111
|
+
color: rgb(255 255 255);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.main-content .wizard > .steps > ul > li.error .step {
|
|
115
|
+
border-color: rgb(255 117 136);
|
|
116
|
+
color: rgb(255 117 136);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.main-content .wizard > .steps .step {
|
|
120
|
+
background-color: rgb(255 255 255);
|
|
121
|
+
display: inline-block;
|
|
122
|
+
left: 50%;
|
|
123
|
+
margin-left: -24px;
|
|
124
|
+
position: absolute;
|
|
125
|
+
text-align: center;
|
|
126
|
+
top: 0;
|
|
127
|
+
z-index: 10;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.main-content .wizard > .content {
|
|
131
|
+
margin: 0;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
padding: 0;
|
|
134
|
+
position: relative;
|
|
135
|
+
width: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.main-content .wizard > .content > .title {
|
|
139
|
+
left: -99999px;
|
|
140
|
+
position: absolute;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.main-content .wizard > .content > .body {
|
|
144
|
+
padding: 0 20px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.main-content .wizard > .content > iframe {
|
|
148
|
+
border: 0 none;
|
|
149
|
+
height: 100%;
|
|
150
|
+
width: 100%;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.main-content .wizard > .actions {
|
|
154
|
+
display: block;
|
|
155
|
+
padding: 20px;
|
|
156
|
+
padding-top: 0;
|
|
157
|
+
position: relative;
|
|
158
|
+
text-align: right;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.main-content .wizard > .actions > ul {
|
|
162
|
+
float: right;
|
|
163
|
+
list-style: none;
|
|
164
|
+
margin: 0;
|
|
165
|
+
padding: 0;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.main-content .wizard > .actions > ul::after {
|
|
169
|
+
clear: both;
|
|
170
|
+
content: '';
|
|
171
|
+
display: table;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.main-content .wizard > .actions > ul > li {
|
|
175
|
+
float: left;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.main-content .wizard > .actions > ul > li + li {
|
|
179
|
+
margin-left: 10px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.main-content .wizard > .actions > ul > li > a {
|
|
183
|
+
background: rgb(0 181 184);
|
|
184
|
+
border: 1px solid transparent;
|
|
185
|
+
border-radius: 2px;
|
|
186
|
+
color: rgb(255 255 255);
|
|
187
|
+
display: block;
|
|
188
|
+
padding: 7px 12px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.main-content .wizard > .actions > ul > li > a:hover {
|
|
192
|
+
box-shadow: 0 0 0 100px rgb(0 0 0 / 5%) inset;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.main-content .wizard > .actions > ul > li > a:active {
|
|
196
|
+
box-shadow: 0 0 0 100px rgb(0 0 0 / 10%) inset;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.main-content .wizard > .actions > ul > li > a[href='#previous'] {
|
|
200
|
+
background-color: rgb(255 141 96);
|
|
201
|
+
color: rgb(255 255 255);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.main-content .wizard > .actions > ul > li > a[href='#previous']:focus {
|
|
205
|
+
box-shadow: 0 0 0 100px rgb(0 0 0 / 2%) inset;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.main-content .wizard > .actions > ul > li > a[href='#previous']:active {
|
|
209
|
+
box-shadow: 0 0 0 100px rgb(0 0 0 / 4%) inset;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.main-content .wizard > .actions > ul > li.disabled > a {
|
|
213
|
+
color: rgb(255 255 255);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.main-content .wizard > .actions > ul > li.disabled > a:hover {
|
|
217
|
+
color: rgb(255 255 255);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.main-content .wizard > .actions > ul > li.disabled > a:focus {
|
|
221
|
+
color: rgb(255 255 255);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.main-content .wizard > .actions > ul > li.disabled > a[href='#previous'] {
|
|
225
|
+
box-shadow: none;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.main-content .wizard > .actions > ul > li.disabled > a[href='#previous']:hover {
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.main-content .wizard > .actions > ul > li.disabled > a[href='#previous']:focus {
|
|
233
|
+
box-shadow: none;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.main-content .wizard.wizard-circle > .steps > ul > li::before,
|
|
237
|
+
.main-content .wizard.wizard-circle > .steps > ul > li::after {
|
|
238
|
+
background-color: rgb(0 181 184);
|
|
239
|
+
height: 5px;
|
|
240
|
+
top: 43px;
|
|
241
|
+
width: 50%;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.main-content .wizard.wizard-circle > .steps > ul > li.current::after {
|
|
245
|
+
background-color: rgb(245 247 250);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.main-content .wizard.wizard-circle > .steps > ul > li.current ~ li::before {
|
|
249
|
+
background-color: rgb(245 247 250);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.main-content .wizard.wizard-circle > .steps > ul > li.current ~ li::after {
|
|
253
|
+
background-color: rgb(245 247 250);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.main-content .wizard.wizard-circle > .steps .step {
|
|
257
|
+
border: 5px solid rgb(245 247 250);
|
|
258
|
+
border-radius: 50%;
|
|
259
|
+
font-size: 1.3rem;
|
|
260
|
+
height: 50px;
|
|
261
|
+
line-height: 40px;
|
|
262
|
+
width: 50px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.main-content .wizard.wizard-notification > .steps > ul > li::before,
|
|
266
|
+
.main-content .wizard.wizard-notification > .steps > ul > li::after {
|
|
267
|
+
background-color: rgb(0 181 184);
|
|
268
|
+
height: 2px;
|
|
269
|
+
top: 39px;
|
|
270
|
+
width: 50%;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.current .step {
|
|
274
|
+
border: 2px solid rgb(0 181 184);
|
|
275
|
+
color: rgb(0 181 184);
|
|
276
|
+
line-height: 36px;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.current .step::after {
|
|
280
|
+
border-top-color: rgb(0 181 184);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.current::after {
|
|
284
|
+
background-color: rgb(245 247 250);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.current ~ li::before {
|
|
288
|
+
background-color: rgb(245 247 250);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.current ~ li::after {
|
|
292
|
+
background-color: rgb(245 247 250);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.done .step {
|
|
296
|
+
color: rgb(255 255 255);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.main-content .wizard.wizard-notification > .steps > ul > li.done .step::after {
|
|
300
|
+
border-top-color: rgb(0 181 184);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.main-content .wizard.wizard-notification > .steps .step {
|
|
304
|
+
background-color: rgb(245 247 250);
|
|
305
|
+
border-radius: 15%;
|
|
306
|
+
font-size: 1.3rem;
|
|
307
|
+
height: 40px;
|
|
308
|
+
line-height: 40px;
|
|
309
|
+
width: 40px;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.main-content .wizard.wizard-notification > .steps .step::after {
|
|
313
|
+
border-left: 7px solid transparent;
|
|
314
|
+
border-right: 7px solid transparent;
|
|
315
|
+
border-top: 8px solid rgb(245 247 250);
|
|
316
|
+
bottom: 0;
|
|
317
|
+
content: '';
|
|
318
|
+
height: 0;
|
|
319
|
+
left: 50%;
|
|
320
|
+
margin-bottom: -8px;
|
|
321
|
+
margin-left: -8px;
|
|
322
|
+
position: absolute;
|
|
323
|
+
width: 0;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.main-content .wizard.vertical > .steps {
|
|
327
|
+
display: inline;
|
|
328
|
+
float: left;
|
|
329
|
+
width: 10%;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.main-content .wizard.vertical > .steps > ul > li {
|
|
333
|
+
display: block;
|
|
334
|
+
width: 100%;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.main-content .wizard.vertical > .steps > ul > li::before,
|
|
338
|
+
.main-content .wizard.vertical > .steps > ul > li::after {
|
|
339
|
+
background-color: transparent;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.main-content .wizard.vertical > .steps > ul > li.current::before,
|
|
343
|
+
.main-content .wizard.vertical > .steps > ul > li.current::after {
|
|
344
|
+
background-color: transparent;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.main-content .wizard.vertical > .steps > ul > li.current ~ li::before {
|
|
348
|
+
background-color: transparent;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.main-content .wizard.vertical > .steps > ul > li.current ~ li::after {
|
|
352
|
+
background-color: transparent;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
@media (max-width: 768px) {
|
|
356
|
+
.main-content .wizard > .steps > ul {
|
|
357
|
+
margin-bottom: 20px;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.main-content .wizard > .steps > ul > li {
|
|
361
|
+
display: block;
|
|
362
|
+
float: left;
|
|
363
|
+
width: 50%;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.main-content .wizard > .steps > ul > li > a {
|
|
367
|
+
margin-bottom: 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.main-content .wizard > .steps > ul > li:first-child::before {
|
|
371
|
+
content: '';
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.main-content .wizard > .steps > ul > li:last-child::after {
|
|
375
|
+
background-color: rgb(0 181 184);
|
|
376
|
+
content: '';
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.main-content .wizard.vertical > .steps {
|
|
380
|
+
width: 15%;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
@media (max-width: 480px) {
|
|
385
|
+
.main-content .wizard > .steps > ul > li {
|
|
386
|
+
width: 100%;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.main-content .wizard > .steps > ul > li.current::after {
|
|
390
|
+
background-color: rgb(0 181 184);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.main-content .wizard.vertical > .steps {
|
|
394
|
+
width: 20%;
|
|
395
|
+
}
|
|
396
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@import 'bootstrap/scss/functions';
|
|
2
|
+
@import 'bootstrap/scss/variables';
|
|
3
|
+
@import 'bootstrap/scss/mixins';
|
|
4
|
+
@import 'bootstrap/scss/root';
|
|
5
|
+
@import 'bootstrap/scss/reboot';
|
|
6
|
+
@import 'bootstrap/scss/type';
|
|
7
|
+
@import 'bootstrap/scss/images';
|
|
8
|
+
//@import 'bootstrap/scss/code';
|
|
9
|
+
@import 'bootstrap/scss/grid';
|
|
10
|
+
@import 'bootstrap/scss/tables';
|
|
11
|
+
@import 'bootstrap/scss/forms';
|
|
12
|
+
@import 'bootstrap/scss/buttons';
|
|
13
|
+
@import 'bootstrap/scss/transitions';
|
|
14
|
+
@import 'bootstrap/scss/dropdown';
|
|
15
|
+
@import 'bootstrap/scss/button-group';
|
|
16
|
+
@import 'bootstrap/scss/forms/input-group';
|
|
17
|
+
@import 'bootstrap/scss/forms/form-check';
|
|
18
|
+
@import 'bootstrap/scss/forms/form-control';
|
|
19
|
+
@import 'bootstrap/scss/forms/form-text';
|
|
20
|
+
@import 'bootstrap/scss/forms/labels';
|
|
21
|
+
@import 'bootstrap/scss/forms/validation';
|
|
22
|
+
@import 'bootstrap/scss/forms/floating-labels';
|
|
23
|
+
@import 'bootstrap/scss/forms/form-range';
|
|
24
|
+
@import 'bootstrap/scss/forms/form-select';
|
|
25
|
+
@import 'bootstrap/scss/nav';
|
|
26
|
+
@import 'bootstrap/scss/navbar';
|
|
27
|
+
@import 'bootstrap/scss/card';
|
|
28
|
+
@import 'bootstrap/scss/breadcrumb';
|
|
29
|
+
@import 'bootstrap/scss/pagination';
|
|
30
|
+
@import 'bootstrap/scss/badge';
|
|
31
|
+
@import 'bootstrap/scss/alert';
|
|
32
|
+
@import 'bootstrap/scss/progress';
|
|
33
|
+
//@import 'bootstrap/scss/media';
|
|
34
|
+
@import 'bootstrap/scss/list-group';
|
|
35
|
+
@import 'bootstrap/scss/close';
|
|
36
|
+
@import 'bootstrap/scss/modal';
|
|
37
|
+
@import 'bootstrap/scss/tooltip';
|
|
38
|
+
@import 'bootstrap/scss/popover';
|
|
39
|
+
@import 'bootstrap/scss/carousel';
|
|
40
|
+
@import 'bootstrap/scss/utilities';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@import 'custom-bootstrap/reboot';
|
|
2
|
+
@import 'custom-bootstrap/badge';
|
|
3
|
+
@import 'custom-bootstrap/buttons';
|
|
4
|
+
@import 'custom-bootstrap/card';
|
|
5
|
+
@import 'custom-bootstrap/forms';
|
|
6
|
+
@import 'custom-bootstrap/carousel';
|
|
7
|
+
@import 'custom-bootstrap/modal';
|
|
8
|
+
@import 'custom-bootstrap/navbar';
|
|
9
|
+
@import 'custom-bootstrap/popover';
|
|
10
|
+
@import 'custom-bootstrap/progress';
|
|
11
|
+
@import 'custom-bootstrap/type';
|
|
12
|
+
@import 'custom-bootstrap/links';
|
|
13
|
+
@import 'custom-bootstrap/_form_select';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// Dashboard mixins
|
|
2
|
+
@import 'dashboard/mixins/utilities';
|
|
3
|
+
@import 'dashboard/mixins/typography';
|
|
4
|
+
@import 'dashboard/mixins/type';
|
|
5
|
+
@import 'dashboard/mixins/buttons';
|
|
6
|
+
@import 'dashboard/mixins/shadows';
|
|
7
|
+
@import 'dashboard/mixins/vendor-prefixes';
|
|
8
|
+
|
|
9
|
+
// Doashboard scss modules
|
|
10
|
+
@import 'dashboard/components';
|
|
11
|
+
@import 'dashboard/icons';
|
|
12
|
+
@import 'dashboard/ui-switch';
|
|
13
|
+
@import 'dashboard/select';
|
|
14
|
+
@import 'dashboard/tabs';
|
|
15
|
+
@import 'dashboard/notifications';
|
|
16
|
+
@import 'dashboard/animations';
|
|
17
|
+
@import 'dashboard/upload';
|
|
18
|
+
@import 'dashboard/tables';
|
|
19
|
+
@import 'dashboard/chat';
|
|
20
|
+
@import 'dashboard/email';
|
|
21
|
+
@import 'dashboard/gallery';
|
|
22
|
+
@import 'dashboard/helper';
|
|
23
|
+
@import 'dashboard/bootstrap-social';
|
|
24
|
+
@import 'dashboard/misc';
|
|
25
|
+
@import 'dashboard/vertical-timeline';
|
|
26
|
+
@import 'dashboard/profile';
|
|
27
|
+
@import 'dashboard/sidebar-content'; // vertical menu
|
|
28
|
+
@import 'dashboard/responsive'; // responsive vertical menu
|
|
29
|
+
@import 'dashboard/utilities';
|
|
30
|
+
@import 'dashboard/palette';
|
|
31
|
+
@import 'dashboard/admin';
|