dealpostools 2.0.6 → 2.0.8

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 (42) hide show
  1. package/package.json +1 -11
  2. package/tools/642.5d39acadd5be978d.js +1 -0
  3. package/tools/assets/bootstrap_light.scss +1172 -1172
  4. package/tools/assets/lbd/_alerts.scss +90 -90
  5. package/tools/assets/lbd/_bootstrap-switch.scss +128 -128
  6. package/tools/assets/lbd/_buttons.scss +132 -132
  7. package/tools/assets/lbd/_cards.scss +256 -256
  8. package/tools/assets/lbd/_chartist.scss +229 -229
  9. package/tools/assets/lbd/_checkbox-radio-switch.scss +140 -140
  10. package/tools/assets/lbd/_dropdown.scss +137 -137
  11. package/tools/assets/lbd/_footers.scss +75 -75
  12. package/tools/assets/lbd/_inputs.scss +141 -141
  13. package/tools/assets/lbd/_misc.scss +120 -120
  14. package/tools/assets/lbd/_mixins.scss +8 -8
  15. package/tools/assets/lbd/_navbars.scss +235 -235
  16. package/tools/assets/lbd/_partial-nucleo-icons.scss +574 -574
  17. package/tools/assets/lbd/_responsive.scss +482 -482
  18. package/tools/assets/lbd/_sidebar-and-main-panel.scss +331 -331
  19. package/tools/assets/lbd/_tables.scss +88 -88
  20. package/tools/assets/lbd/_typography.scss +91 -91
  21. package/tools/assets/lbd/_variables.scss +272 -272
  22. package/tools/assets/lbd/mixins/_buttons.scss +69 -69
  23. package/tools/assets/lbd/mixins/_cards.scss +8 -8
  24. package/tools/assets/lbd/mixins/_chartist.scss +85 -85
  25. package/tools/assets/lbd/mixins/_icons.scss +12 -12
  26. package/tools/assets/lbd/mixins/_inputs.scss +1 -1
  27. package/tools/assets/lbd/mixins/_labels.scss +20 -20
  28. package/tools/assets/lbd/mixins/_morphing-buttons.scss +33 -33
  29. package/tools/assets/lbd/mixins/_navbars.scss +11 -11
  30. package/tools/assets/lbd/mixins/_social-buttons.scss +42 -42
  31. package/tools/assets/lbd/mixins/_tabs.scss +3 -3
  32. package/tools/assets/lbd/mixins/_transparency.scss +19 -19
  33. package/tools/assets/lbd/mixins/_vendor-prefixes.scss +211 -211
  34. package/tools/assets/lbd/plugins/_animate.scss +227 -227
  35. package/tools/assets/lbd/plugins/_datetime-picker.scss +463 -463
  36. package/tools/assets/light-bootstrap-dashboard.scss +32 -32
  37. package/tools/assets/pos_variable.scss +83 -83
  38. package/tools/index.html +2 -2
  39. package/tools/main.eb9648348ee7f065.js +1 -0
  40. package/tools/{runtime.4c9ee467c84ede91.js → runtime.eeee755d1f17b480.js} +1 -1
  41. package/tools/157.a84bb181407710a0.js +0 -1
  42. package/tools/main.c604dd23bb38821d.js +0 -1
@@ -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
+ }