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,128 +1,128 @@
|
|
|
1
|
-
.bootstrap-switch {
|
|
2
|
-
display: inline-block;
|
|
3
|
-
direction: ltr;
|
|
4
|
-
cursor: pointer;
|
|
5
|
-
border-radius: 30px;
|
|
6
|
-
border: 0;
|
|
7
|
-
position: relative;
|
|
8
|
-
text-align: left;
|
|
9
|
-
overflow: hidden;
|
|
10
|
-
margin-bottom: 5px;
|
|
11
|
-
margin-left: 66px;
|
|
12
|
-
line-height: 8px;
|
|
13
|
-
width: 61px !important;
|
|
14
|
-
height: 26px;
|
|
15
|
-
outline: none;
|
|
16
|
-
z-index: 0;
|
|
17
|
-
margin-right: 1px;
|
|
18
|
-
-webkit-user-select: none;
|
|
19
|
-
-moz-user-select: none;
|
|
20
|
-
-ms-user-select: none;
|
|
21
|
-
user-select: none;
|
|
22
|
-
vertical-align: middle;
|
|
23
|
-
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
24
|
-
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.bootstrap-switch .bootstrap-switch-container {
|
|
28
|
-
display: inline-flex;
|
|
29
|
-
top: 0;
|
|
30
|
-
height: 26px;
|
|
31
|
-
border-radius: 4px;
|
|
32
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
33
|
-
transform: translate3d(0, 0, 0);
|
|
34
|
-
width: 100px !important;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.bootstrap-switch .bootstrap-switch-handle-on,
|
|
38
|
-
.bootstrap-switch .bootstrap-switch-handle-off,
|
|
39
|
-
.bootstrap-switch .bootstrap-switch-label {
|
|
40
|
-
-webkit-box-sizing: border-box;
|
|
41
|
-
-moz-box-sizing: border-box;
|
|
42
|
-
box-sizing: border-box;
|
|
43
|
-
cursor: pointer;
|
|
44
|
-
display: inline-block !important;
|
|
45
|
-
height: 100%;
|
|
46
|
-
color: #fff;
|
|
47
|
-
padding: 6px 10px;
|
|
48
|
-
font-size: 11px;
|
|
49
|
-
text-indent: -5px;
|
|
50
|
-
line-height: 15px;
|
|
51
|
-
-webkit-transition: 0.25s ease-out;
|
|
52
|
-
transition: 0.25s ease-out;
|
|
53
|
-
|
|
54
|
-
i{
|
|
55
|
-
font-size: 12px;
|
|
56
|
-
line-height: 14px;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.bootstrap-switch .bootstrap-switch-handle-on,
|
|
61
|
-
.bootstrap-switch .bootstrap-switch-handle-off {
|
|
62
|
-
text-align: center;
|
|
63
|
-
z-index: 1;
|
|
64
|
-
float: left;
|
|
65
|
-
width: 50% !important;
|
|
66
|
-
background-color: $info-color;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
.bootstrap-switch .bootstrap-switch-label {
|
|
71
|
-
text-align: center;
|
|
72
|
-
z-index: 100;
|
|
73
|
-
color: #333333;
|
|
74
|
-
background: #ffffff;
|
|
75
|
-
width: 22px !important;
|
|
76
|
-
height: 22px;
|
|
77
|
-
margin: 2px -11px;
|
|
78
|
-
border-radius: 12px;
|
|
79
|
-
position: relative;
|
|
80
|
-
float: left;
|
|
81
|
-
padding: 0;
|
|
82
|
-
background-color: #FFFFFF;
|
|
83
|
-
box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.bootstrap-switch .bootstrap-switch-handle-on {
|
|
87
|
-
border-bottom-left-radius: 3px;
|
|
88
|
-
border-top-left-radius: 3px;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.bootstrap-switch .bootstrap-switch-handle-off {
|
|
92
|
-
text-indent: 6px;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.bootstrap-switch input[type='radio'],
|
|
96
|
-
.bootstrap-switch input[type='checkbox'] {
|
|
97
|
-
position: absolute !important;
|
|
98
|
-
top: 0;
|
|
99
|
-
left: 0;
|
|
100
|
-
opacity: 0;
|
|
101
|
-
filter: alpha(opacity=0);
|
|
102
|
-
z-index: -1;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
|
|
107
|
-
-webkit-transition: margin-left 0.5s;
|
|
108
|
-
transition: margin-left 0.5s;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container {
|
|
113
|
-
margin-left: -2px !important;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
|
|
117
|
-
margin-left: -37px !important;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.bootstrap-switch.bootstrap-switch-on:hover .bootstrap-switch-label {
|
|
121
|
-
width: 26px !important;
|
|
122
|
-
margin: 2px -15px;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.bootstrap-switch.bootstrap-switch-off:hover .bootstrap-switch-label {
|
|
126
|
-
width: 26px !important;
|
|
127
|
-
margin: 2px -15px -13px -11px;
|
|
128
|
-
}
|
|
1
|
+
.bootstrap-switch {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
direction: ltr;
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
border-radius: 30px;
|
|
6
|
+
border: 0;
|
|
7
|
+
position: relative;
|
|
8
|
+
text-align: left;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
margin-bottom: 5px;
|
|
11
|
+
margin-left: 66px;
|
|
12
|
+
line-height: 8px;
|
|
13
|
+
width: 61px !important;
|
|
14
|
+
height: 26px;
|
|
15
|
+
outline: none;
|
|
16
|
+
z-index: 0;
|
|
17
|
+
margin-right: 1px;
|
|
18
|
+
-webkit-user-select: none;
|
|
19
|
+
-moz-user-select: none;
|
|
20
|
+
-ms-user-select: none;
|
|
21
|
+
user-select: none;
|
|
22
|
+
vertical-align: middle;
|
|
23
|
+
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
24
|
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.bootstrap-switch .bootstrap-switch-container {
|
|
28
|
+
display: inline-flex;
|
|
29
|
+
top: 0;
|
|
30
|
+
height: 26px;
|
|
31
|
+
border-radius: 4px;
|
|
32
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
33
|
+
transform: translate3d(0, 0, 0);
|
|
34
|
+
width: 100px !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.bootstrap-switch .bootstrap-switch-handle-on,
|
|
38
|
+
.bootstrap-switch .bootstrap-switch-handle-off,
|
|
39
|
+
.bootstrap-switch .bootstrap-switch-label {
|
|
40
|
+
-webkit-box-sizing: border-box;
|
|
41
|
+
-moz-box-sizing: border-box;
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
cursor: pointer;
|
|
44
|
+
display: inline-block !important;
|
|
45
|
+
height: 100%;
|
|
46
|
+
color: #fff;
|
|
47
|
+
padding: 6px 10px;
|
|
48
|
+
font-size: 11px;
|
|
49
|
+
text-indent: -5px;
|
|
50
|
+
line-height: 15px;
|
|
51
|
+
-webkit-transition: 0.25s ease-out;
|
|
52
|
+
transition: 0.25s ease-out;
|
|
53
|
+
|
|
54
|
+
i{
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
line-height: 14px;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.bootstrap-switch .bootstrap-switch-handle-on,
|
|
61
|
+
.bootstrap-switch .bootstrap-switch-handle-off {
|
|
62
|
+
text-align: center;
|
|
63
|
+
z-index: 1;
|
|
64
|
+
float: left;
|
|
65
|
+
width: 50% !important;
|
|
66
|
+
background-color: $info-color;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
.bootstrap-switch .bootstrap-switch-label {
|
|
71
|
+
text-align: center;
|
|
72
|
+
z-index: 100;
|
|
73
|
+
color: #333333;
|
|
74
|
+
background: #ffffff;
|
|
75
|
+
width: 22px !important;
|
|
76
|
+
height: 22px;
|
|
77
|
+
margin: 2px -11px;
|
|
78
|
+
border-radius: 12px;
|
|
79
|
+
position: relative;
|
|
80
|
+
float: left;
|
|
81
|
+
padding: 0;
|
|
82
|
+
background-color: #FFFFFF;
|
|
83
|
+
box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.bootstrap-switch .bootstrap-switch-handle-on {
|
|
87
|
+
border-bottom-left-radius: 3px;
|
|
88
|
+
border-top-left-radius: 3px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.bootstrap-switch .bootstrap-switch-handle-off {
|
|
92
|
+
text-indent: 6px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.bootstrap-switch input[type='radio'],
|
|
96
|
+
.bootstrap-switch input[type='checkbox'] {
|
|
97
|
+
position: absolute !important;
|
|
98
|
+
top: 0;
|
|
99
|
+
left: 0;
|
|
100
|
+
opacity: 0;
|
|
101
|
+
filter: alpha(opacity=0);
|
|
102
|
+
z-index: -1;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
|
|
107
|
+
-webkit-transition: margin-left 0.5s;
|
|
108
|
+
transition: margin-left 0.5s;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container {
|
|
113
|
+
margin-left: -2px !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container {
|
|
117
|
+
margin-left: -37px !important;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.bootstrap-switch.bootstrap-switch-on:hover .bootstrap-switch-label {
|
|
121
|
+
width: 26px !important;
|
|
122
|
+
margin: 2px -15px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.bootstrap-switch.bootstrap-switch-off:hover .bootstrap-switch-label {
|
|
126
|
+
width: 26px !important;
|
|
127
|
+
margin: 2px -15px -13px -11px;
|
|
128
|
+
}
|
|
@@ -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
|
+
}
|