dealposbarcode 1.3.9 → 1.4.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.
Files changed (54) hide show
  1. package/barcode/3rdpartylicenses.txt +1 -1
  2. package/barcode/660.92c4712e216ff00c.js +1 -0
  3. package/barcode/assets/css/Barcode/Print.css +11 -11
  4. package/barcode/assets/css/Barcode/ZebraTLP.css +93 -93
  5. package/barcode/assets/css/bootstrap_light.scss +1151 -1151
  6. package/barcode/assets/css/lbd/_alerts.scss +90 -90
  7. package/barcode/assets/css/lbd/_bootstrap-switch.scss +128 -128
  8. package/barcode/assets/css/lbd/_buttons.scss +132 -132
  9. package/barcode/assets/css/lbd/_cards.scss +256 -256
  10. package/barcode/assets/css/lbd/_chartist.scss +229 -229
  11. package/barcode/assets/css/lbd/_checkbox-radio-switch.scss +140 -140
  12. package/barcode/assets/css/lbd/_dropdown.scss +137 -137
  13. package/barcode/assets/css/lbd/_footers.scss +75 -75
  14. package/barcode/assets/css/lbd/_inputs.scss +141 -141
  15. package/barcode/assets/css/lbd/_misc.scss +120 -120
  16. package/barcode/assets/css/lbd/_mixins.scss +8 -8
  17. package/barcode/assets/css/lbd/_navbars.scss +225 -225
  18. package/barcode/assets/css/lbd/_partial-nucleo-icons.scss +574 -574
  19. package/barcode/assets/css/lbd/_responsive.scss +482 -482
  20. package/barcode/assets/css/lbd/_sidebar-and-main-panel.scss +331 -331
  21. package/barcode/assets/css/lbd/_tables.scss +88 -88
  22. package/barcode/assets/css/lbd/_typography.scss +91 -91
  23. package/barcode/assets/css/lbd/_variables.scss +272 -272
  24. package/barcode/assets/css/lbd/mixins/_buttons.scss +69 -69
  25. package/barcode/assets/css/lbd/mixins/_cards.scss +8 -8
  26. package/barcode/assets/css/lbd/mixins/_chartist.scss +85 -85
  27. package/barcode/assets/css/lbd/mixins/_icons.scss +12 -12
  28. package/barcode/assets/css/lbd/mixins/_inputs.scss +1 -1
  29. package/barcode/assets/css/lbd/mixins/_labels.scss +20 -20
  30. package/barcode/assets/css/lbd/mixins/_morphing-buttons.scss +33 -33
  31. package/barcode/assets/css/lbd/mixins/_navbars.scss +11 -11
  32. package/barcode/assets/css/lbd/mixins/_social-buttons.scss +42 -42
  33. package/barcode/assets/css/lbd/mixins/_tabs.scss +3 -3
  34. package/barcode/assets/css/lbd/mixins/_transparency.scss +19 -19
  35. package/barcode/assets/css/lbd/mixins/_vendor-prefixes.scss +211 -211
  36. package/barcode/assets/css/lbd/plugins/_animate.scss +227 -227
  37. package/barcode/assets/css/lbd/plugins/_datetime-picker.scss +463 -463
  38. package/barcode/assets/css/light-bootstrap-dashboard.scss +32 -32
  39. package/barcode/assets/css/pos_variable.scss +83 -83
  40. package/barcode/assets/css/toastr-bootstrap-5.scss +237 -237
  41. package/barcode/index.html +2 -2
  42. package/barcode/{main.71e908371e60089d.js → main.52f922e4138d5416.js} +1 -1
  43. package/barcode/manifest.webmanifest +59 -59
  44. package/barcode/ngsw-worker.js +0 -0
  45. package/barcode/ngsw.json +51 -51
  46. package/barcode/polyfills.24f9e567328321c8.js +1 -0
  47. package/barcode/{runtime.42ebd4cddf8ccc51.js → runtime.a9c4a1c7b61966a3.js} +1 -1
  48. package/barcode/safety-worker.js +0 -0
  49. package/barcode/styles.190cdb80d8bf56e0.css +20 -0
  50. package/barcode/worker-basic.min.js +0 -0
  51. package/package.json +1 -11
  52. package/barcode/660.b1c2f3358551568d.js +0 -1
  53. package/barcode/polyfills.dc4857163ebc6915.js +0 -1
  54. package/barcode/styles.076e6cb26a99c3ea.css +0 -20
