marketplacepos 2.5.1 → 2.5.2
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/Marketplace/397.9488b7c2d948b1be.js +1 -0
- package/Marketplace/assets/bootstrap_light.scss +1142 -1142
- package/Marketplace/assets/floatingLabel.scss +187 -187
- package/Marketplace/assets/lbd/_alerts.scss +90 -90
- package/Marketplace/assets/lbd/_bootstrap-switch.scss +128 -128
- package/Marketplace/assets/lbd/_buttons.scss +132 -132
- package/Marketplace/assets/lbd/_cards.scss +256 -256
- package/Marketplace/assets/lbd/_chartist.scss +229 -229
- package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +140 -140
- package/Marketplace/assets/lbd/_dropdown.scss +137 -137
- package/Marketplace/assets/lbd/_footers.scss +75 -75
- package/Marketplace/assets/lbd/_inputs.scss +141 -141
- package/Marketplace/assets/lbd/_misc.scss +120 -120
- package/Marketplace/assets/lbd/_mixins.scss +8 -8
- package/Marketplace/assets/lbd/_navbars.scss +235 -235
- package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +574 -574
- package/Marketplace/assets/lbd/_responsive.scss +482 -482
- package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +333 -333
- package/Marketplace/assets/lbd/_tables.scss +88 -88
- package/Marketplace/assets/lbd/_typography.scss +91 -91
- package/Marketplace/assets/lbd/_variables.scss +272 -272
- package/Marketplace/assets/lbd/mixins/_buttons.scss +69 -69
- package/Marketplace/assets/lbd/mixins/_cards.scss +8 -8
- package/Marketplace/assets/lbd/mixins/_chartist.scss +87 -87
- package/Marketplace/assets/lbd/mixins/_icons.scss +12 -12
- package/Marketplace/assets/lbd/mixins/_inputs.scss +1 -1
- package/Marketplace/assets/lbd/mixins/_labels.scss +20 -20
- package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +33 -33
- package/Marketplace/assets/lbd/mixins/_navbars.scss +11 -11
- package/Marketplace/assets/lbd/mixins/_social-buttons.scss +42 -42
- package/Marketplace/assets/lbd/mixins/_tabs.scss +3 -3
- package/Marketplace/assets/lbd/mixins/_transparency.scss +19 -19
- package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
- package/Marketplace/assets/lbd/plugins/_animate.scss +227 -227
- package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +463 -463
- package/Marketplace/assets/light-bootstrap-dashboard.scss +32 -32
- package/Marketplace/assets/pos_variable.scss +83 -83
- package/Marketplace/assets/sitemap.json +39 -39
- package/Marketplace/assets/stepper-custom.scss +32 -32
- package/Marketplace/assets/variables-custom.scss +190 -190
- package/Marketplace/assets/version-adjustment-v5.scss +286 -286
- package/Marketplace/index.html +2 -2
- package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.6d4d6c7e2c139e6c.js} +1 -1
- package/package.json +1 -1
- package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
|
@@ -1,272 +1,272 @@
|
|
|
1
|
-
//== Buttons
|
|
2
|
-
//
|
|
3
|
-
//## For each of Bootstrap's buttons, define text, background and border color.
|
|
4
|
-
|
|
5
|
-
$none: 0 !default;
|
|
6
|
-
$border-thin: 1px !default;
|
|
7
|
-
$border-thick: 2px !default;
|
|
8
|
-
|
|
9
|
-
$white-color: #FFFFFF !default;
|
|
10
|
-
$white-bg: #FFFFFF !default;
|
|
11
|
-
|
|
12
|
-
$smoke-bg: #F5F5F5 !default;
|
|
13
|
-
|
|
14
|
-
$black-bg: rgba(30,30,30,.97) !default;
|
|
15
|
-
|
|
16
|
-
$black-color: #3B3B3B !default;
|
|
17
|
-
$black-hr: #444444 !default;
|
|
18
|
-
|
|
19
|
-
$light-gray: #E3E3E3 !default;
|
|
20
|
-
$medium-gray: #DDDDDD !default;
|
|
21
|
-
$medium-dark-gray: #AAAAAA !default;
|
|
22
|
-
$dark-gray: #9A9A9A !default;
|
|
23
|
-
|
|
24
|
-
$transparent-bg: transparent !default;
|
|
25
|
-
|
|
26
|
-
$default-color: #888888 !default;
|
|
27
|
-
$default-bg: #888888 !default;
|
|
28
|
-
$default-states-color: #777777 !default;
|
|
29
|
-
|
|
30
|
-
$primary-color: #3472F7 !default;
|
|
31
|
-
$primary-bg: #3472F7 !default;
|
|
32
|
-
$primary-states-color: #1D62F0 !default;
|
|
33
|
-
|
|
34
|
-
$success-color: #89b03e !default;
|
|
35
|
-
$success-bg: #89b03e !default;
|
|
36
|
-
$success-states-color: #049F0C !default;
|
|
37
|
-
|
|
38
|
-
$info-color: #1DC7EA !default;
|
|
39
|
-
$info-bg: #1DC7EA !default;
|
|
40
|
-
$info-states-color: lighten($info-color, 8%) !default;
|
|
41
|
-
|
|
42
|
-
$warning-color: #FF9500 !default;
|
|
43
|
-
$warning-bg: #FF9500 !default;
|
|
44
|
-
$warning-states-color: #ED8D00 !default;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
$danger-color: #FF4A55 !default;
|
|
48
|
-
$danger-bg: #FF4A55 !default;
|
|
49
|
-
$danger-states-color: #EE2D20 !default;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
$link-disabled-color: #555555 !default;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
/* light colors */
|
|
57
|
-
$light-blue: rgba($primary-color, .2);
|
|
58
|
-
$light-azure: rgba($info-color, .2);
|
|
59
|
-
$light-green: rgba($success-color, .2);
|
|
60
|
-
$light-orange: rgba($warning-color, .2);
|
|
61
|
-
$light-red: rgba($danger-color, .2);
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
//== Components
|
|
65
|
-
//
|
|
66
|
-
|
|
67
|
-
$padding-base-vertical: 8px !default;
|
|
68
|
-
$padding-base-horizontal: 16px !default;
|
|
69
|
-
|
|
70
|
-
$padding-round-vertical: 9px !default;
|
|
71
|
-
$padding-round-horizontal: 18px !default;
|
|
72
|
-
|
|
73
|
-
$padding-simple-vertical: 10px !default;
|
|
74
|
-
$padding-simple-horizontal: 18px !default;
|
|
75
|
-
|
|
76
|
-
$padding-large-vertical: 14px !default;
|
|
77
|
-
$padding-large-horizontal: 30px !default;
|
|
78
|
-
|
|
79
|
-
$padding-small-vertical: 5px !default;
|
|
80
|
-
$padding-small-horizontal: 10px !default;
|
|
81
|
-
|
|
82
|
-
$padding-xs-vertical: 1px !default;
|
|
83
|
-
$padding-xs-horizontal: 5px !default;
|
|
84
|
-
|
|
85
|
-
$padding-label-vertical: 2px !default;
|
|
86
|
-
$padding-label-horizontal: 12px !default;
|
|
87
|
-
|
|
88
|
-
$margin-large-vertical: 30px !default;
|
|
89
|
-
$margin-base-vertical: 15px !default;
|
|
90
|
-
|
|
91
|
-
$padding-zero: 0px !default;
|
|
92
|
-
|
|
93
|
-
$margin-bottom: 0 0 10px 0 !default;
|
|
94
|
-
$border-radius-small: 3px !default;
|
|
95
|
-
$border-radius-base: 4px !default;
|
|
96
|
-
$border-radius-large: 6px !default;
|
|
97
|
-
$border-radius-extreme: 10px !default;
|
|
98
|
-
|
|
99
|
-
$border-radius-large-top: $border-radius-large $border-radius-large 0 0 !default;
|
|
100
|
-
$border-radius-large-bottom: 0 0 $border-radius-large $border-radius-large !default;
|
|
101
|
-
|
|
102
|
-
$btn-round-radius: 30px !default;
|
|
103
|
-
|
|
104
|
-
$height-base: 40px !default;
|
|
105
|
-
|
|
106
|
-
$font-size-base: 14px !default;
|
|
107
|
-
$font-size-small: 12px !default;
|
|
108
|
-
$font-size-medium: 16px !default;
|
|
109
|
-
$font-size-large: 18px !default;
|
|
110
|
-
$font-size-large-navbar: 20px !default;
|
|
111
|
-
|
|
112
|
-
$font-size-h1: 52px !default;
|
|
113
|
-
$font-size-h2: 36px !default;
|
|
114
|
-
$font-size-h3: 28px !default;
|
|
115
|
-
$font-size-h4: 22px !default;
|
|
116
|
-
$font-size-h5: 16px !default;
|
|
117
|
-
$font-size-h6: 14px !default;
|
|
118
|
-
$font-paragraph: 16px !default;
|
|
119
|
-
$font-size-navbar: 16px !default;
|
|
120
|
-
$font-size-small: 12px !default;
|
|
121
|
-
|
|
122
|
-
$font-weight-light: 300 !default;
|
|
123
|
-
$font-weight-normal: 400 !default;
|
|
124
|
-
$font-weight-semi: 500 !default;
|
|
125
|
-
$font-weight-bold: 600 !default;
|
|
126
|
-
|
|
127
|
-
$line-height-general: 1.5 !default;
|
|
128
|
-
$line-height: 20px !default;
|
|
129
|
-
$line-height-lg: 54px !default;
|
|
130
|
-
|
|
131
|
-
$sidebar-width: calc(100% - 200px) !default;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
$border-radius-top: 10px 10px 0 0 !default;
|
|
135
|
-
$border-radius-bottom: 0 0 10px 10px !default;
|
|
136
|
-
|
|
137
|
-
$dropdown-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
|
|
138
|
-
|
|
139
|
-
$general-transition-time: 300ms !default;
|
|
140
|
-
|
|
141
|
-
$slow-transition-time: 370ms !default;
|
|
142
|
-
$dropdown-coordinates: 29px -50px !default;
|
|
143
|
-
|
|
144
|
-
$fast-transition-time: 150ms !default;
|
|
145
|
-
|
|
146
|
-
$ultra-fast-transition-time: 100ms !default;
|
|
147
|
-
|
|
148
|
-
$select-coordinates: 50% -40px !default;
|
|
149
|
-
|
|
150
|
-
$transition-linear: linear !default;
|
|
151
|
-
$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
|
|
152
|
-
$transition-ease: ease 0s;
|
|
153
|
-
$transition-ease-in: ease-in !default;
|
|
154
|
-
$transition-ease-out: ease-out !default;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
$navbar-padding-a: 9px 15px;
|
|
158
|
-
$navbar-margin-a: 10px 3px;
|
|
159
|
-
$navbar-padding-b: 12px 5px;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
$padding-social-a: 10px 5px;
|
|
163
|
-
|
|
164
|
-
$navbar-margin-a-btn: 15px 3px;
|
|
165
|
-
$navbar-margin-a-btn-round: 16px 3px;
|
|
166
|
-
|
|
167
|
-
$navbar-padding-a-icons: 6px 15px;
|
|
168
|
-
$navbar-margin-a-icons: 6px 3px;
|
|
169
|
-
|
|
170
|
-
$navbar-padding-brand: 15px 15px;
|
|
171
|
-
$navbar-margin-brand: 5px 0px;
|
|
172
|
-
|
|
173
|
-
$navbar-margin-brand-icons: 12px auto;
|
|
174
|
-
|
|
175
|
-
$navbar-margin-btn: 15px 3px;
|
|
176
|
-
|
|
177
|
-
$height-icon: 64px !default;
|
|
178
|
-
$width-icon: 64px !default;
|
|
179
|
-
$padding-icon: 12px !default;
|
|
180
|
-
$border-radius-icon: 15px !default;
|
|
181
|
-
|
|
182
|
-
$size-icon: 64px;
|
|
183
|
-
$size-icon-sm: 32px;
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
$height-icon-sm: 32px;
|
|
187
|
-
$width-icon-sm: 32px;
|
|
188
|
-
$padding-icon-sm: 4px;
|
|
189
|
-
$border-radius-icon-sm: 7px;
|
|
190
|
-
|
|
191
|
-
$height-icon-message: 40px;
|
|
192
|
-
$width-icon-message: 40px;
|
|
193
|
-
|
|
194
|
-
$height-icon-message-sm: 20px;
|
|
195
|
-
$width-icon-message-sm: 20px;
|
|
196
|
-
|
|
197
|
-
$default-color-top: #d9d9d9 !default;
|
|
198
|
-
$default-color-bottom: #909297 !default;
|
|
199
|
-
|
|
200
|
-
$blue-color-top: #4087ea;
|
|
201
|
-
$blue-color-bottom: #533ce1;
|
|
202
|
-
|
|
203
|
-
$azure-color-top: #45c0fd;
|
|
204
|
-
$azure-color-bottom: #4091ff;
|
|
205
|
-
|
|
206
|
-
$green-color-top: #a1eb3a;
|
|
207
|
-
$green-color-bottom: #6dc030;
|
|
208
|
-
|
|
209
|
-
$orange-color-top: #ffb33b;
|
|
210
|
-
$orange-color-bottom: #ff5221;
|
|
211
|
-
|
|
212
|
-
$red-color-top: #ff3b30;
|
|
213
|
-
$red-color-bottom: #bb0502;
|
|
214
|
-
|
|
215
|
-
$purple-color-top: #df55e1;
|
|
216
|
-
$purple-color-bottom: #943bea;
|
|
217
|
-
|
|
218
|
-
$pink-color-top: #ff2a63;
|
|
219
|
-
$pink-color-bottom: #ff2e2e;
|
|
220
|
-
|
|
221
|
-
$black-color-top: #787878;
|
|
222
|
-
$black-color-bottom: #343434;
|
|
223
|
-
|
|
224
|
-
$social-facebook: #3b5998;
|
|
225
|
-
$social-twitter: #55acee;
|
|
226
|
-
$social-pinterest: #cc2127;
|
|
227
|
-
$social-google: #dd4b39;
|
|
228
|
-
$social-linkedin: #0976b4;
|
|
229
|
-
$social-dribbble: #ea4c89;
|
|
230
|
-
$social-github: #333333;
|
|
231
|
-
$social-youtube: #e52d27;
|
|
232
|
-
$social-stumbleupon: #eb4924;
|
|
233
|
-
$social-reddit: #ff4500;
|
|
234
|
-
$social-tumblr: #35465c;
|
|
235
|
-
$social-behance: #1769ff;
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
$filter-blue: darken($primary-color, 10%);
|
|
239
|
-
$filter-azure: darken($info-color, 10%);
|
|
240
|
-
$filter-green: darken($success-color, 10%);
|
|
241
|
-
$filter-orange: darken($warning-color, 10%);
|
|
242
|
-
$filter-red: darken($danger-color, 10%);
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
$new-blue: #1DC7EA;
|
|
246
|
-
$new-purple: #9368E9;
|
|
247
|
-
$new-red: #FB404B;
|
|
248
|
-
$new-green: #87CB16;
|
|
249
|
-
$new-orange: #FFA534;
|
|
250
|
-
$new-dark-blue: #1F77D0;
|
|
251
|
-
$new-black: #5e5e5e;
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
$topbar-x: topbar-x !default;
|
|
255
|
-
$topbar-back: topbar-back !default;
|
|
256
|
-
$bottombar-x: bottombar-x !default;
|
|
257
|
-
$bottombar-back: bottombar-back !default;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
$white-navbar: rgba(#FFFFFF, .96);
|
|
261
|
-
$blue-navbar: lighten($new-dark-blue, 10%);
|
|
262
|
-
$azure-navbar: lighten($new-blue, 15%);
|
|
263
|
-
$green-navbar: lighten($new-green, 10%);
|
|
264
|
-
$orange-navbar: lighten($new-orange, 10%);
|
|
265
|
-
$red-navbar: lighten($new-red, 10%);
|
|
266
|
-
|
|
267
|
-
$base-font-family: 'Roboto', sans-serif;
|
|
268
|
-
$head-font-family: 'Roboto Slab', serif;
|
|
269
|
-
$link-color: #1F77D0 !default;
|
|
270
|
-
$light: #E3E3E3;
|
|
271
|
-
$font-family-base: $base-font-family;
|
|
272
|
-
$headings-font-family: $head-font-family;
|
|
1
|
+
//== Buttons
|
|
2
|
+
//
|
|
3
|
+
//## For each of Bootstrap's buttons, define text, background and border color.
|
|
4
|
+
|
|
5
|
+
$none: 0 !default;
|
|
6
|
+
$border-thin: 1px !default;
|
|
7
|
+
$border-thick: 2px !default;
|
|
8
|
+
|
|
9
|
+
$white-color: #FFFFFF !default;
|
|
10
|
+
$white-bg: #FFFFFF !default;
|
|
11
|
+
|
|
12
|
+
$smoke-bg: #F5F5F5 !default;
|
|
13
|
+
|
|
14
|
+
$black-bg: rgba(30,30,30,.97) !default;
|
|
15
|
+
|
|
16
|
+
$black-color: #3B3B3B !default;
|
|
17
|
+
$black-hr: #444444 !default;
|
|
18
|
+
|
|
19
|
+
$light-gray: #E3E3E3 !default;
|
|
20
|
+
$medium-gray: #DDDDDD !default;
|
|
21
|
+
$medium-dark-gray: #AAAAAA !default;
|
|
22
|
+
$dark-gray: #9A9A9A !default;
|
|
23
|
+
|
|
24
|
+
$transparent-bg: transparent !default;
|
|
25
|
+
|
|
26
|
+
$default-color: #888888 !default;
|
|
27
|
+
$default-bg: #888888 !default;
|
|
28
|
+
$default-states-color: #777777 !default;
|
|
29
|
+
|
|
30
|
+
$primary-color: #3472F7 !default;
|
|
31
|
+
$primary-bg: #3472F7 !default;
|
|
32
|
+
$primary-states-color: #1D62F0 !default;
|
|
33
|
+
|
|
34
|
+
$success-color: #89b03e !default;
|
|
35
|
+
$success-bg: #89b03e !default;
|
|
36
|
+
$success-states-color: #049F0C !default;
|
|
37
|
+
|
|
38
|
+
$info-color: #1DC7EA !default;
|
|
39
|
+
$info-bg: #1DC7EA !default;
|
|
40
|
+
$info-states-color: lighten($info-color, 8%) !default;
|
|
41
|
+
|
|
42
|
+
$warning-color: #FF9500 !default;
|
|
43
|
+
$warning-bg: #FF9500 !default;
|
|
44
|
+
$warning-states-color: #ED8D00 !default;
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
$danger-color: #FF4A55 !default;
|
|
48
|
+
$danger-bg: #FF4A55 !default;
|
|
49
|
+
$danger-states-color: #EE2D20 !default;
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
$link-disabled-color: #555555 !default;
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
/* light colors */
|
|
57
|
+
$light-blue: rgba($primary-color, .2);
|
|
58
|
+
$light-azure: rgba($info-color, .2);
|
|
59
|
+
$light-green: rgba($success-color, .2);
|
|
60
|
+
$light-orange: rgba($warning-color, .2);
|
|
61
|
+
$light-red: rgba($danger-color, .2);
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
//== Components
|
|
65
|
+
//
|
|
66
|
+
|
|
67
|
+
$padding-base-vertical: 8px !default;
|
|
68
|
+
$padding-base-horizontal: 16px !default;
|
|
69
|
+
|
|
70
|
+
$padding-round-vertical: 9px !default;
|
|
71
|
+
$padding-round-horizontal: 18px !default;
|
|
72
|
+
|
|
73
|
+
$padding-simple-vertical: 10px !default;
|
|
74
|
+
$padding-simple-horizontal: 18px !default;
|
|
75
|
+
|
|
76
|
+
$padding-large-vertical: 14px !default;
|
|
77
|
+
$padding-large-horizontal: 30px !default;
|
|
78
|
+
|
|
79
|
+
$padding-small-vertical: 5px !default;
|
|
80
|
+
$padding-small-horizontal: 10px !default;
|
|
81
|
+
|
|
82
|
+
$padding-xs-vertical: 1px !default;
|
|
83
|
+
$padding-xs-horizontal: 5px !default;
|
|
84
|
+
|
|
85
|
+
$padding-label-vertical: 2px !default;
|
|
86
|
+
$padding-label-horizontal: 12px !default;
|
|
87
|
+
|
|
88
|
+
$margin-large-vertical: 30px !default;
|
|
89
|
+
$margin-base-vertical: 15px !default;
|
|
90
|
+
|
|
91
|
+
$padding-zero: 0px !default;
|
|
92
|
+
|
|
93
|
+
$margin-bottom: 0 0 10px 0 !default;
|
|
94
|
+
$border-radius-small: 3px !default;
|
|
95
|
+
$border-radius-base: 4px !default;
|
|
96
|
+
$border-radius-large: 6px !default;
|
|
97
|
+
$border-radius-extreme: 10px !default;
|
|
98
|
+
|
|
99
|
+
$border-radius-large-top: $border-radius-large $border-radius-large 0 0 !default;
|
|
100
|
+
$border-radius-large-bottom: 0 0 $border-radius-large $border-radius-large !default;
|
|
101
|
+
|
|
102
|
+
$btn-round-radius: 30px !default;
|
|
103
|
+
|
|
104
|
+
$height-base: 40px !default;
|
|
105
|
+
|
|
106
|
+
$font-size-base: 14px !default;
|
|
107
|
+
$font-size-small: 12px !default;
|
|
108
|
+
$font-size-medium: 16px !default;
|
|
109
|
+
$font-size-large: 18px !default;
|
|
110
|
+
$font-size-large-navbar: 20px !default;
|
|
111
|
+
|
|
112
|
+
$font-size-h1: 52px !default;
|
|
113
|
+
$font-size-h2: 36px !default;
|
|
114
|
+
$font-size-h3: 28px !default;
|
|
115
|
+
$font-size-h4: 22px !default;
|
|
116
|
+
$font-size-h5: 16px !default;
|
|
117
|
+
$font-size-h6: 14px !default;
|
|
118
|
+
$font-paragraph: 16px !default;
|
|
119
|
+
$font-size-navbar: 16px !default;
|
|
120
|
+
$font-size-small: 12px !default;
|
|
121
|
+
|
|
122
|
+
$font-weight-light: 300 !default;
|
|
123
|
+
$font-weight-normal: 400 !default;
|
|
124
|
+
$font-weight-semi: 500 !default;
|
|
125
|
+
$font-weight-bold: 600 !default;
|
|
126
|
+
|
|
127
|
+
$line-height-general: 1.5 !default;
|
|
128
|
+
$line-height: 20px !default;
|
|
129
|
+
$line-height-lg: 54px !default;
|
|
130
|
+
|
|
131
|
+
$sidebar-width: calc(100% - 200px) !default;
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
$border-radius-top: 10px 10px 0 0 !default;
|
|
135
|
+
$border-radius-bottom: 0 0 10px 10px !default;
|
|
136
|
+
|
|
137
|
+
$dropdown-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
|
|
138
|
+
|
|
139
|
+
$general-transition-time: 300ms !default;
|
|
140
|
+
|
|
141
|
+
$slow-transition-time: 370ms !default;
|
|
142
|
+
$dropdown-coordinates: 29px -50px !default;
|
|
143
|
+
|
|
144
|
+
$fast-transition-time: 150ms !default;
|
|
145
|
+
|
|
146
|
+
$ultra-fast-transition-time: 100ms !default;
|
|
147
|
+
|
|
148
|
+
$select-coordinates: 50% -40px !default;
|
|
149
|
+
|
|
150
|
+
$transition-linear: linear !default;
|
|
151
|
+
$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
|
|
152
|
+
$transition-ease: ease 0s;
|
|
153
|
+
$transition-ease-in: ease-in !default;
|
|
154
|
+
$transition-ease-out: ease-out !default;
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
$navbar-padding-a: 9px 15px;
|
|
158
|
+
$navbar-margin-a: 10px 3px;
|
|
159
|
+
$navbar-padding-b: 12px 5px;
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
$padding-social-a: 10px 5px;
|
|
163
|
+
|
|
164
|
+
$navbar-margin-a-btn: 15px 3px;
|
|
165
|
+
$navbar-margin-a-btn-round: 16px 3px;
|
|
166
|
+
|
|
167
|
+
$navbar-padding-a-icons: 6px 15px;
|
|
168
|
+
$navbar-margin-a-icons: 6px 3px;
|
|
169
|
+
|
|
170
|
+
$navbar-padding-brand: 15px 15px;
|
|
171
|
+
$navbar-margin-brand: 5px 0px;
|
|
172
|
+
|
|
173
|
+
$navbar-margin-brand-icons: 12px auto;
|
|
174
|
+
|
|
175
|
+
$navbar-margin-btn: 15px 3px;
|
|
176
|
+
|
|
177
|
+
$height-icon: 64px !default;
|
|
178
|
+
$width-icon: 64px !default;
|
|
179
|
+
$padding-icon: 12px !default;
|
|
180
|
+
$border-radius-icon: 15px !default;
|
|
181
|
+
|
|
182
|
+
$size-icon: 64px;
|
|
183
|
+
$size-icon-sm: 32px;
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
$height-icon-sm: 32px;
|
|
187
|
+
$width-icon-sm: 32px;
|
|
188
|
+
$padding-icon-sm: 4px;
|
|
189
|
+
$border-radius-icon-sm: 7px;
|
|
190
|
+
|
|
191
|
+
$height-icon-message: 40px;
|
|
192
|
+
$width-icon-message: 40px;
|
|
193
|
+
|
|
194
|
+
$height-icon-message-sm: 20px;
|
|
195
|
+
$width-icon-message-sm: 20px;
|
|
196
|
+
|
|
197
|
+
$default-color-top: #d9d9d9 !default;
|
|
198
|
+
$default-color-bottom: #909297 !default;
|
|
199
|
+
|
|
200
|
+
$blue-color-top: #4087ea;
|
|
201
|
+
$blue-color-bottom: #533ce1;
|
|
202
|
+
|
|
203
|
+
$azure-color-top: #45c0fd;
|
|
204
|
+
$azure-color-bottom: #4091ff;
|
|
205
|
+
|
|
206
|
+
$green-color-top: #a1eb3a;
|
|
207
|
+
$green-color-bottom: #6dc030;
|
|
208
|
+
|
|
209
|
+
$orange-color-top: #ffb33b;
|
|
210
|
+
$orange-color-bottom: #ff5221;
|
|
211
|
+
|
|
212
|
+
$red-color-top: #ff3b30;
|
|
213
|
+
$red-color-bottom: #bb0502;
|
|
214
|
+
|
|
215
|
+
$purple-color-top: #df55e1;
|
|
216
|
+
$purple-color-bottom: #943bea;
|
|
217
|
+
|
|
218
|
+
$pink-color-top: #ff2a63;
|
|
219
|
+
$pink-color-bottom: #ff2e2e;
|
|
220
|
+
|
|
221
|
+
$black-color-top: #787878;
|
|
222
|
+
$black-color-bottom: #343434;
|
|
223
|
+
|
|
224
|
+
$social-facebook: #3b5998;
|
|
225
|
+
$social-twitter: #55acee;
|
|
226
|
+
$social-pinterest: #cc2127;
|
|
227
|
+
$social-google: #dd4b39;
|
|
228
|
+
$social-linkedin: #0976b4;
|
|
229
|
+
$social-dribbble: #ea4c89;
|
|
230
|
+
$social-github: #333333;
|
|
231
|
+
$social-youtube: #e52d27;
|
|
232
|
+
$social-stumbleupon: #eb4924;
|
|
233
|
+
$social-reddit: #ff4500;
|
|
234
|
+
$social-tumblr: #35465c;
|
|
235
|
+
$social-behance: #1769ff;
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
$filter-blue: darken($primary-color, 10%);
|
|
239
|
+
$filter-azure: darken($info-color, 10%);
|
|
240
|
+
$filter-green: darken($success-color, 10%);
|
|
241
|
+
$filter-orange: darken($warning-color, 10%);
|
|
242
|
+
$filter-red: darken($danger-color, 10%);
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
$new-blue: #1DC7EA;
|
|
246
|
+
$new-purple: #9368E9;
|
|
247
|
+
$new-red: #FB404B;
|
|
248
|
+
$new-green: #87CB16;
|
|
249
|
+
$new-orange: #FFA534;
|
|
250
|
+
$new-dark-blue: #1F77D0;
|
|
251
|
+
$new-black: #5e5e5e;
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
$topbar-x: topbar-x !default;
|
|
255
|
+
$topbar-back: topbar-back !default;
|
|
256
|
+
$bottombar-x: bottombar-x !default;
|
|
257
|
+
$bottombar-back: bottombar-back !default;
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
$white-navbar: rgba(#FFFFFF, .96);
|
|
261
|
+
$blue-navbar: lighten($new-dark-blue, 10%);
|
|
262
|
+
$azure-navbar: lighten($new-blue, 15%);
|
|
263
|
+
$green-navbar: lighten($new-green, 10%);
|
|
264
|
+
$orange-navbar: lighten($new-orange, 10%);
|
|
265
|
+
$red-navbar: lighten($new-red, 10%);
|
|
266
|
+
|
|
267
|
+
$base-font-family: 'Roboto', sans-serif;
|
|
268
|
+
$head-font-family: 'Roboto Slab', serif;
|
|
269
|
+
$link-color: #1F77D0 !default;
|
|
270
|
+
$light: #E3E3E3;
|
|
271
|
+
$font-family-base: $base-font-family;
|
|
272
|
+
$headings-font-family: $head-font-family;
|
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
// Mixin for generating new styles
|
|
2
|
-
@mixin btn-styles($btn-color, $btn-states-color) {
|
|
3
|
-
border-color: $btn-color;
|
|
4
|
-
color: $btn-color;
|
|
5
|
-
|
|
6
|
-
&:hover,
|
|
7
|
-
&:focus,
|
|
8
|
-
&:active,
|
|
9
|
-
&.active,
|
|
10
|
-
.open > &.dropdown-toggle {
|
|
11
|
-
background-color: $transparent-bg;
|
|
12
|
-
color: $btn-states-color;
|
|
13
|
-
border-color: $btn-states-color;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&.disabled,
|
|
17
|
-
&:disabled,
|
|
18
|
-
&[disabled],
|
|
19
|
-
fieldset[disabled] & {
|
|
20
|
-
&,
|
|
21
|
-
&:hover,
|
|
22
|
-
&:focus,
|
|
23
|
-
&.focus,
|
|
24
|
-
&:active,
|
|
25
|
-
&.active {
|
|
26
|
-
background-color: $transparent-bg;
|
|
27
|
-
border-color: $btn-color;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
&.btn-fill {
|
|
33
|
-
color: $white-color;
|
|
34
|
-
background-color: $btn-color;
|
|
35
|
-
@include opacity(1);
|
|
36
|
-
|
|
37
|
-
&:hover,
|
|
38
|
-
&:focus,
|
|
39
|
-
&:active,
|
|
40
|
-
&.active,
|
|
41
|
-
.open > &.dropdown-toggle{
|
|
42
|
-
background-color: $btn-states-color;
|
|
43
|
-
color: $white-color;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.caret{
|
|
47
|
-
border-top-color: $white-color;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.caret{
|
|
52
|
-
border-top-color: $btn-color;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
@mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border){
|
|
58
|
-
font-size: $font-size;
|
|
59
|
-
border-radius: $border;
|
|
60
|
-
padding: $padding-vertical $padding-horizontal;
|
|
61
|
-
|
|
62
|
-
&.btn-round{
|
|
63
|
-
padding: $padding-vertical + 1 $padding-horizontal;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
&.btn-simple{
|
|
67
|
-
padding: $padding-vertical + 2 $padding-horizontal;
|
|
68
|
-
}
|
|
69
|
-
|
|
1
|
+
// Mixin for generating new styles
|
|
2
|
+
@mixin btn-styles($btn-color, $btn-states-color) {
|
|
3
|
+
border-color: $btn-color;
|
|
4
|
+
color: $btn-color;
|
|
5
|
+
|
|
6
|
+
&:hover,
|
|
7
|
+
&:focus,
|
|
8
|
+
&:active,
|
|
9
|
+
&.active,
|
|
10
|
+
.open > &.dropdown-toggle {
|
|
11
|
+
background-color: $transparent-bg;
|
|
12
|
+
color: $btn-states-color;
|
|
13
|
+
border-color: $btn-states-color;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.disabled,
|
|
17
|
+
&:disabled,
|
|
18
|
+
&[disabled],
|
|
19
|
+
fieldset[disabled] & {
|
|
20
|
+
&,
|
|
21
|
+
&:hover,
|
|
22
|
+
&:focus,
|
|
23
|
+
&.focus,
|
|
24
|
+
&:active,
|
|
25
|
+
&.active {
|
|
26
|
+
background-color: $transparent-bg;
|
|
27
|
+
border-color: $btn-color;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
&.btn-fill {
|
|
33
|
+
color: $white-color;
|
|
34
|
+
background-color: $btn-color;
|
|
35
|
+
@include opacity(1);
|
|
36
|
+
|
|
37
|
+
&:hover,
|
|
38
|
+
&:focus,
|
|
39
|
+
&:active,
|
|
40
|
+
&.active,
|
|
41
|
+
.open > &.dropdown-toggle{
|
|
42
|
+
background-color: $btn-states-color;
|
|
43
|
+
color: $white-color;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.caret{
|
|
47
|
+
border-top-color: $white-color;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.caret{
|
|
52
|
+
border-top-color: $btn-color;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border){
|
|
58
|
+
font-size: $font-size;
|
|
59
|
+
border-radius: $border;
|
|
60
|
+
padding: $padding-vertical $padding-horizontal;
|
|
61
|
+
|
|
62
|
+
&.btn-round{
|
|
63
|
+
padding: $padding-vertical + 1 $padding-horizontal;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&.btn-simple{
|
|
67
|
+
padding: $padding-vertical + 2 $padding-horizontal;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
70
|
}
|