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.
Files changed (45) hide show
  1. package/Marketplace/397.9488b7c2d948b1be.js +1 -0
  2. package/Marketplace/assets/bootstrap_light.scss +1142 -1142
  3. package/Marketplace/assets/floatingLabel.scss +187 -187
  4. package/Marketplace/assets/lbd/_alerts.scss +90 -90
  5. package/Marketplace/assets/lbd/_bootstrap-switch.scss +128 -128
  6. package/Marketplace/assets/lbd/_buttons.scss +132 -132
  7. package/Marketplace/assets/lbd/_cards.scss +256 -256
  8. package/Marketplace/assets/lbd/_chartist.scss +229 -229
  9. package/Marketplace/assets/lbd/_checkbox-radio-switch.scss +140 -140
  10. package/Marketplace/assets/lbd/_dropdown.scss +137 -137
  11. package/Marketplace/assets/lbd/_footers.scss +75 -75
  12. package/Marketplace/assets/lbd/_inputs.scss +141 -141
  13. package/Marketplace/assets/lbd/_misc.scss +120 -120
  14. package/Marketplace/assets/lbd/_mixins.scss +8 -8
  15. package/Marketplace/assets/lbd/_navbars.scss +235 -235
  16. package/Marketplace/assets/lbd/_partial-nucleo-icons.scss +574 -574
  17. package/Marketplace/assets/lbd/_responsive.scss +482 -482
  18. package/Marketplace/assets/lbd/_sidebar-and-main-panel.scss +333 -333
  19. package/Marketplace/assets/lbd/_tables.scss +88 -88
  20. package/Marketplace/assets/lbd/_typography.scss +91 -91
  21. package/Marketplace/assets/lbd/_variables.scss +272 -272
  22. package/Marketplace/assets/lbd/mixins/_buttons.scss +69 -69
  23. package/Marketplace/assets/lbd/mixins/_cards.scss +8 -8
  24. package/Marketplace/assets/lbd/mixins/_chartist.scss +87 -87
  25. package/Marketplace/assets/lbd/mixins/_icons.scss +12 -12
  26. package/Marketplace/assets/lbd/mixins/_inputs.scss +1 -1
  27. package/Marketplace/assets/lbd/mixins/_labels.scss +20 -20
  28. package/Marketplace/assets/lbd/mixins/_morphing-buttons.scss +33 -33
  29. package/Marketplace/assets/lbd/mixins/_navbars.scss +11 -11
  30. package/Marketplace/assets/lbd/mixins/_social-buttons.scss +42 -42
  31. package/Marketplace/assets/lbd/mixins/_tabs.scss +3 -3
  32. package/Marketplace/assets/lbd/mixins/_transparency.scss +19 -19
  33. package/Marketplace/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
  34. package/Marketplace/assets/lbd/plugins/_animate.scss +227 -227
  35. package/Marketplace/assets/lbd/plugins/_datetime-picker.scss +463 -463
  36. package/Marketplace/assets/light-bootstrap-dashboard.scss +32 -32
  37. package/Marketplace/assets/pos_variable.scss +83 -83
  38. package/Marketplace/assets/sitemap.json +39 -39
  39. package/Marketplace/assets/stepper-custom.scss +32 -32
  40. package/Marketplace/assets/variables-custom.scss +190 -190
  41. package/Marketplace/assets/version-adjustment-v5.scss +286 -286
  42. package/Marketplace/index.html +2 -2
  43. package/Marketplace/{runtime.de37a7d67f4eed9c.js → runtime.6d4d6c7e2c139e6c.js} +1 -1
  44. package/package.json +1 -1
  45. package/Marketplace/397.5ae6b1775c69cdc2.js +0 -1