@@ -1,132 +1,132 @@
1
- .btn{
2
- border-width: $border-thick;
3
- background-color: $transparent-bg;
4
- font-weight: $font-weight-normal;
5
-
6
- @include opacity(.8);
7
- padding: $padding-base-vertical $padding-base-horizontal;
8
-
9
- @include btn-styles($default-color, $default-states-color);
10
-
11
- &:hover,
12
- &:focus{
13
- @include opacity(1);
14
- outline: 0 !important;
15
- box-shadow: none;
16
- }
17
- &:active,
18
- &.active,
19
- .open > &.dropdown-toggle {
20
- @include box-shadow(none);
21
- outline: 0 !important;
22
- }
23
-
24
- &.btn-icon{
25
- padding: $padding-base-vertical;
26
- }
27
-
28
- }
29
-
30
- // Apply the mixin to the buttons
31
- //.btn-default { @include btn-styles($default-color, $default-states-color); }
32
- .btn-primary { @include btn-styles($primary-color, $primary-states-color); }
33
- .btn-success { @include btn-styles($success-color, $success-states-color); }
34
- .btn-info { @include btn-styles($info-color, $info-states-color); }
35
- .btn-warning { @include btn-styles($warning-color, $warning-states-color); }
36
- .btn-danger { @include btn-styles($danger-color, $danger-states-color); }
37
- .btn-neutral {
38
- @include btn-styles($white-color, $white-color);
39
-
40
- &:active,
41
- &.active,
42
- .open > &.dropdown-toggle{
43
- background-color: $white-color;
44
- color: $default-color;
45
- }
46
-
47
- &.btn-fill,
48
- &.btn-fill:hover,
49
- &.btn-fill:focus{
50
- color: $default-color;
51
- }
52
-
53
- &.btn-simple:active,
54
- &.btn-simple.active{
55
- background-color: transparent;
56
- }
57
- }
58
-
59
- .btn{
60
- &:disabled,
61
- &[disabled],
62
- &.disabled{
63
- @include opacity(.5);
64
- }
65
- }
66
- .btn-round{
67
- border-width: $border-thin;
68
- border-radius: $btn-round-radius !important;
69
- padding: $padding-round-vertical $padding-round-horizontal;
70
-
71
- &.btn-icon{
72
- padding: $padding-round-vertical;
73
- }
74
- }
75
- .btn-simple{
76
- border: $none;
77
- font-size: $font-size-medium;
78
- padding: $padding-base-vertical $padding-base-horizontal;
79
-
80
- &.btn-icon{
81
- padding: $padding-base-vertical;
82
- }
83
- }
84
- .btn-lg{
85
- @include btn-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
86
- font-weight: $font-weight-normal;
87
- }
88
- .btn-sm{
89
- @include btn-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
90
- }
91
- .btn-xs {
92
- @include btn-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $border-radius-small);
93
- }
94
- .btn-wd {
95
- min-width: 140px;
96
- }
97
-
98
- .btn-group.select{
99
- width: 100%;
100
- }
101
- .btn-group.select .btn{
102
- text-align: left;
103
- }
104
- .btn-group.select .caret{
105
- position: absolute;
106
- top: 50%;
107
- margin-top: -1px;
108
- right: 8px;
109
- }
110
- .btn-social{
111
- opacity: 0.85;
112
- }
113
-
114
- .btn-twitter{
115
- border-color: $social-twitter;
116
- color: $social-twitter;
117
- &:hover{
118
- opacity: 1 !important;
119
- border-color: $social-twitter;
120
- color: $social-twitter;
121
- }
122
- }
123
- .btn-facebook{
124
- border-color: $social-facebook;
125
- color: $social-facebook;
126
-
127
- &:hover{
128
- opacity: 1 !important;
129
- border-color: $social-facebook;
130
- color: $social-facebook;
131
- }
132
- }
1
+ .btn{
2
+ border-width: $border-thick;
3
+ background-color: $transparent-bg;
4
+ font-weight: $font-weight-normal;
5
+
6
+ @include opacity(.8);
7
+ padding: $padding-base-vertical $padding-base-horizontal;
8
+
9
+ @include btn-styles($default-color, $default-states-color);
10
+
11
+ &:hover,
12
+ &:focus{
13
+ @include opacity(1);
14
+ outline: 0 !important;
15
+ box-shadow: none;
16
+ }
17
+ &:active,
18
+ &.active,
19
+ .open > &.dropdown-toggle {
20
+ @include box-shadow(none);
21
+ outline: 0 !important;
22
+ }
23
+
24
+ &.btn-icon{
25
+ padding: $padding-base-vertical;
26
+ }
27
+
28
+ }
29
+
30
+ // Apply the mixin to the buttons
31
+ //.btn-default { @include btn-styles($default-color, $default-states-color); }
32
+ .btn-primary { @include btn-styles($primary-color, $primary-states-color); }
33
+ .btn-success { @include btn-styles($success-color, $success-states-color); }
34
+ .btn-info { @include btn-styles($info-color, $info-states-color); }
35
+ .btn-warning { @include btn-styles($warning-color, $warning-states-color); }
36
+ .btn-danger { @include btn-styles($danger-color, $danger-states-color); }
37
+ .btn-neutral {
38
+ @include btn-styles($white-color, $white-color);
39
+
40
+ &:active,
41
+ &.active,
42
+ .open > &.dropdown-toggle{
43
+ background-color: $white-color;
44
+ color: $default-color;
45
+ }
46
+
47
+ &.btn-fill,
48
+ &.btn-fill:hover,
49
+ &.btn-fill:focus{
50
+ color: $default-color;
51
+ }
52
+
53
+ &.btn-simple:active,
54
+ &.btn-simple.active{
55
+ background-color: transparent;
56
+ }
57
+ }
58
+
59
+ .btn{
60
+ &:disabled,
61
+ &[disabled],
62
+ &.disabled{
63
+ @include opacity(.5);
64
+ }
65
+ }
66
+ .btn-round{
67
+ border-width: $border-thin;
68
+ border-radius: $btn-round-radius !important;
69
+ padding: $padding-round-vertical $padding-round-horizontal;
70
+
71
+ &.btn-icon{
72
+ padding: $padding-round-vertical;
73
+ }
74
+ }
75
+ .btn-simple{
76
+ border: $none;
77
+ font-size: $font-size-medium;
78
+ padding: $padding-base-vertical $padding-base-horizontal;
79
+
80
+ &.btn-icon{
81
+ padding: $padding-base-vertical;
82
+ }
83
+ }
84
+ .btn-lg{
85
+ @include btn-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
86
+ font-weight: $font-weight-normal;
87
+ }
88
+ .btn-sm{
89
+ @include btn-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
90
+ }
91
+ .btn-xs {
92
+ @include btn-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $border-radius-small);
93
+ }
94
+ .btn-wd {
95
+ min-width: 140px;
96
+ }
97
+
98
+ .btn-group.select{
99
+ width: 100%;
100
+ }
101
+ .btn-group.select .btn{
102
+ text-align: left;
103
+ }
104
+ .btn-group.select .caret{
105
+ position: absolute;
106
+ top: 50%;
107
+ margin-top: -1px;
108
+ right: 8px;
109
+ }
110
+ .btn-social{
111
+ opacity: 0.85;
112
+ }
113
+
114
+ .btn-twitter{
115
+ border-color: $social-twitter;
116
+ color: $social-twitter;
117
+ &:hover{
118
+ opacity: 1 !important;
119
+ border-color: $social-twitter;
120
+ color: $social-twitter;
121
+ }
122
+ }
123
+ .btn-facebook{
124
+ border-color: $social-facebook;
125
+ color: $social-facebook;
126
+
127
+ &:hover{
128
+ opacity: 1 !important;
129
+ border-color: $social-facebook;
130
+ color: $social-facebook;
131
+ }
132
+ }