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,256 +1,256 @@
|
|
|
1
|
-
.card{
|
|
2
|
-
border-radius: $border-radius-base;
|
|
3
|
-
background-color: $white-color;
|
|
4
|
-
margin-bottom: 30px;
|
|
5
|
-
|
|
6
|
-
.card-image{
|
|
7
|
-
width: 100%;
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
height: 260px;
|
|
10
|
-
border-radius: $border-radius-base $border-radius-base 0 0;
|
|
11
|
-
position: relative;
|
|
12
|
-
-webkit-transform-style: preserve-3d;
|
|
13
|
-
-moz-transform-style: preserve-3d;
|
|
14
|
-
transform-style: preserve-3d;
|
|
15
|
-
|
|
16
|
-
img {
|
|
17
|
-
width: 100%;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
.filter{
|
|
21
|
-
position: absolute;
|
|
22
|
-
z-index: 2;
|
|
23
|
-
background-color: rgba(0,0,0,.68);
|
|
24
|
-
top: 0;
|
|
25
|
-
left: 0;
|
|
26
|
-
width: 100%;
|
|
27
|
-
height: 100%;
|
|
28
|
-
text-align: center;
|
|
29
|
-
|
|
30
|
-
@include opacity(0);
|
|
31
|
-
|
|
32
|
-
.btn{
|
|
33
|
-
@include vertical-align();
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
&:hover .filter{
|
|
37
|
-
@include opacity(1);
|
|
38
|
-
}
|
|
39
|
-
.btn-hover{
|
|
40
|
-
@include opacity(0);
|
|
41
|
-
}
|
|
42
|
-
&:hover .btn-hover{
|
|
43
|
-
@include opacity(1);
|
|
44
|
-
}
|
|
45
|
-
.card-body{
|
|
46
|
-
padding: 15px 15px 10px 15px;
|
|
47
|
-
min-height:120px;
|
|
48
|
-
}
|
|
49
|
-
.card-header{
|
|
50
|
-
padding: 15px 15px 0;
|
|
51
|
-
background-color: $white-color;
|
|
52
|
-
border-bottom: none !important;
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
.card-category,
|
|
56
|
-
label{
|
|
57
|
-
font-size: $font-size-base;
|
|
58
|
-
font-weight: $font-weight-normal;
|
|
59
|
-
color: $dark-gray;
|
|
60
|
-
margin-bottom: 0px;
|
|
61
|
-
|
|
62
|
-
i{
|
|
63
|
-
font-size: $font-paragraph;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
label{
|
|
68
|
-
font-size: $font-size-small;
|
|
69
|
-
margin-bottom: 5px;
|
|
70
|
-
text-transform: uppercase;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.card-title{
|
|
74
|
-
margin: $none;
|
|
75
|
-
color: #4d4d4d;
|
|
76
|
-
font-weight: $font-weight-light;
|
|
77
|
-
}
|
|
78
|
-
.avatar{
|
|
79
|
-
width: 30px;
|
|
80
|
-
height: 30px;
|
|
81
|
-
overflow: hidden;
|
|
82
|
-
border-radius: 50%;
|
|
83
|
-
margin-right: 5px;
|
|
84
|
-
}
|
|
85
|
-
.description{
|
|
86
|
-
font-size: $font-size-base;
|
|
87
|
-
color: #333;
|
|
88
|
-
}
|
|
89
|
-
.card-footer{
|
|
90
|
-
padding-top: 0;
|
|
91
|
-
background-color: $transparent-bg;
|
|
92
|
-
line-height: 30px;
|
|
93
|
-
border-top: none !important;
|
|
94
|
-
font-size: 14px;
|
|
95
|
-
|
|
96
|
-
.legend{
|
|
97
|
-
padding: 5px 0;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
hr{
|
|
101
|
-
margin-top: 5px;
|
|
102
|
-
margin-bottom: 5px;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
.stats{
|
|
106
|
-
color: #a9a9a9;
|
|
107
|
-
}
|
|
108
|
-
.card-footer div{
|
|
109
|
-
display: inline-block;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.author{
|
|
113
|
-
font-size: $font-size-small;
|
|
114
|
-
font-weight: $font-weight-bold;
|
|
115
|
-
text-transform: uppercase;
|
|
116
|
-
}
|
|
117
|
-
.author i{
|
|
118
|
-
font-size: $font-size-base;
|
|
119
|
-
}
|
|
120
|
-
h6{
|
|
121
|
-
font-size: $font-size-small;
|
|
122
|
-
margin: 0;
|
|
123
|
-
}
|
|
124
|
-
&.card-separator:after{
|
|
125
|
-
height: 100%;
|
|
126
|
-
right: -15px;
|
|
127
|
-
top: 0;
|
|
128
|
-
width: 1px;
|
|
129
|
-
background-color: $medium-gray;
|
|
130
|
-
|
|
131
|
-
position: absolute;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.ct-chart{
|
|
135
|
-
margin: 30px 0 30px;
|
|
136
|
-
height: 245px;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.ct-label{
|
|
140
|
-
font-size: 1rem !important;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.table{
|
|
144
|
-
tbody td:first-child,
|
|
145
|
-
thead th:first-child{
|
|
146
|
-
padding-left: 15px;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
tbody td:last-child,
|
|
150
|
-
thead th:last-child{
|
|
151
|
-
padding-right: 15px;
|
|
152
|
-
display: inline-flex;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.alert{
|
|
157
|
-
border-radius: $border-radius-base;
|
|
158
|
-
position: relative;
|
|
159
|
-
|
|
160
|
-
&.alert-with-icon{
|
|
161
|
-
padding-left: 65px;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
.card-stats{
|
|
169
|
-
.card-body{
|
|
170
|
-
padding: 15px 15px 0px;
|
|
171
|
-
|
|
172
|
-
.numbers{
|
|
173
|
-
font-size: 1.8rem;
|
|
174
|
-
text-align: right;
|
|
175
|
-
|
|
176
|
-
p{
|
|
177
|
-
margin-bottom: 0;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
.card-footer{
|
|
182
|
-
padding: 0px 15px 10px 15px;
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
.icon-big {
|
|
187
|
-
font-size: 3em;
|
|
188
|
-
min-height: 64px;
|
|
189
|
-
|
|
190
|
-
i{
|
|
191
|
-
font-weight: 700;
|
|
192
|
-
line-height: 59px;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.card-user{
|
|
200
|
-
.card-image{
|
|
201
|
-
height: 110px;
|
|
202
|
-
}
|
|
203
|
-
.card-image-plain{
|
|
204
|
-
height: 0;
|
|
205
|
-
margin-top: 110px;
|
|
206
|
-
}
|
|
207
|
-
.author{
|
|
208
|
-
text-align: center;
|
|
209
|
-
text-transform: none;
|
|
210
|
-
margin-top: -70px;
|
|
211
|
-
}
|
|
212
|
-
.avatar{
|
|
213
|
-
width: 124px;
|
|
214
|
-
height: 124px;
|
|
215
|
-
border: 5px solid #FFFFFF;
|
|
216
|
-
position: relative;
|
|
217
|
-
margin-bottom: 15px;
|
|
218
|
-
|
|
219
|
-
&.border-gray{
|
|
220
|
-
border-color: #EEEEEE;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
.title{
|
|
224
|
-
line-height: 24px;
|
|
225
|
-
}
|
|
226
|
-
.card-body{
|
|
227
|
-
min-height: 240px;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.card-user,
|
|
232
|
-
.card-price{
|
|
233
|
-
.card-footer{
|
|
234
|
-
padding: 5px 15px 10px;
|
|
235
|
-
}
|
|
236
|
-
hr{
|
|
237
|
-
margin: 5px 15px;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
.card-plain{
|
|
241
|
-
background-color: transparent;
|
|
242
|
-
box-shadow: none;
|
|
243
|
-
border-radius: 0;
|
|
244
|
-
|
|
245
|
-
.card-image{
|
|
246
|
-
border-radius: 4px;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.card.card-plain{
|
|
251
|
-
border: none !important;
|
|
252
|
-
|
|
253
|
-
.card-header{
|
|
254
|
-
background-color: transparent !important;
|
|
255
|
-
}
|
|
256
|
-
}
|
|
1
|
+
.card{
|
|
2
|
+
border-radius: $border-radius-base;
|
|
3
|
+
background-color: $white-color;
|
|
4
|
+
margin-bottom: 30px;
|
|
5
|
+
|
|
6
|
+
.card-image{
|
|
7
|
+
width: 100%;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
height: 260px;
|
|
10
|
+
border-radius: $border-radius-base $border-radius-base 0 0;
|
|
11
|
+
position: relative;
|
|
12
|
+
-webkit-transform-style: preserve-3d;
|
|
13
|
+
-moz-transform-style: preserve-3d;
|
|
14
|
+
transform-style: preserve-3d;
|
|
15
|
+
|
|
16
|
+
img {
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
.filter{
|
|
21
|
+
position: absolute;
|
|
22
|
+
z-index: 2;
|
|
23
|
+
background-color: rgba(0,0,0,.68);
|
|
24
|
+
top: 0;
|
|
25
|
+
left: 0;
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: 100%;
|
|
28
|
+
text-align: center;
|
|
29
|
+
|
|
30
|
+
@include opacity(0);
|
|
31
|
+
|
|
32
|
+
.btn{
|
|
33
|
+
@include vertical-align();
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
&:hover .filter{
|
|
37
|
+
@include opacity(1);
|
|
38
|
+
}
|
|
39
|
+
.btn-hover{
|
|
40
|
+
@include opacity(0);
|
|
41
|
+
}
|
|
42
|
+
&:hover .btn-hover{
|
|
43
|
+
@include opacity(1);
|
|
44
|
+
}
|
|
45
|
+
.card-body{
|
|
46
|
+
padding: 15px 15px 10px 15px;
|
|
47
|
+
min-height:120px;
|
|
48
|
+
}
|
|
49
|
+
.card-header{
|
|
50
|
+
padding: 15px 15px 0;
|
|
51
|
+
background-color: $white-color;
|
|
52
|
+
border-bottom: none !important;
|
|
53
|
+
|
|
54
|
+
}
|
|
55
|
+
.card-category,
|
|
56
|
+
label{
|
|
57
|
+
font-size: $font-size-base;
|
|
58
|
+
font-weight: $font-weight-normal;
|
|
59
|
+
color: $dark-gray;
|
|
60
|
+
margin-bottom: 0px;
|
|
61
|
+
|
|
62
|
+
i{
|
|
63
|
+
font-size: $font-paragraph;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
label{
|
|
68
|
+
font-size: $font-size-small;
|
|
69
|
+
margin-bottom: 5px;
|
|
70
|
+
text-transform: uppercase;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.card-title{
|
|
74
|
+
margin: $none;
|
|
75
|
+
color: #4d4d4d;
|
|
76
|
+
font-weight: $font-weight-light;
|
|
77
|
+
}
|
|
78
|
+
.avatar{
|
|
79
|
+
width: 30px;
|
|
80
|
+
height: 30px;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
border-radius: 50%;
|
|
83
|
+
margin-right: 5px;
|
|
84
|
+
}
|
|
85
|
+
.description{
|
|
86
|
+
font-size: $font-size-base;
|
|
87
|
+
color: #333;
|
|
88
|
+
}
|
|
89
|
+
.card-footer{
|
|
90
|
+
padding-top: 0;
|
|
91
|
+
background-color: $transparent-bg;
|
|
92
|
+
line-height: 30px;
|
|
93
|
+
border-top: none !important;
|
|
94
|
+
font-size: 14px;
|
|
95
|
+
|
|
96
|
+
.legend{
|
|
97
|
+
padding: 5px 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
hr{
|
|
101
|
+
margin-top: 5px;
|
|
102
|
+
margin-bottom: 5px;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
.stats{
|
|
106
|
+
color: #a9a9a9;
|
|
107
|
+
}
|
|
108
|
+
.card-footer div{
|
|
109
|
+
display: inline-block;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.author{
|
|
113
|
+
font-size: $font-size-small;
|
|
114
|
+
font-weight: $font-weight-bold;
|
|
115
|
+
text-transform: uppercase;
|
|
116
|
+
}
|
|
117
|
+
.author i{
|
|
118
|
+
font-size: $font-size-base;
|
|
119
|
+
}
|
|
120
|
+
h6{
|
|
121
|
+
font-size: $font-size-small;
|
|
122
|
+
margin: 0;
|
|
123
|
+
}
|
|
124
|
+
&.card-separator:after{
|
|
125
|
+
height: 100%;
|
|
126
|
+
right: -15px;
|
|
127
|
+
top: 0;
|
|
128
|
+
width: 1px;
|
|
129
|
+
background-color: $medium-gray;
|
|
130
|
+
|
|
131
|
+
position: absolute;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ct-chart{
|
|
135
|
+
margin: 30px 0 30px;
|
|
136
|
+
height: 245px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.ct-label{
|
|
140
|
+
font-size: 1rem !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.table{
|
|
144
|
+
tbody td:first-child,
|
|
145
|
+
thead th:first-child{
|
|
146
|
+
padding-left: 15px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
tbody td:last-child,
|
|
150
|
+
thead th:last-child{
|
|
151
|
+
padding-right: 15px;
|
|
152
|
+
display: inline-flex;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.alert{
|
|
157
|
+
border-radius: $border-radius-base;
|
|
158
|
+
position: relative;
|
|
159
|
+
|
|
160
|
+
&.alert-with-icon{
|
|
161
|
+
padding-left: 65px;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
.card-stats{
|
|
169
|
+
.card-body{
|
|
170
|
+
padding: 15px 15px 0px;
|
|
171
|
+
|
|
172
|
+
.numbers{
|
|
173
|
+
font-size: 1.8rem;
|
|
174
|
+
text-align: right;
|
|
175
|
+
|
|
176
|
+
p{
|
|
177
|
+
margin-bottom: 0;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
.card-footer{
|
|
182
|
+
padding: 0px 15px 10px 15px;
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
.icon-big {
|
|
187
|
+
font-size: 3em;
|
|
188
|
+
min-height: 64px;
|
|
189
|
+
|
|
190
|
+
i{
|
|
191
|
+
font-weight: 700;
|
|
192
|
+
line-height: 59px;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.card-user{
|
|
200
|
+
.card-image{
|
|
201
|
+
height: 110px;
|
|
202
|
+
}
|
|
203
|
+
.card-image-plain{
|
|
204
|
+
height: 0;
|
|
205
|
+
margin-top: 110px;
|
|
206
|
+
}
|
|
207
|
+
.author{
|
|
208
|
+
text-align: center;
|
|
209
|
+
text-transform: none;
|
|
210
|
+
margin-top: -70px;
|
|
211
|
+
}
|
|
212
|
+
.avatar{
|
|
213
|
+
width: 124px;
|
|
214
|
+
height: 124px;
|
|
215
|
+
border: 5px solid #FFFFFF;
|
|
216
|
+
position: relative;
|
|
217
|
+
margin-bottom: 15px;
|
|
218
|
+
|
|
219
|
+
&.border-gray{
|
|
220
|
+
border-color: #EEEEEE;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
.title{
|
|
224
|
+
line-height: 24px;
|
|
225
|
+
}
|
|
226
|
+
.card-body{
|
|
227
|
+
min-height: 240px;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.card-user,
|
|
232
|
+
.card-price{
|
|
233
|
+
.card-footer{
|
|
234
|
+
padding: 5px 15px 10px;
|
|
235
|
+
}
|
|
236
|
+
hr{
|
|
237
|
+
margin: 5px 15px;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
.card-plain{
|
|
241
|
+
background-color: transparent;
|
|
242
|
+
box-shadow: none;
|
|
243
|
+
border-radius: 0;
|
|
244
|
+
|
|
245
|
+
.card-image{
|
|
246
|
+
border-radius: 4px;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.card.card-plain{
|
|
251
|
+
border: none !important;
|
|
252
|
+
|
|
253
|
+
.card-header{
|
|
254
|
+
background-color: transparent !important;
|
|
255
|
+
}
|
|
256
|
+
}
|