@@ -1,235 +1,235 @@
1
- .nav {
2
- .nav-item{
3
- .nav-link:hover,
4
- .nav-link:focus{
5
- background-color: transparent;
6
- }
7
- }
8
-
9
- }
10
- .navbar {
11
- border: $none;
12
- border-radius: 0;
13
- min-height: 43px;
14
- background-color: $white-navbar;
15
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
16
-
17
-
18
- &.fixed-top {
19
- min-height: 60px;
20
- padding: 0px;
21
- margin: 0px;
22
- }
23
-
24
- &.page-nav {
25
- min-height: 44px;
26
- }
27
-
28
- .navbar-brand {
29
- font-weight: 400;
30
- margin: 3px 0px;
31
- font-size: 22px;
32
- color: $black-color;
33
- }
34
-
35
- .navbar-toggler {
36
- width: 37px;
37
- height: 27px;
38
- vertical-align: middle;
39
- outline: 0;
40
- cursor: pointer;
41
-
42
- &.navbar-toggler-left {
43
- position: relative;
44
- left: 0;
45
- padding-left: 0;
46
- }
47
-
48
- & .navbar-toggler-bar {
49
- width: 3px;
50
- height: 3px;
51
- border-radius: 50%;
52
- margin: 0 auto;
53
- }
54
-
55
- .burger-lines {
56
- display: block;
57
- position: relative;
58
- background-color: #888;
59
- width: 24px;
60
- height: 2px;
61
- border-radius: 1px;
62
- margin: 4px auto;
63
- }
64
- }
65
-
66
- .toggled {
67
- .burger-lines:first-child {
68
- top: 6px;
69
- -webkit-animation: topbar-x 500ms linear 0s;
70
- -moz-animation: topbar-x 500ms linear 0s;
71
- animation: topbar-x 500ms 0s;
72
- -webkit-animation-fill-mode: forwards;
73
- -moz-animation-fill-mode: forwards;
74
- animation-fill-mode: forwards;
75
- }
76
-
77
- .burger-lines:nth-child(2) {
78
- opacity: 0;
79
- }
80
-
81
- .burger-lines:nth-child(3) {
82
- bottom: 6px;
83
- -webkit-animation: bottombar-x 500ms linear 0s;
84
- -moz-animation: bottombar-x 500ms linear 0s;
85
- animation: bottombar-x 500ms 0s;
86
- -webkit-animation-fill-mode: forwards;
87
- -moz-animation-fill-mode: forwards;
88
- animation-fill-mode: forwards;
89
- }
90
- }
91
-
92
- .dropdown.nav-item {
93
- .dropdown-toggle:after {
94
- margin-top: 8px;
95
- }
96
- }
97
-
98
- .navbar-nav {
99
- flex-direction: row;
100
-
101
- .nav-item {
102
- .nav-link {
103
- color: $primary-color;
104
- padding: $navbar-padding-b;
105
- position: relative;
106
- display: inline-flex;
107
- line-height: 1.2;
108
-
109
- &.nav-link-arrow {
110
- color: $link-color;
111
- font-size: 13px;
112
- font-weight: 700;
113
- line-height: 20px;
114
- }
115
-
116
- &.btn {
117
- margin: $navbar-margin-a-btn;
118
- padding: $padding-base-vertical $padding-base-horizontal;
119
- }
120
-
121
- &.btn-round {
122
- margin: $navbar-margin-a-btn-round;
123
- }
124
-
125
- [class^="fa"] {
126
- font-size: $font-size-large;
127
- position: relative;
128
- line-height: 10px;
129
- top: 1px;
130
- }
131
- }
132
-
133
- &.active {
134
- .nav-link-arrow {
135
- color: $link-disabled-color;
136
- padding-bottom: 9px !important;
137
- border-bottom: 3px solid $link-disabled-color;
138
- }
139
- }
140
- }
141
-
142
- .notification {
143
- position: absolute;
144
- background-color: #FB404B;
145
- text-align: center;
146
- border-radius: 10px;
147
- min-width: 18px;
148
- padding: 0 5px;
149
- height: 18px;
150
- font-size: 12px;
151
- color: $white-color;
152
- font-weight: bold;
153
- line-height: 18px;
154
- top: 0;
155
- left: 7px;
156
- }
157
-
158
- .dropdown-toggle:after {
159
- display: inline-block;
160
- width: 0;
161
- height: 0;
162
- margin-left: 5px;
163
- margin-top: 12px;
164
- vertical-align: middle;
165
- border-top: 4px dashed;
166
- border-top: 4px solid\9;
167
- border-right: 4px solid transparent;
168
- border-left: 4px solid transparent;
169
- }
170
- }
171
-
172
- .btn-simple {
173
- font-size: $font-size-medium;
174
- }
175
-
176
- &.fixed {
177
- width: calc(100% - calc(100% - 200px));
178
- right: 0;
179
- left: auto;
180
- border-radius: 0;
181
- }
182
-
183
- .nc-icon {
184
- font-weight: 700;
185
- }
186
- }
187
-
188
- .navbar-icons{
189
- &.navbar .navbar-brand{
190
- margin-top: 12px;
191
- margin-bottom: 12px;
192
- }
193
- .navbar-nav{
194
- .nav-item{
195
- .nav-link{
196
- text-align: center;
197
- padding: $navbar-padding-a-icons;
198
- margin: $navbar-margin-a-icons;
199
- }
200
- }
201
-
202
- [class^="pe"] {
203
- font-size: 30px;
204
- position: relative;
205
- }
206
- p {
207
- margin: 3px 0 0;
208
- }
209
- }
210
- }
211
-
212
- .navbar-transparent{
213
- padding-top: 15px;
214
- background-color: transparent;
215
- border-bottom: 1px solid transparent;
216
- }
217
-
218
- .navbar-toggle{
219
- margin-top: 19px;
220
- margin-bottom: 19px;
221
- border: $none;
222
-
223
- .icon-bar {
224
- background-color: $white-color;
225
- }
226
- .navbar-collapse,
227
- .navbar-form {
228
- border-color: transparent;
229
- }
230
-
231
- &.navbar-default .navbar-toggle:hover,
232
- &.navbar-default .navbar-toggle:focus {
233
- background-color: transparent;
234
- }
235
- }
1
+ .nav {
2
+ .nav-item{
3
+ .nav-link:hover,
4
+ .nav-link:focus{
5
+ background-color: transparent;
6
+ }
7
+ }
8
+
9
+ }
10
+ .navbar {
11
+ border: $none;
12
+ border-radius: 0;
13
+ min-height: 43px;
14
+ background-color: $white-navbar;
15
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
16
+
17
+
18
+ &.fixed-top {
19
+ min-height: 60px;
20
+ padding: 0px;
21
+ margin: 0px;
22
+ }
23
+
24
+ &.page-nav {
25
+ min-height: 44px;
26
+ }
27
+
28
+ .navbar-brand {
29
+ font-weight: 400;
30
+ margin: 3px 0px;
31
+ font-size: 22px;
32
+ color: $black-color;
33
+ }
34
+
35
+ .navbar-toggler {
36
+ width: 37px;
37
+ height: 27px;
38
+ vertical-align: middle;
39
+ outline: 0;
40
+ cursor: pointer;
41
+
42
+ &.navbar-toggler-left {
43
+ position: relative;
44
+ left: 0;
45
+ padding-left: 0;
46
+ }
47
+
48
+ & .navbar-toggler-bar {
49
+ width: 3px;
50
+ height: 3px;
51
+ border-radius: 50%;
52
+ margin: 0 auto;
53
+ }
54
+
55
+ .burger-lines {
56
+ display: block;
57
+ position: relative;
58
+ background-color: #888;
59
+ width: 24px;
60
+ height: 2px;
61
+ border-radius: 1px;
62
+ margin: 4px auto;
63
+ }
64
+ }
65
+
66
+ .toggled {
67
+ .burger-lines:first-child {
68
+ top: 6px;
69
+ -webkit-animation: topbar-x 500ms linear 0s;
70
+ -moz-animation: topbar-x 500ms linear 0s;
71
+ animation: topbar-x 500ms 0s;
72
+ -webkit-animation-fill-mode: forwards;
73
+ -moz-animation-fill-mode: forwards;
74
+ animation-fill-mode: forwards;
75
+ }
76
+
77
+ .burger-lines:nth-child(2) {
78
+ opacity: 0;
79
+ }
80
+
81
+ .burger-lines:nth-child(3) {
82
+ bottom: 6px;
83
+ -webkit-animation: bottombar-x 500ms linear 0s;
84
+ -moz-animation: bottombar-x 500ms linear 0s;
85
+ animation: bottombar-x 500ms 0s;
86
+ -webkit-animation-fill-mode: forwards;
87
+ -moz-animation-fill-mode: forwards;
88
+ animation-fill-mode: forwards;
89
+ }
90
+ }
91
+
92
+ .dropdown.nav-item {
93
+ .dropdown-toggle:after {
94
+ margin-top: 8px;
95
+ }
96
+ }
97
+
98
+ .navbar-nav {
99
+ flex-direction: row;
100
+
101
+ .nav-item {
102
+ .nav-link {
103
+ color: $primary-color;
104
+ padding: $navbar-padding-b;
105
+ position: relative;
106
+ display: inline-flex;
107
+ line-height: 1.2;
108
+
109
+ &.nav-link-arrow {
110
+ color: $link-color;
111
+ font-size: 13px;
112
+ font-weight: 700;
113
+ line-height: 20px;
114
+ }
115
+
116
+ &.btn {
117
+ margin: $navbar-margin-a-btn;
118
+ padding: $padding-base-vertical $padding-base-horizontal;
119
+ }
120
+
121
+ &.btn-round {
122
+ margin: $navbar-margin-a-btn-round;
123
+ }
124
+
125
+ [class^="fa"] {
126
+ font-size: $font-size-large;
127
+ position: relative;
128
+ line-height: 10px;
129
+ top: 1px;
130
+ }
131
+ }
132
+
133
+ &.active {
134
+ .nav-link-arrow {
135
+ color: $link-disabled-color;
136
+ padding-bottom: 9px !important;
137
+ border-bottom: 3px solid $link-disabled-color;
138
+ }
139
+ }
140
+ }
141
+
142
+ .notification {
143
+ position: absolute;
144
+ background-color: #FB404B;
145
+ text-align: center;
146
+ border-radius: 10px;
147
+ min-width: 18px;
148
+ padding: 0 5px;
149
+ height: 18px;
150
+ font-size: 12px;
151
+ color: $white-color;
152
+ font-weight: bold;
153
+ line-height: 18px;
154
+ top: 0;
155
+ left: 7px;
156
+ }
157
+
158
+ .dropdown-toggle:after {
159
+ display: inline-block;
160
+ width: 0;
161
+ height: 0;
162
+ margin-left: 5px;
163
+ margin-top: 12px;
164
+ vertical-align: middle;
165
+ border-top: 4px dashed;
166
+ border-top: 4px solid\9;
167
+ border-right: 4px solid transparent;
168
+ border-left: 4px solid transparent;
169
+ }
170
+ }
171
+
172
+ .btn-simple {
173
+ font-size: $font-size-medium;
174
+ }
175
+
176
+ &.fixed {
177
+ width: calc(100% - calc(100% - 200px));
178
+ right: 0;
179
+ left: auto;
180
+ border-radius: 0;
181
+ }
182
+
183
+ .nc-icon {
184
+ font-weight: 700;
185
+ }
186
+ }
187
+
188
+ .navbar-icons{
189
+ &.navbar .navbar-brand{
190
+ margin-top: 12px;
191
+ margin-bottom: 12px;
192
+ }
193
+ .navbar-nav{
194
+ .nav-item{
195
+ .nav-link{
196
+ text-align: center;
197
+ padding: $navbar-padding-a-icons;
198
+ margin: $navbar-margin-a-icons;
199
+ }
200
+ }
201
+
202
+ [class^="pe"] {
203
+ font-size: 30px;
204
+ position: relative;
205
+ }
206
+ p {
207
+ margin: 3px 0 0;
208
+ }
209
+ }
210
+ }
211
+
212
+ .navbar-transparent{
213
+ padding-top: 15px;
214
+ background-color: transparent;
215
+ border-bottom: 1px solid transparent;
216
+ }
217
+
218
+ .navbar-toggle{
219
+ margin-top: 19px;
220
+ margin-bottom: 19px;
221
+ border: $none;
222
+
223
+ .icon-bar {
224
+ background-color: $white-color;
225
+ }
226
+ .navbar-collapse,
227
+ .navbar-form {
228
+ border-color: transparent;
229
+ }
230
+
231
+ &.navbar-default .navbar-toggle:hover,
232
+ &.navbar-default .navbar-toggle:focus {
233
+ background-color: transparent;
234
+ }
235
+ }