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,187 +1,187 @@
|
|
|
1
|
-
$fl_borderFocus: #1A73E8;
|
|
2
|
-
$fl_border: #c8d3df;
|
|
3
|
-
$fl_labelFocus: #3F8AEC;
|
|
4
|
-
$fl_labelEmpty: #cccccc;
|
|
5
|
-
$fl_label: #9DA2A6;
|
|
6
|
-
$fl_input: #343434;
|
|
7
|
-
|
|
8
|
-
.form-label-group {
|
|
9
|
-
position: relative;
|
|
10
|
-
margin-bottom: 1rem;
|
|
11
|
-
|
|
12
|
-
> {
|
|
13
|
-
|
|
14
|
-
input {
|
|
15
|
-
height: 3.625rem;
|
|
16
|
-
padding: .75rem;
|
|
17
|
-
color: $fl_input;
|
|
18
|
-
font-size: 0.875rem;
|
|
19
|
-
border-radius: 0.25rem !important;
|
|
20
|
-
border-color: $fl_border;
|
|
21
|
-
|
|
22
|
-
&:focus {
|
|
23
|
-
border: solid 1.5px $fl_borderFocus !important;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
label {
|
|
28
|
-
width: auto;
|
|
29
|
-
position: absolute;
|
|
30
|
-
top: 1.125rem;
|
|
31
|
-
left: 0.75rem;
|
|
32
|
-
display: block;
|
|
33
|
-
margin-bottom: 0;
|
|
34
|
-
/* Override default `<label>` margin */
|
|
35
|
-
line-height: 1.5;
|
|
36
|
-
color: $fl_labelEmpty;
|
|
37
|
-
pointer-events: none;
|
|
38
|
-
cursor: text;
|
|
39
|
-
/* Match the input under the label */
|
|
40
|
-
border: 1px solid transparent;
|
|
41
|
-
border-radius: .25rem;
|
|
42
|
-
transition: all .1s ease-in-out;
|
|
43
|
-
font-size: 0.875rem;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
textarea {
|
|
47
|
-
padding: .75rem;
|
|
48
|
-
color: $fl_input;
|
|
49
|
-
resize: both;
|
|
50
|
-
font-size: 0.875rem;
|
|
51
|
-
border-radius: 0.25rem;
|
|
52
|
-
border-color: $fl_border;
|
|
53
|
-
|
|
54
|
-
~label {
|
|
55
|
-
top: 0.9375rem;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
&:focus {
|
|
59
|
-
border: solid 1.5px $fl_borderFocus !important;
|
|
60
|
-
|
|
61
|
-
~label {
|
|
62
|
-
top: 1rem;
|
|
63
|
-
left: 0.78125rem;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// For ng-select (single) add [ngClass]="{'empty' : Constants.IsEmpty(ngModel in select)}"
|
|
69
|
-
// For ng-select (multiple) add [ngClass]="{'empty' : Constants.IsEmpty( (ngModel in select).length == 0)}" and add class multiple.
|
|
70
|
-
ng-select ::ng-deep {
|
|
71
|
-
.ng-select-container {
|
|
72
|
-
min-height: 3.625rem;
|
|
73
|
-
border-color: $fl_border;
|
|
74
|
-
box-shadow: none;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
ng-select {
|
|
79
|
-
~label {
|
|
80
|
-
display: inline-block;
|
|
81
|
-
top: -0.625rem;
|
|
82
|
-
background-color: white;
|
|
83
|
-
font-size: 0.75rem !important;
|
|
84
|
-
color: $fl_label;
|
|
85
|
-
padding: 0 0.25rem;
|
|
86
|
-
z-index: 2000;
|
|
87
|
-
left: 0.5rem;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&.multiple {
|
|
93
|
-
ng-select ::ng-deep {
|
|
94
|
-
.ng-input {
|
|
95
|
-
padding-left: 0.25rem !important;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.ng-placeholder {
|
|
99
|
-
top: 18px !important;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
&.radio {
|
|
105
|
-
height: 3.625rem;
|
|
106
|
-
padding: .75rem;
|
|
107
|
-
color: $fl_input;
|
|
108
|
-
border-radius: 0.25rem !important;
|
|
109
|
-
border: solid 1px $fl_border;
|
|
110
|
-
|
|
111
|
-
label {
|
|
112
|
-
background-color: white;
|
|
113
|
-
font-size: 0.75rem !important;
|
|
114
|
-
color: $fl_label;
|
|
115
|
-
top: -10px !important;
|
|
116
|
-
padding: 0 0.25rem;
|
|
117
|
-
left: 0.5rem;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
&.empty {
|
|
122
|
-
ng-select {
|
|
123
|
-
~label {
|
|
124
|
-
display: none;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
input,
|
|
130
|
-
textarea {
|
|
131
|
-
|
|
132
|
-
&::-webkit-input-placeholder,
|
|
133
|
-
&:-ms-input-placeholder,
|
|
134
|
-
&::-ms-input-placeholder,
|
|
135
|
-
&::-moz-placeholder,
|
|
136
|
-
&::placeholder {
|
|
137
|
-
color: transparent;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
input,
|
|
142
|
-
textarea {
|
|
143
|
-
&:not(:placeholder-shown) {
|
|
144
|
-
~label {
|
|
145
|
-
background-color: white;
|
|
146
|
-
font-size: 0.75rem !important;
|
|
147
|
-
color: $fl_label;
|
|
148
|
-
top: -10px !important;
|
|
149
|
-
padding: 0 0.25rem;
|
|
150
|
-
left: 0.5rem;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
&:focus {
|
|
154
|
-
~label {
|
|
155
|
-
color: $fl_labelFocus;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
ng-select ::ng-deep {
|
|
163
|
-
.ng-placeholder {
|
|
164
|
-
padding-left: 0.25rem;
|
|
165
|
-
color: $fl_labelEmpty !important;
|
|
166
|
-
font-size: 0.875rem;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.ng-has-value {
|
|
170
|
-
.ng-value {
|
|
171
|
-
// position: absolute;
|
|
172
|
-
padding-left: 0.25rem;
|
|
173
|
-
font-size: 0.875rem;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.ng-value-container {
|
|
178
|
-
overflow: initial !important;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.ng-input {
|
|
182
|
-
top: auto !important;
|
|
183
|
-
padding-left: 0.875rem !important;
|
|
184
|
-
font-size: 0.875rem;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
}
|
|
1
|
+
$fl_borderFocus: #1A73E8;
|
|
2
|
+
$fl_border: #c8d3df;
|
|
3
|
+
$fl_labelFocus: #3F8AEC;
|
|
4
|
+
$fl_labelEmpty: #cccccc;
|
|
5
|
+
$fl_label: #9DA2A6;
|
|
6
|
+
$fl_input: #343434;
|
|
7
|
+
|
|
8
|
+
.form-label-group {
|
|
9
|
+
position: relative;
|
|
10
|
+
margin-bottom: 1rem;
|
|
11
|
+
|
|
12
|
+
> {
|
|
13
|
+
|
|
14
|
+
input {
|
|
15
|
+
height: 3.625rem;
|
|
16
|
+
padding: .75rem;
|
|
17
|
+
color: $fl_input;
|
|
18
|
+
font-size: 0.875rem;
|
|
19
|
+
border-radius: 0.25rem !important;
|
|
20
|
+
border-color: $fl_border;
|
|
21
|
+
|
|
22
|
+
&:focus {
|
|
23
|
+
border: solid 1.5px $fl_borderFocus !important;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
label {
|
|
28
|
+
width: auto;
|
|
29
|
+
position: absolute;
|
|
30
|
+
top: 1.125rem;
|
|
31
|
+
left: 0.75rem;
|
|
32
|
+
display: block;
|
|
33
|
+
margin-bottom: 0;
|
|
34
|
+
/* Override default `<label>` margin */
|
|
35
|
+
line-height: 1.5;
|
|
36
|
+
color: $fl_labelEmpty;
|
|
37
|
+
pointer-events: none;
|
|
38
|
+
cursor: text;
|
|
39
|
+
/* Match the input under the label */
|
|
40
|
+
border: 1px solid transparent;
|
|
41
|
+
border-radius: .25rem;
|
|
42
|
+
transition: all .1s ease-in-out;
|
|
43
|
+
font-size: 0.875rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
textarea {
|
|
47
|
+
padding: .75rem;
|
|
48
|
+
color: $fl_input;
|
|
49
|
+
resize: both;
|
|
50
|
+
font-size: 0.875rem;
|
|
51
|
+
border-radius: 0.25rem;
|
|
52
|
+
border-color: $fl_border;
|
|
53
|
+
|
|
54
|
+
~label {
|
|
55
|
+
top: 0.9375rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&:focus {
|
|
59
|
+
border: solid 1.5px $fl_borderFocus !important;
|
|
60
|
+
|
|
61
|
+
~label {
|
|
62
|
+
top: 1rem;
|
|
63
|
+
left: 0.78125rem;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// For ng-select (single) add [ngClass]="{'empty' : Constants.IsEmpty(ngModel in select)}"
|
|
69
|
+
// For ng-select (multiple) add [ngClass]="{'empty' : Constants.IsEmpty( (ngModel in select).length == 0)}" and add class multiple.
|
|
70
|
+
ng-select ::ng-deep {
|
|
71
|
+
.ng-select-container {
|
|
72
|
+
min-height: 3.625rem;
|
|
73
|
+
border-color: $fl_border;
|
|
74
|
+
box-shadow: none;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
ng-select {
|
|
79
|
+
~label {
|
|
80
|
+
display: inline-block;
|
|
81
|
+
top: -0.625rem;
|
|
82
|
+
background-color: white;
|
|
83
|
+
font-size: 0.75rem !important;
|
|
84
|
+
color: $fl_label;
|
|
85
|
+
padding: 0 0.25rem;
|
|
86
|
+
z-index: 2000;
|
|
87
|
+
left: 0.5rem;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&.multiple {
|
|
93
|
+
ng-select ::ng-deep {
|
|
94
|
+
.ng-input {
|
|
95
|
+
padding-left: 0.25rem !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.ng-placeholder {
|
|
99
|
+
top: 18px !important;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&.radio {
|
|
105
|
+
height: 3.625rem;
|
|
106
|
+
padding: .75rem;
|
|
107
|
+
color: $fl_input;
|
|
108
|
+
border-radius: 0.25rem !important;
|
|
109
|
+
border: solid 1px $fl_border;
|
|
110
|
+
|
|
111
|
+
label {
|
|
112
|
+
background-color: white;
|
|
113
|
+
font-size: 0.75rem !important;
|
|
114
|
+
color: $fl_label;
|
|
115
|
+
top: -10px !important;
|
|
116
|
+
padding: 0 0.25rem;
|
|
117
|
+
left: 0.5rem;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.empty {
|
|
122
|
+
ng-select {
|
|
123
|
+
~label {
|
|
124
|
+
display: none;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
input,
|
|
130
|
+
textarea {
|
|
131
|
+
|
|
132
|
+
&::-webkit-input-placeholder,
|
|
133
|
+
&:-ms-input-placeholder,
|
|
134
|
+
&::-ms-input-placeholder,
|
|
135
|
+
&::-moz-placeholder,
|
|
136
|
+
&::placeholder {
|
|
137
|
+
color: transparent;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
input,
|
|
142
|
+
textarea {
|
|
143
|
+
&:not(:placeholder-shown) {
|
|
144
|
+
~label {
|
|
145
|
+
background-color: white;
|
|
146
|
+
font-size: 0.75rem !important;
|
|
147
|
+
color: $fl_label;
|
|
148
|
+
top: -10px !important;
|
|
149
|
+
padding: 0 0.25rem;
|
|
150
|
+
left: 0.5rem;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&:focus {
|
|
154
|
+
~label {
|
|
155
|
+
color: $fl_labelFocus;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
ng-select ::ng-deep {
|
|
163
|
+
.ng-placeholder {
|
|
164
|
+
padding-left: 0.25rem;
|
|
165
|
+
color: $fl_labelEmpty !important;
|
|
166
|
+
font-size: 0.875rem;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.ng-has-value {
|
|
170
|
+
.ng-value {
|
|
171
|
+
// position: absolute;
|
|
172
|
+
padding-left: 0.25rem;
|
|
173
|
+
font-size: 0.875rem;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.ng-value-container {
|
|
178
|
+
overflow: initial !important;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.ng-input {
|
|
182
|
+
top: auto !important;
|
|
183
|
+
padding-left: 0.875rem !important;
|
|
184
|
+
font-size: 0.875rem;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
.alert{
|
|
2
|
-
border: 0;
|
|
3
|
-
border-radius: 0;
|
|
4
|
-
color: #FFFFFF;
|
|
5
|
-
padding: 10px 15px;
|
|
6
|
-
font-size: 14px;
|
|
7
|
-
|
|
8
|
-
.container &{
|
|
9
|
-
border-radius: 4px;
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
.navbar &{
|
|
13
|
-
border-radius: 0;
|
|
14
|
-
left: 0;
|
|
15
|
-
position: absolute;
|
|
16
|
-
right: 0;
|
|
17
|
-
top: 85px;
|
|
18
|
-
width: 100%;
|
|
19
|
-
z-index: 3;
|
|
20
|
-
}
|
|
21
|
-
.navbar:not(.navbar-transparent) &{
|
|
22
|
-
top: 70px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
span[data-notify="icon"]{
|
|
26
|
-
font-size: 30px;
|
|
27
|
-
display: block;
|
|
28
|
-
left: 15px;
|
|
29
|
-
position: absolute;
|
|
30
|
-
top: 50%;
|
|
31
|
-
margin-top: -15px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
i.nc-simple-remove{
|
|
35
|
-
font-size: 12px !important;
|
|
36
|
-
font: bold normal normal 14px/1 'nucleo-icons';
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
button.close{
|
|
40
|
-
position: absolute;
|
|
41
|
-
right: 10px;
|
|
42
|
-
top: 50%;
|
|
43
|
-
margin-top: -13px;
|
|
44
|
-
z-index: 1033;
|
|
45
|
-
background-color: #FFFFFF;
|
|
46
|
-
display: block;
|
|
47
|
-
border-radius: 50%;
|
|
48
|
-
opacity: .4;
|
|
49
|
-
line-height: 9px;
|
|
50
|
-
width: 25px;
|
|
51
|
-
height: 25px;
|
|
52
|
-
outline: 0 !important;
|
|
53
|
-
text-align: center;
|
|
54
|
-
padding: 3px;
|
|
55
|
-
font-weight: 300;
|
|
56
|
-
|
|
57
|
-
&:hover{
|
|
58
|
-
opacity: .55;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.close ~ span{
|
|
63
|
-
display: block;
|
|
64
|
-
max-width: 89%;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
&[data-notify="container"]{
|
|
68
|
-
padding: 10px 10px 10px 20px;
|
|
69
|
-
border-radius: $border-radius-base;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
&.alert-with-icon{
|
|
73
|
-
padding-left: 65px;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
.alert-primary{
|
|
77
|
-
background-color: $blue-navbar;
|
|
78
|
-
}
|
|
79
|
-
.alert-info{
|
|
80
|
-
background-color: $azure-navbar;
|
|
81
|
-
}
|
|
82
|
-
.alert-success {
|
|
83
|
-
background-color: $green-navbar;
|
|
84
|
-
}
|
|
85
|
-
.alert-warning {
|
|
86
|
-
background-color: $orange-navbar;
|
|
87
|
-
}
|
|
88
|
-
.alert-danger {
|
|
89
|
-
background-color: $red-navbar;
|
|
90
|
-
}
|
|
1
|
+
.alert{
|
|
2
|
+
border: 0;
|
|
3
|
+
border-radius: 0;
|
|
4
|
+
color: #FFFFFF;
|
|
5
|
+
padding: 10px 15px;
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
|
|
8
|
+
.container &{
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
|
|
11
|
+
}
|
|
12
|
+
.navbar &{
|
|
13
|
+
border-radius: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
position: absolute;
|
|
16
|
+
right: 0;
|
|
17
|
+
top: 85px;
|
|
18
|
+
width: 100%;
|
|
19
|
+
z-index: 3;
|
|
20
|
+
}
|
|
21
|
+
.navbar:not(.navbar-transparent) &{
|
|
22
|
+
top: 70px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
span[data-notify="icon"]{
|
|
26
|
+
font-size: 30px;
|
|
27
|
+
display: block;
|
|
28
|
+
left: 15px;
|
|
29
|
+
position: absolute;
|
|
30
|
+
top: 50%;
|
|
31
|
+
margin-top: -15px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
i.nc-simple-remove{
|
|
35
|
+
font-size: 12px !important;
|
|
36
|
+
font: bold normal normal 14px/1 'nucleo-icons';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
button.close{
|
|
40
|
+
position: absolute;
|
|
41
|
+
right: 10px;
|
|
42
|
+
top: 50%;
|
|
43
|
+
margin-top: -13px;
|
|
44
|
+
z-index: 1033;
|
|
45
|
+
background-color: #FFFFFF;
|
|
46
|
+
display: block;
|
|
47
|
+
border-radius: 50%;
|
|
48
|
+
opacity: .4;
|
|
49
|
+
line-height: 9px;
|
|
50
|
+
width: 25px;
|
|
51
|
+
height: 25px;
|
|
52
|
+
outline: 0 !important;
|
|
53
|
+
text-align: center;
|
|
54
|
+
padding: 3px;
|
|
55
|
+
font-weight: 300;
|
|
56
|
+
|
|
57
|
+
&:hover{
|
|
58
|
+
opacity: .55;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.close ~ span{
|
|
63
|
+
display: block;
|
|
64
|
+
max-width: 89%;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&[data-notify="container"]{
|
|
68
|
+
padding: 10px 10px 10px 20px;
|
|
69
|
+
border-radius: $border-radius-base;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.alert-with-icon{
|
|
73
|
+
padding-left: 65px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
.alert-primary{
|
|
77
|
+
background-color: $blue-navbar;
|
|
78
|
+
}
|
|
79
|
+
.alert-info{
|
|
80
|
+
background-color: $azure-navbar;
|
|
81
|
+
}
|
|
82
|
+
.alert-success {
|
|
83
|
+
background-color: $green-navbar;
|
|
84
|
+
}
|
|
85
|
+
.alert-warning {
|
|
86
|
+
background-color: $orange-navbar;
|
|
87
|
+
}
|
|
88
|
+
.alert-danger {
|
|
89
|
+
background-color: $red-navbar;
|
|
90
|
+
}
|