@dev-tcloud/tcloud-ui 0.1.20 → 0.1.21
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/esm2020/lib/_modules/tcloud-ui-accordion/tcloud-ui-accordion.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-choice-issues/tcloud-ui-choice-issues.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-datepicker/tcloud-ui-datepicker.module.mjs +5 -4
- package/esm2020/lib/_modules/tcloud-ui-datepicker-time/tcloud-ui-datepicker-time.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-filters/components/range-date/range-date.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-input-password/tcloud-ui-input-password.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-input-search/tcloud-ui-input-search.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-line-step-circle/tcloud-ui-line-step-circle.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-linha-logo/tcloud-ui-linha-logo.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-footer/tcloud-ui-modal-footer.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-multi-input/tcloud-ui-multi-input.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-multi-select/tcloud-ui-multi-select.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-not-found/tcloud-ui-not-found.module.mjs +3 -2
- package/esm2020/lib/_modules/tcloud-ui-number-step/tcloud-ui-number-step.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-progress-bar/tcloud-ui-progress-bar.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-scroll-box/tcloud-ui-scroll-box.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/tcloud-ui-tab-menu.module.mjs +3 -2
- package/esm2020/lib/_modules/tcloud-ui-table/tcloud-ui-table.module.mjs +4 -3
- package/esm2020/lib/_modules/tcloud-ui-welcome/tcloud-ui-welcome.module.mjs +4 -3
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +49 -28
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +49 -28
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/tcloud/custom/alerts.scss +29 -30
- package/scss/tcloud/custom/buttons.scss +544 -532
- package/scss/tcloud/custom/card.scss +4 -2
- package/scss/tcloud/custom/colors.scss +1 -0
- package/scss/tcloud/custom/forms.scss +14 -6
- package/scss/tcloud/custom/left-navigation.scss +48 -0
- package/scss/tcloud/custom/mixins.scss +143 -143
- package/scss/tcloud/custom/tcloud-prime.scss +9 -11
- package/scss/tcloud/custom/tcloud-standard.scss +3 -0
- package/scss/tcloud/custom/top-navigation.scss +52 -0
- package/scss/tcloud/iaas/forms.scss +18 -0
- package/scss/tcloud/styles.scss +5 -1
|
@@ -3,109 +3,121 @@
|
|
|
3
3
|
// ---------------------------------
|
|
4
4
|
|
|
5
5
|
.tc-btn {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
font-size: 12px;
|
|
7
|
+
background: var(--tc-gray-100);
|
|
8
|
+
color: var(--tc-gray-700);
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
border-radius: 30px;
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
transition: all 0.25s;
|
|
14
|
+
padding: 0 25px;
|
|
15
|
+
height: 40px;
|
|
16
|
+
border: 1px solid var(--tc-gray-100);
|
|
17
|
+
justify-content: center;
|
|
18
|
+
|
|
19
|
+
p {
|
|
20
|
+
font-size: 13px;
|
|
21
|
+
color: var(--tc-gray-700);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
i {
|
|
25
|
+
margin-right: 3px;
|
|
26
|
+
margin-left: 3px;
|
|
27
|
+
font-size: 16px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&:hover {
|
|
31
|
+
color: var(--tc-primary);
|
|
32
|
+
background: var(--tc-gray-50);
|
|
33
|
+
border-color: var(--tc-gray-100);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:link,
|
|
37
|
+
&:visited,
|
|
38
|
+
&:hover,
|
|
39
|
+
&:active {
|
|
40
|
+
text-decoration: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.full {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
flex: 1;
|
|
48
|
+
width: 100%;
|
|
49
|
+
}
|
|
21
50
|
}
|
|
22
51
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
margin-left: 6px;
|
|
26
|
-
font-size: 16px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&:hover {
|
|
30
|
-
color: var(--tc-primary);
|
|
31
|
-
background: var(--tc-gray-50);
|
|
32
|
-
border-color: var(--tc-gray-100);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&:link,
|
|
36
|
-
&:visited,
|
|
37
|
-
&:hover,
|
|
38
|
-
&:active {
|
|
39
|
-
text-decoration: none;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&.full {
|
|
43
|
-
display: flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
justify-content: center;
|
|
46
|
-
flex: 1;
|
|
52
|
+
.tc-btn-block {
|
|
53
|
+
display: block;
|
|
47
54
|
width: 100%;
|
|
48
|
-
|
|
55
|
+
text-align: center;
|
|
56
|
+
padding: 10px 25px;
|
|
49
57
|
}
|
|
50
58
|
|
|
51
|
-
.tc-btn-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
padding: 10px 25px;
|
|
59
|
+
.tc-btn-square {
|
|
60
|
+
border-radius: 9px;
|
|
61
|
+
padding-left: 15px;
|
|
62
|
+
padding-right: 15px;
|
|
56
63
|
}
|
|
57
64
|
|
|
58
65
|
.tc-btn:disabled,
|
|
59
66
|
.tc-btn[disabled]{
|
|
60
|
-
cursor: no-drop;
|
|
61
|
-
opacity: 0.6;
|
|
67
|
+
cursor: no-drop;
|
|
68
|
+
opacity: 0.6;
|
|
62
69
|
}
|
|
63
70
|
|
|
64
71
|
.tc-btn-primary {
|
|
65
|
-
color: var(--white);
|
|
66
|
-
background: var(--tc-primary);
|
|
67
|
-
border-color: var(--tc-primary);
|
|
68
|
-
|
|
69
|
-
&:hover {
|
|
70
72
|
color: var(--white);
|
|
71
|
-
background: var(--tc-
|
|
73
|
+
background: var(--tc-primary);
|
|
72
74
|
border-color: var(--tc-primary);
|
|
73
|
-
}
|
|
74
75
|
|
|
76
|
+
&:hover {
|
|
77
|
+
color: var(--white);
|
|
78
|
+
background: var(--tc-complemt-3);
|
|
79
|
+
border-color: var(--tc-primary);
|
|
80
|
+
}
|
|
75
81
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
|
|
83
|
+
&.full {
|
|
84
|
+
display: flex;
|
|
85
|
+
align-items: center;
|
|
86
|
+
justify-content: center;
|
|
87
|
+
flex: 1;
|
|
88
|
+
width: 100%;
|
|
89
|
+
}
|
|
83
90
|
}
|
|
84
91
|
|
|
85
92
|
.tc-btn-link {
|
|
86
|
-
cursor: pointer;
|
|
87
|
-
padding: 10px;
|
|
88
|
-
background: none;
|
|
89
|
-
color: var(--tc-primary);
|
|
90
|
-
border: none;
|
|
91
|
-
|
|
92
|
-
p {
|
|
93
|
-
text-align: left;
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
padding: 10px;
|
|
95
|
+
background: none;
|
|
94
96
|
color: var(--tc-primary);
|
|
95
|
-
|
|
97
|
+
border: none;
|
|
96
98
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
99
|
+
p {
|
|
100
|
+
text-align: left;
|
|
101
|
+
color: var(--tc-primary);
|
|
102
|
+
}
|
|
100
103
|
|
|
101
|
-
&:
|
|
102
|
-
|
|
103
|
-
}
|
|
104
|
+
&:hover{
|
|
105
|
+
color: var(--tc-complemt-3);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&:disabled{
|
|
109
|
+
color: var(--tc-gray-700);
|
|
110
|
+
}
|
|
104
111
|
}
|
|
105
112
|
|
|
106
113
|
.tc-btn:disabled {
|
|
107
|
-
opacity: 0.6;
|
|
108
|
-
cursor: not-allowed;
|
|
114
|
+
opacity: 0.6;
|
|
115
|
+
cursor: not-allowed;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.tc-btn-block{
|
|
119
|
+
width: 100% !important;
|
|
120
|
+
justify-content: center;
|
|
109
121
|
}
|
|
110
122
|
|
|
111
123
|
// ========================================
|
|
@@ -113,270 +125,270 @@ cursor: not-allowed;
|
|
|
113
125
|
// ========================================
|
|
114
126
|
|
|
115
127
|
.btn-new {
|
|
116
|
-
border: none;
|
|
117
|
-
transition: all 0.25s;
|
|
118
|
-
background: var(--tc-gray-100);
|
|
119
|
-
color: var(--tc-gray-500);
|
|
120
|
-
font-size: 12px;
|
|
121
|
-
font-weight: normal;
|
|
122
|
-
border-radius: 30px;
|
|
123
|
-
padding: 10px 25px!important;
|
|
124
|
-
cursor: pointer;
|
|
125
|
-
display: inline-flex;
|
|
126
|
-
align-items: center;
|
|
128
|
+
border: none;
|
|
129
|
+
transition: all 0.25s;
|
|
130
|
+
background: var(--tc-gray-100);
|
|
131
|
+
color: var(--tc-gray-500);
|
|
132
|
+
font-size: 12px;
|
|
133
|
+
font-weight: normal;
|
|
134
|
+
border-radius: 30px;
|
|
135
|
+
padding: 10px 25px!important;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
display: inline-flex;
|
|
138
|
+
align-items: center;
|
|
127
139
|
}
|
|
128
140
|
|
|
129
141
|
.btn-new.active,
|
|
130
142
|
.btn-new.opened,
|
|
131
143
|
.btn-new:hover {
|
|
132
|
-
background: var(--tc-primary);
|
|
133
|
-
color: var(--white);
|
|
144
|
+
background: var(--tc-primary);
|
|
145
|
+
color: var(--white);
|
|
134
146
|
}
|
|
135
147
|
|
|
136
148
|
.btn-new i {
|
|
137
|
-
margin: 0 10px 0 5px;
|
|
149
|
+
margin: 0 10px 0 5px;
|
|
138
150
|
}
|
|
139
151
|
|
|
140
152
|
.btn-new i:nth-child(2) {
|
|
141
|
-
margin: 0 0 0 10px;
|
|
153
|
+
margin: 0 0 0 10px;
|
|
142
154
|
}
|
|
143
155
|
|
|
144
156
|
.btn-new-grey {
|
|
145
|
-
border: none;
|
|
146
|
-
transition: all 0.25s;
|
|
147
|
-
background: var(--tc-gray-100) !important;
|
|
148
|
-
color: var(--tc-gray-600) !important;
|
|
149
|
-
font-size: 12px;
|
|
150
|
-
font-weight: normal;
|
|
151
|
-
border-radius: 30px;
|
|
152
|
-
padding: 10px 20px;
|
|
153
|
-
cursor: pointer;
|
|
154
|
-
border: none !important;
|
|
157
|
+
border: none;
|
|
158
|
+
transition: all 0.25s;
|
|
159
|
+
background: var(--tc-gray-100) !important;
|
|
160
|
+
color: var(--tc-gray-600) !important;
|
|
161
|
+
font-size: 12px;
|
|
162
|
+
font-weight: normal;
|
|
163
|
+
border-radius: 30px;
|
|
164
|
+
padding: 10px 20px;
|
|
165
|
+
cursor: pointer;
|
|
166
|
+
border: none !important;
|
|
155
167
|
}
|
|
156
168
|
|
|
157
169
|
.btn-new-grey.active,
|
|
158
170
|
.btn-new-grey.opened,
|
|
159
171
|
.btn-new-grey:hover {
|
|
160
|
-
background: var(--tc-primary)!important;
|
|
161
|
-
color: var(--white) !important;
|
|
172
|
+
background: var(--tc-primary)!important;
|
|
173
|
+
color: var(--white) !important;
|
|
162
174
|
}
|
|
163
175
|
|
|
164
176
|
.btn-new-grey i {
|
|
165
|
-
margin: 0 10px 0 5px;
|
|
177
|
+
margin: 0 10px 0 5px;
|
|
166
178
|
}
|
|
167
179
|
|
|
168
180
|
.btn-new-grey i:nth-child(2) {
|
|
169
|
-
margin: 0 0 0 10px;
|
|
181
|
+
margin: 0 0 0 10px;
|
|
170
182
|
}
|
|
171
183
|
|
|
172
184
|
.tc-btn-primary,
|
|
173
185
|
.btn-green-validate {
|
|
174
|
-
display: inline-flex;
|
|
175
|
-
align-items: center;
|
|
176
|
-
background: var(--tc-primary)!important;
|
|
177
|
-
color: var(--white) !important;
|
|
178
|
-
font-size: 12px;
|
|
179
|
-
font-weight: normal;
|
|
180
|
-
border-radius: 30px;
|
|
181
|
-
padding: 10px 20px;
|
|
182
|
-
cursor: pointer;
|
|
183
|
-
border: none!important;
|
|
184
|
-
transition: all 0.25s;
|
|
186
|
+
display: inline-flex;
|
|
187
|
+
align-items: center;
|
|
188
|
+
background: var(--tc-primary)!important;
|
|
189
|
+
color: var(--white) !important;
|
|
190
|
+
font-size: 12px;
|
|
191
|
+
font-weight: normal;
|
|
192
|
+
border-radius: 30px;
|
|
193
|
+
padding: 10px 20px;
|
|
194
|
+
cursor: pointer;
|
|
195
|
+
border: none!important;
|
|
196
|
+
transition: all 0.25s;
|
|
185
197
|
}
|
|
186
198
|
|
|
187
199
|
.tc-btn-primary.full {
|
|
188
|
-
width: 100%!important;
|
|
200
|
+
width: 100%!important;
|
|
189
201
|
}
|
|
190
202
|
|
|
191
203
|
.tc-btn-primary.full.txt-center,
|
|
192
204
|
.tc-btn-primary.txt-center {
|
|
193
|
-
justify-content: center;
|
|
205
|
+
justify-content: center;
|
|
194
206
|
}
|
|
195
207
|
|
|
196
208
|
.btn-green-validate:disabled {
|
|
197
|
-
background: var(--tc-gray-200) !important;
|
|
209
|
+
background: var(--tc-gray-200) !important;
|
|
198
210
|
}
|
|
199
211
|
|
|
200
212
|
.tc-btn-primary.small {
|
|
201
|
-
padding: 10px 20px;
|
|
213
|
+
padding: 10px 20px;
|
|
202
214
|
}
|
|
203
215
|
|
|
204
216
|
.tc-btn-primary.active,
|
|
205
217
|
.tc-btn-primary.opened,
|
|
206
218
|
.tc-btn-primary:hover {
|
|
207
|
-
background: var(--tc-complemt-3) !important;
|
|
219
|
+
background: var(--tc-complemt-3) !important;
|
|
208
220
|
}
|
|
209
221
|
|
|
210
222
|
.tc-btn-primary i {
|
|
211
|
-
margin: 0 10px 0 5px;
|
|
223
|
+
margin: 0 10px 0 5px;
|
|
212
224
|
}
|
|
213
225
|
|
|
214
226
|
.tc-btn-primary i:nth-child(2) {
|
|
215
|
-
margin: 0 0 0 10px;
|
|
227
|
+
margin: 0 0 0 10px;
|
|
216
228
|
}
|
|
217
229
|
|
|
218
230
|
.btn-new-outline {
|
|
219
|
-
background: var(--white) !important;
|
|
220
|
-
color: var(--tc-gray-600);
|
|
221
|
-
font-size: 12px;
|
|
222
|
-
font-weight: normal;
|
|
223
|
-
transition: all 0.25s;
|
|
224
|
-
border: 3px solid var(--tc-gray-100);
|
|
225
|
-
border-radius: 30px;
|
|
226
|
-
padding: 10px 25px;
|
|
227
|
-
cursor: pointer;
|
|
231
|
+
background: var(--white) !important;
|
|
232
|
+
color: var(--tc-gray-600);
|
|
233
|
+
font-size: 12px;
|
|
234
|
+
font-weight: normal;
|
|
235
|
+
transition: all 0.25s;
|
|
236
|
+
border: 3px solid var(--tc-gray-100);
|
|
237
|
+
border-radius: 30px;
|
|
238
|
+
padding: 10px 25px;
|
|
239
|
+
cursor: pointer;
|
|
228
240
|
|
|
229
241
|
.btn-new-outline i {
|
|
230
|
-
margin: 0 10px 0 5px;
|
|
231
|
-
|
|
232
|
-
&:nth-child(2) {
|
|
233
|
-
|
|
234
|
-
}
|
|
242
|
+
margin: 0 10px 0 5px;
|
|
243
|
+
|
|
244
|
+
&:nth-child(2) {
|
|
245
|
+
margin: 0 0 0 10px;
|
|
246
|
+
}
|
|
235
247
|
}
|
|
236
248
|
}
|
|
237
249
|
|
|
238
250
|
.btn-new-outline.active,
|
|
239
251
|
.btn-new-outline.opened,
|
|
240
252
|
.btn-new-outline:hover {
|
|
241
|
-
background: var(--tc-gray-100) !important;
|
|
253
|
+
background: var(--tc-gray-100) !important;
|
|
242
254
|
}
|
|
243
255
|
|
|
244
256
|
|
|
245
257
|
|
|
246
258
|
.btn-new-group {
|
|
247
|
-
display: flex;
|
|
248
|
-
flex: 1;
|
|
249
|
-
margin: 20px 0;
|
|
259
|
+
display: flex;
|
|
260
|
+
flex: 1;
|
|
261
|
+
margin: 20px 0;
|
|
250
262
|
}
|
|
251
263
|
|
|
252
264
|
.btn-new-group.align-left {
|
|
253
|
-
justify-content: flex-start;
|
|
265
|
+
justify-content: flex-start;
|
|
254
266
|
}
|
|
255
267
|
|
|
256
268
|
.btn-new-group.align-right {
|
|
257
|
-
justify-content: flex-end;
|
|
269
|
+
justify-content: flex-end;
|
|
258
270
|
}
|
|
259
271
|
|
|
260
272
|
.btn-new-group .btn-new {
|
|
261
|
-
margin: 0 20px 0 0;
|
|
273
|
+
margin: 0 20px 0 0;
|
|
262
274
|
}
|
|
263
275
|
|
|
264
276
|
.btn-new-group .btn-new:last-child {
|
|
265
|
-
margin: 0;
|
|
277
|
+
margin: 0;
|
|
266
278
|
}
|
|
267
279
|
|
|
268
280
|
.btn-disabled {
|
|
269
|
-
display: inline-flex;
|
|
270
|
-
align-items: center;
|
|
271
|
-
background: var(--tc-primary)!important;
|
|
272
|
-
color: var(--white) !important;
|
|
273
|
-
font-size: 12px;
|
|
274
|
-
font-weight: normal;
|
|
275
|
-
border-radius: 30px;
|
|
276
|
-
padding: 10px 20px;
|
|
277
|
-
border: none!important;
|
|
278
|
-
transition: all 0.25s;
|
|
279
|
-
cursor: pointer;
|
|
280
|
-
|
|
281
|
-
&:disabled {
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
}
|
|
281
|
+
display: inline-flex;
|
|
282
|
+
align-items: center;
|
|
283
|
+
background: var(--tc-primary)!important;
|
|
284
|
+
color: var(--white) !important;
|
|
285
|
+
font-size: 12px;
|
|
286
|
+
font-weight: normal;
|
|
287
|
+
border-radius: 30px;
|
|
288
|
+
padding: 10px 20px;
|
|
289
|
+
border: none!important;
|
|
290
|
+
transition: all 0.25s;
|
|
291
|
+
cursor: pointer;
|
|
292
|
+
|
|
293
|
+
&:disabled {
|
|
294
|
+
background: var(--tc-gray-100) !important;
|
|
295
|
+
color: var(--tc-gray-600) !important;
|
|
296
|
+
cursor: default;
|
|
297
|
+
}
|
|
286
298
|
}
|
|
287
299
|
|
|
288
300
|
|
|
289
301
|
.btn-new-white {
|
|
290
|
-
font-size: 12px;
|
|
291
|
-
font-weight: normal;
|
|
302
|
+
font-size: 12px;
|
|
303
|
+
font-weight: normal;
|
|
292
304
|
|
|
293
|
-
display: inline-flex;
|
|
294
|
-
align-items: center;
|
|
295
|
-
color: var(--tc-primary);
|
|
296
|
-
background: var(--white);
|
|
297
|
-
border-radius: 30px;
|
|
298
|
-
padding: 10px 20px;
|
|
299
|
-
cursor: pointer;
|
|
300
|
-
border: none!important;
|
|
301
|
-
transition: all 0.25s;
|
|
305
|
+
display: inline-flex;
|
|
306
|
+
align-items: center;
|
|
307
|
+
color: var(--tc-primary);
|
|
308
|
+
background: var(--white);
|
|
309
|
+
border-radius: 30px;
|
|
310
|
+
padding: 10px 20px;
|
|
311
|
+
cursor: pointer;
|
|
312
|
+
border: none!important;
|
|
313
|
+
transition: all 0.25s;
|
|
302
314
|
}
|
|
303
315
|
|
|
304
316
|
.btn-new-white:hover {
|
|
305
|
-
color: var(--white);
|
|
306
|
-
background: var(--var(--tc-primary)2);
|
|
317
|
+
color: var(--white);
|
|
318
|
+
background: var(--var(--tc-primary)2);
|
|
307
319
|
}
|
|
308
320
|
|
|
309
321
|
.btn-new-full {
|
|
310
|
-
flex: 1;
|
|
311
|
-
display: flex;
|
|
312
|
-
justify-content: center;
|
|
313
|
-
align-items: center;
|
|
314
|
-
width: 100%;
|
|
322
|
+
flex: 1;
|
|
323
|
+
display: flex;
|
|
324
|
+
justify-content: center;
|
|
325
|
+
align-items: center;
|
|
326
|
+
width: 100%;
|
|
315
327
|
}
|
|
316
328
|
|
|
317
329
|
|
|
318
330
|
.btn-group .btn-secondary {
|
|
319
|
-
color: var(--white);
|
|
320
|
-
background-color: var(--tc-primary);
|
|
321
|
-
border-color: var(--tc-primary);
|
|
331
|
+
color: var(--white);
|
|
332
|
+
background-color: var(--tc-primary);
|
|
333
|
+
border-color: var(--tc-primary);
|
|
322
334
|
}
|
|
323
335
|
|
|
324
336
|
.btn-group .btn-secondary:hover {
|
|
325
|
-
background-color: var(--tc-primary)2;
|
|
337
|
+
background-color: var(--tc-primary)2;
|
|
326
338
|
}
|
|
327
339
|
|
|
328
340
|
|
|
329
341
|
button:focus {
|
|
330
|
-
outline: 0 !important;
|
|
342
|
+
outline: 0 !important;
|
|
331
343
|
}
|
|
332
344
|
|
|
333
345
|
.btn {
|
|
334
|
-
padding: 10px 20px;
|
|
335
|
-
border-radius: 20px;
|
|
336
|
-
font-size: inherit;
|
|
337
|
-
color: var(--tc-gray-500);
|
|
346
|
+
padding: 10px 20px;
|
|
347
|
+
border-radius: 20px;
|
|
348
|
+
font-size: inherit;
|
|
349
|
+
color: var(--tc-gray-500);
|
|
338
350
|
}
|
|
339
351
|
|
|
340
352
|
.btn:focus {
|
|
341
|
-
box-shadow: none;
|
|
353
|
+
box-shadow: none;
|
|
342
354
|
}
|
|
343
355
|
|
|
344
356
|
.btn-xs {
|
|
345
|
-
font-size: 12px;
|
|
346
|
-
padding: 0.2rem 0.4rem;
|
|
357
|
+
font-size: 12px;
|
|
358
|
+
padding: 0.2rem 0.4rem;
|
|
347
359
|
}
|
|
348
360
|
|
|
349
361
|
.btn-group-sm > .btn,
|
|
350
362
|
.btn-sm {
|
|
351
|
-
font-size: 12px;
|
|
363
|
+
font-size: 12px;
|
|
352
364
|
}
|
|
353
365
|
|
|
354
366
|
.float-e-margins .btn {
|
|
355
|
-
margin-bottom: 5px;
|
|
367
|
+
margin-bottom: 5px;
|
|
356
368
|
}
|
|
357
369
|
|
|
358
370
|
.btn-w-m {
|
|
359
|
-
min-width: 120px;
|
|
371
|
+
min-width: 120px;
|
|
360
372
|
}
|
|
361
373
|
|
|
362
374
|
.btn-primary.btn-outline {
|
|
363
|
-
color: var(--tc-primary);
|
|
375
|
+
color: var(--tc-primary);
|
|
364
376
|
}
|
|
365
377
|
|
|
366
378
|
.btn-success.btn-outline {
|
|
367
|
-
color: var(--tc-complete);
|
|
379
|
+
color: var(--tc-complete);
|
|
368
380
|
}
|
|
369
381
|
|
|
370
382
|
.btn-info.btn-outline {
|
|
371
|
-
color: var(--tc-primary);
|
|
383
|
+
color: var(--tc-primary);
|
|
372
384
|
}
|
|
373
385
|
|
|
374
386
|
.btn-warning.btn-outline {
|
|
375
|
-
color: var(--tc-warning);
|
|
387
|
+
color: var(--tc-warning);
|
|
376
388
|
}
|
|
377
389
|
|
|
378
390
|
.btn-danger.btn-outline {
|
|
379
|
-
color: var(--tc-danger);
|
|
391
|
+
color: var(--tc-danger);
|
|
380
392
|
}
|
|
381
393
|
|
|
382
394
|
.btn-primary.btn-outline:hover,
|
|
@@ -384,42 +396,42 @@ color: var(--tc-danger);
|
|
|
384
396
|
.btn-info.btn-outline:hover,
|
|
385
397
|
.btn-warning.btn-outline:hover,
|
|
386
398
|
.btn-danger.btn-outline:hover {
|
|
387
|
-
color: var(--white);
|
|
399
|
+
color: var(--white);
|
|
388
400
|
}
|
|
389
401
|
|
|
390
402
|
.btn {
|
|
391
403
|
|
|
392
|
-
&.active,
|
|
393
|
-
&:active {
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
}
|
|
404
|
+
&.active,
|
|
405
|
+
&:active {
|
|
406
|
+
background-image: none;
|
|
407
|
+
outline: 0;
|
|
408
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
409
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
410
|
+
}
|
|
399
411
|
}
|
|
400
412
|
|
|
401
413
|
.btn-primary {
|
|
402
|
-
font-size: 12px;
|
|
403
|
-
color: var(--white);
|
|
404
|
-
background-color: var(--tc-primary)!important;
|
|
405
|
-
border-color: var(--tc-primary)!important;
|
|
406
|
-
padding: 10px 20px;
|
|
407
|
-
border-radius: 20px;
|
|
408
|
-
|
|
409
|
-
&:hover,
|
|
410
|
-
&:focus,
|
|
411
|
-
&.focus {
|
|
412
|
-
background-color: var(--tc-primary)2!important;
|
|
413
|
-
border-color: var(--tc-primary)2!important;
|
|
414
|
-
color: var(--white) !important;
|
|
415
|
-
}
|
|
414
|
+
font-size: 12px;
|
|
415
|
+
color: var(--white);
|
|
416
|
+
background-color: var(--tc-primary)!important;
|
|
417
|
+
border-color: var(--tc-primary)!important;
|
|
418
|
+
padding: 10px 20px;
|
|
419
|
+
border-radius: 20px;
|
|
416
420
|
|
|
417
|
-
|
|
418
|
-
&:
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
421
|
+
&:hover,
|
|
422
|
+
&:focus,
|
|
423
|
+
&.focus {
|
|
424
|
+
background-color: var(--tc-primary)2!important;
|
|
425
|
+
border-color: var(--tc-primary)2!important;
|
|
426
|
+
color: var(--white) !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
&.disabled,
|
|
430
|
+
&:disabled {
|
|
431
|
+
color: var(--tc-gray-400);
|
|
432
|
+
background-color: var(--tc-gray-500);
|
|
433
|
+
border-color: var(--tc-gray-500);
|
|
434
|
+
}
|
|
423
435
|
}
|
|
424
436
|
|
|
425
437
|
|
|
@@ -427,62 +439,62 @@ border-radius: 20px;
|
|
|
427
439
|
.btn-primary:not(:disabled):not(.disabled):active,
|
|
428
440
|
.btn-primary:not(:disabled):not(.disabled).active,
|
|
429
441
|
.show > .btn-primary.dropdown-toggle {
|
|
430
|
-
color: var(--white);
|
|
431
|
-
background-color: #18a689;
|
|
432
|
-
border-color: #18a689;
|
|
442
|
+
color: var(--white);
|
|
443
|
+
background-color: #18a689;
|
|
444
|
+
border-color: #18a689;
|
|
433
445
|
}
|
|
434
446
|
|
|
435
447
|
.btn-primary:not(:disabled):not(.disabled):active:focus,
|
|
436
448
|
.btn-primary:not(:disabled):not(.disabled).active:focus,
|
|
437
449
|
.show > .btn-primary.dropdown-toggle:focus {
|
|
438
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
439
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
450
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
451
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
440
452
|
}
|
|
441
453
|
|
|
442
454
|
.btn-primary.btn-icon i {
|
|
443
|
-
margin: 0 10px 0 0;
|
|
455
|
+
margin: 0 10px 0 0;
|
|
444
456
|
}
|
|
445
457
|
|
|
446
458
|
.btn-success {
|
|
447
|
-
color: var(--white);
|
|
448
|
-
background-color: var(--tc-primary);
|
|
449
|
-
border-color: var(--tc-primary);
|
|
450
|
-
|
|
451
|
-
&:hover,
|
|
452
|
-
&:focus,
|
|
453
|
-
&.focus {
|
|
454
459
|
color: var(--white);
|
|
455
460
|
background-color: var(--tc-primary);
|
|
456
461
|
border-color: var(--tc-primary);
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
}
|
|
462
|
+
|
|
463
|
+
&:hover,
|
|
464
|
+
&:focus,
|
|
465
|
+
&.focus {
|
|
466
|
+
color: var(--white);
|
|
467
|
+
background-color: var(--tc-primary);
|
|
468
|
+
border-color: var(--tc-primary);
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
&.disabled,
|
|
472
|
+
&:disabled {
|
|
473
|
+
color: var(--white);
|
|
474
|
+
background-color: #1a7bb9;
|
|
475
|
+
border-color: #1a7bb9;
|
|
476
|
+
}
|
|
465
477
|
}
|
|
466
478
|
|
|
467
479
|
.btn-success:not(:disabled):not(.disabled):active,
|
|
468
480
|
.btn-success:not(:disabled):not(.disabled).active,
|
|
469
481
|
.show > .btn-success.dropdown-toggle {
|
|
470
|
-
color: var(--white);
|
|
471
|
-
background-color: var(--tc-primary);
|
|
472
|
-
border-color: var(--tc-primary);
|
|
482
|
+
color: var(--white);
|
|
483
|
+
background-color: var(--tc-primary);
|
|
484
|
+
border-color: var(--tc-primary);
|
|
473
485
|
}
|
|
474
486
|
|
|
475
487
|
.btn-success:not(:disabled):not(.disabled):active:focus,
|
|
476
488
|
.btn-success:not(:disabled):not(.disabled).active:focus,
|
|
477
489
|
.show > .btn-success.dropdown-toggle:focus {
|
|
478
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
479
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
490
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
491
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
480
492
|
}
|
|
481
493
|
|
|
482
494
|
.btn-info {
|
|
483
|
-
color: var(--white);
|
|
484
|
-
background-color: #23c6c8;
|
|
485
|
-
border-color: #23c6c8;
|
|
495
|
+
color: var(--white);
|
|
496
|
+
background-color: #23c6c8;
|
|
497
|
+
border-color: #23c6c8;
|
|
486
498
|
}
|
|
487
499
|
|
|
488
500
|
.btn-info:hover,
|
|
@@ -492,12 +504,12 @@ color: var(--white);
|
|
|
492
504
|
background-color: #21b9bb;
|
|
493
505
|
border-color: #21b9bb;
|
|
494
506
|
|
|
495
|
-
&.disabled,
|
|
496
|
-
&:disabled {
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
}
|
|
507
|
+
&.disabled,
|
|
508
|
+
&:disabled {
|
|
509
|
+
color: var(--white);
|
|
510
|
+
background-color: #21b9bb;
|
|
511
|
+
border-color: #21b9bb;
|
|
512
|
+
}
|
|
501
513
|
}
|
|
502
514
|
|
|
503
515
|
.btn-info:not(:disabled):not(.disabled):active,
|
|
@@ -516,49 +528,49 @@ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
|
516
528
|
}
|
|
517
529
|
|
|
518
530
|
.btn-default {
|
|
519
|
-
color: inherit;
|
|
520
|
-
background: white;
|
|
521
|
-
border: 1px solid var(--tc-gray-300);
|
|
522
|
-
font-size: 12px;
|
|
523
|
-
|
|
524
|
-
&:hover,
|
|
525
|
-
&:focus,
|
|
526
|
-
&:active,
|
|
527
|
-
&.active,
|
|
528
|
-
&:active:focus,
|
|
529
|
-
&:active:hover,
|
|
530
|
-
&.active:hover {
|
|
531
531
|
color: inherit;
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
&:active,
|
|
536
|
-
&.active {
|
|
537
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
538
|
-
}
|
|
532
|
+
background: white;
|
|
533
|
+
border: 1px solid var(--tc-gray-300);
|
|
534
|
+
font-size: 12px;
|
|
539
535
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
&.
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
536
|
+
&:hover,
|
|
537
|
+
&:focus,
|
|
538
|
+
&:active,
|
|
539
|
+
&.active,
|
|
540
|
+
&:active:focus,
|
|
541
|
+
&:active:hover,
|
|
542
|
+
&.active:hover {
|
|
543
|
+
color: inherit;
|
|
544
|
+
border: 1px solid #d2d2d2;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
&:active,
|
|
548
|
+
&.active {
|
|
549
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
&.disabled,
|
|
553
|
+
&.disabled:hover,
|
|
554
|
+
&.disabled:focus,
|
|
555
|
+
&.disabled:active,
|
|
556
|
+
&.disabled.active,
|
|
557
|
+
&[disabled],
|
|
558
|
+
&[disabled]:hover,
|
|
559
|
+
&[disabled]:focus,
|
|
560
|
+
&[disabled]:active,
|
|
561
|
+
&.active[disabled] {
|
|
562
|
+
color: #cacaca;
|
|
563
|
+
}
|
|
552
564
|
}
|
|
553
565
|
|
|
554
566
|
.open .dropdown-toggle.btn-default,
|
|
555
567
|
.btn-default.active:focus {
|
|
556
|
-
color: inherit;
|
|
557
|
-
border: 1px solid #d2d2d2;
|
|
568
|
+
color: inherit;
|
|
569
|
+
border: 1px solid #d2d2d2;
|
|
558
570
|
}
|
|
559
571
|
|
|
560
572
|
.open .dropdown-toggle.btn-default {
|
|
561
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
573
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
562
574
|
}
|
|
563
575
|
|
|
564
576
|
|
|
@@ -567,336 +579,336 @@ fieldset[disabled] .btn-default:hover,
|
|
|
567
579
|
fieldset[disabled] .btn-default:focus,
|
|
568
580
|
fieldset[disabled] .btn-default:active,
|
|
569
581
|
fieldset[disabled] .btn-default.active {
|
|
570
|
-
color: #cacaca;
|
|
582
|
+
color: #cacaca;
|
|
571
583
|
}
|
|
572
584
|
|
|
573
585
|
.btn-warning {
|
|
574
|
-
color: var(--white);
|
|
575
|
-
background-color: #f8ac59;
|
|
576
|
-
border-color: #f8ac59;
|
|
577
|
-
|
|
578
|
-
&:hover,
|
|
579
|
-
&:focus,
|
|
580
|
-
&.focus {
|
|
581
586
|
color: var(--white);
|
|
582
|
-
background-color: #
|
|
583
|
-
border-color: #
|
|
587
|
+
background-color: #f8ac59;
|
|
588
|
+
border-color: #f8ac59;
|
|
589
|
+
|
|
590
|
+
&:hover,
|
|
591
|
+
&:focus,
|
|
592
|
+
&.focus {
|
|
593
|
+
color: var(--white);
|
|
594
|
+
background-color: #f7a54a;
|
|
595
|
+
border-color: #f7a54a;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
&.disabled,
|
|
599
|
+
&:disabled {
|
|
600
|
+
color: var(--white);
|
|
601
|
+
background-color: #f7a54a;
|
|
602
|
+
border-color: #f7a54a;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
&:not(:disabled):not(.disabled):active,
|
|
606
|
+
&:not(:disabled):not(.disabled).active {
|
|
607
|
+
color: var(--white);
|
|
608
|
+
background-color: #f7a54a;
|
|
609
|
+
border-color: #f7a54a;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
&:not(:disabled):not(.disabled):active:focus,
|
|
613
|
+
&:not(:disabled):not(.disabled).active:focus {
|
|
614
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
615
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
616
|
+
}
|
|
584
617
|
}
|
|
585
618
|
|
|
586
|
-
|
|
587
|
-
&:disabled {
|
|
588
|
-
color: var(--white);
|
|
589
|
-
background-color: #f7a54a;
|
|
590
|
-
border-color: #f7a54a;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
&:not(:disabled):not(.disabled):active,
|
|
594
|
-
&:not(:disabled):not(.disabled).active {
|
|
619
|
+
.show > .btn-warning.dropdown-toggle {
|
|
595
620
|
color: var(--white);
|
|
596
621
|
background-color: #f7a54a;
|
|
597
622
|
border-color: #f7a54a;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
.show > .btn-warning.dropdown-toggle {
|
|
608
|
-
color: var(--white);
|
|
609
|
-
background-color: #f7a54a;
|
|
610
|
-
border-color: #f7a54a;
|
|
611
|
-
|
|
612
|
-
&:focus {
|
|
613
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
614
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
615
|
-
}
|
|
623
|
+
|
|
624
|
+
&:focus {
|
|
625
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
626
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
627
|
+
}
|
|
616
628
|
}
|
|
617
629
|
|
|
618
630
|
.btn-danger {
|
|
619
|
-
color: var(--white);
|
|
620
|
-
background-color: #ed5565;
|
|
621
|
-
border-color: #ed5565;
|
|
622
|
-
&:hover,
|
|
623
|
-
&:focus,
|
|
624
|
-
&.focus {
|
|
625
631
|
color: var(--white);
|
|
626
|
-
background-color: #
|
|
627
|
-
border-color: #
|
|
632
|
+
background-color: #ed5565;
|
|
633
|
+
border-color: #ed5565;
|
|
634
|
+
&:hover,
|
|
635
|
+
&:focus,
|
|
636
|
+
&.focus {
|
|
637
|
+
color: var(--white);
|
|
638
|
+
background-color: #ec4758;
|
|
639
|
+
border-color: #ec4758;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
&.disabled,
|
|
643
|
+
&:disabled {
|
|
644
|
+
color: var(--white);
|
|
645
|
+
background-color: #ec4758;
|
|
646
|
+
border-color: #ec4758;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
&:not(:disabled):not(.disabled):active,
|
|
650
|
+
&:not(:disabled):not(.disabled).active {
|
|
651
|
+
color: var(--white);
|
|
652
|
+
background-color: #ec4758;
|
|
653
|
+
border-color: #ec4758;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
&:not(:disabled):not(.disabled):active:focus,
|
|
657
|
+
&:not(:disabled):not(.disabled).active:focus {
|
|
658
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
659
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
660
|
+
}
|
|
628
661
|
}
|
|
629
662
|
|
|
630
|
-
|
|
631
|
-
&:disabled {
|
|
663
|
+
.show > .btn-danger.dropdown-toggle {
|
|
632
664
|
color: var(--white);
|
|
633
665
|
background-color: #ec4758;
|
|
634
666
|
border-color: #ec4758;
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
background-color: #ec4758;
|
|
641
|
-
border-color: #ec4758;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
&:not(:disabled):not(.disabled):active:focus,
|
|
645
|
-
&:not(:disabled):not(.disabled).active:focus {
|
|
646
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
647
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
648
|
-
}
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.show > .btn-danger.dropdown-toggle {
|
|
652
|
-
color: var(--white);
|
|
653
|
-
background-color: #ec4758;
|
|
654
|
-
border-color: #ec4758;
|
|
655
|
-
|
|
656
|
-
&:focus {
|
|
657
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
658
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
659
|
-
}
|
|
667
|
+
|
|
668
|
+
&:focus {
|
|
669
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
670
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
671
|
+
}
|
|
660
672
|
}
|
|
661
673
|
|
|
662
674
|
|
|
663
675
|
.btn-link {
|
|
664
|
-
color: inherit;
|
|
676
|
+
color: inherit;
|
|
677
|
+
|
|
678
|
+
&:hover,
|
|
679
|
+
&:focus,
|
|
680
|
+
&:active,
|
|
681
|
+
&.active {
|
|
682
|
+
color: var(--tc-primary);
|
|
683
|
+
text-decoration: none;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
&:active,
|
|
687
|
+
&.active {
|
|
688
|
+
background-image: none;
|
|
689
|
+
box-shadow: none;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
&.disabled,
|
|
693
|
+
&.disabled:hover,
|
|
694
|
+
&.disabled:focus,
|
|
695
|
+
&.disabled:active,
|
|
696
|
+
&.disabled.active,
|
|
697
|
+
&[disabled],
|
|
698
|
+
&[disabled]:hover,
|
|
699
|
+
&[disabled]:focus,
|
|
700
|
+
&[disabled]:active,
|
|
701
|
+
&.active[disabled] {
|
|
702
|
+
color: #cacaca;
|
|
703
|
+
}
|
|
704
|
+
}
|
|
665
705
|
|
|
666
|
-
|
|
667
|
-
&:focus,
|
|
668
|
-
&:active,
|
|
669
|
-
&.active {
|
|
706
|
+
.open .dropdown-toggle.btn-link {
|
|
670
707
|
color: var(--tc-primary);
|
|
671
708
|
text-decoration: none;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
&:active,
|
|
675
|
-
&.active {
|
|
676
709
|
background-image: none;
|
|
677
710
|
box-shadow: none;
|
|
678
711
|
}
|
|
679
712
|
|
|
680
|
-
&.disabled,
|
|
681
|
-
&.disabled:hover,
|
|
682
|
-
&.disabled:focus,
|
|
683
|
-
&.disabled:active,
|
|
684
|
-
&.disabled.active,
|
|
685
|
-
&[disabled],
|
|
686
|
-
&[disabled]:hover,
|
|
687
|
-
&[disabled]:focus,
|
|
688
|
-
&[disabled]:active,
|
|
689
|
-
&.active[disabled] {
|
|
690
|
-
color: #cacaca;
|
|
691
|
-
}
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.open .dropdown-toggle.btn-link {
|
|
695
|
-
color: var(--tc-primary);
|
|
696
|
-
text-decoration: none;
|
|
697
|
-
background-image: none;
|
|
698
|
-
box-shadow: none;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
713
|
fieldset[disabled] .btn-link,
|
|
702
714
|
fieldset[disabled] .btn-link:hover,
|
|
703
715
|
fieldset[disabled] .btn-link:focus,
|
|
704
716
|
fieldset[disabled] .btn-link:active,
|
|
705
717
|
fieldset[disabled] .btn-link.active {
|
|
706
|
-
color: #cacaca;
|
|
718
|
+
color: #cacaca;
|
|
707
719
|
}
|
|
708
720
|
|
|
709
721
|
.btn-white {
|
|
710
|
-
color: var(--tc-gray-500);
|
|
711
|
-
background: white;
|
|
712
|
-
border: 1px solid #e7eaec;
|
|
713
|
-
padding: 10px 20px;
|
|
714
|
-
border-radius: 30px;
|
|
715
|
-
|
|
716
|
-
&:hover,
|
|
717
|
-
&:focus,
|
|
718
|
-
&:active,
|
|
719
|
-
&.active,
|
|
720
|
-
&:active:focus,
|
|
721
|
-
&:active:hover,
|
|
722
|
-
&.active:hover,
|
|
723
|
-
&.active:focus {
|
|
722
|
+
color: var(--tc-gray-500);
|
|
723
|
+
background: white;
|
|
724
|
+
border: 1px solid #e7eaec;
|
|
725
|
+
padding: 10px 20px;
|
|
726
|
+
border-radius: 30px;
|
|
727
|
+
|
|
728
|
+
&:hover,
|
|
729
|
+
&:focus,
|
|
730
|
+
&:active,
|
|
731
|
+
&.active,
|
|
732
|
+
&:active:focus,
|
|
733
|
+
&:active:hover,
|
|
734
|
+
&.active:hover,
|
|
735
|
+
&.active:focus {
|
|
736
|
+
color: var(--white);
|
|
737
|
+
border: 1px solid var(--tc-primary);
|
|
738
|
+
background: var(--tc-primary);
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
&:active,
|
|
742
|
+
&.active {
|
|
743
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
&:active,
|
|
747
|
+
&.active{
|
|
748
|
+
background-image: none;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
&.disabled,
|
|
752
|
+
&.disabled:hover,
|
|
753
|
+
&.disabled:focus,
|
|
754
|
+
&.disabled:active,
|
|
755
|
+
&.disabled.active,
|
|
756
|
+
&[disabled],
|
|
757
|
+
&[disabled]:hover,
|
|
758
|
+
&[disabled]:focus,
|
|
759
|
+
&[disabled]:active,
|
|
760
|
+
&.active[disabled]{
|
|
761
|
+
color: #cacaca;
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.open .dropdown-toggle.btn-white {
|
|
724
766
|
color: var(--white);
|
|
725
767
|
border: 1px solid var(--tc-primary);
|
|
726
768
|
background: var(--tc-primary);
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
&:active,
|
|
730
|
-
&.active {
|
|
731
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
&:active,
|
|
735
|
-
&.active{
|
|
736
769
|
background-image: none;
|
|
737
770
|
}
|
|
738
771
|
|
|
739
|
-
&.disabled,
|
|
740
|
-
&.disabled:hover,
|
|
741
|
-
&.disabled:focus,
|
|
742
|
-
&.disabled:active,
|
|
743
|
-
&.disabled.active,
|
|
744
|
-
&[disabled],
|
|
745
|
-
&[disabled]:hover,
|
|
746
|
-
&[disabled]:focus,
|
|
747
|
-
&[disabled]:active,
|
|
748
|
-
&.active[disabled]{
|
|
749
|
-
color: #cacaca;
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.open .dropdown-toggle.btn-white {
|
|
754
|
-
color: var(--white);
|
|
755
|
-
border: 1px solid var(--tc-primary);
|
|
756
|
-
background: var(--tc-primary);
|
|
757
|
-
background-image: none;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
772
|
|
|
761
773
|
fieldset[disabled] .btn-white,
|
|
762
774
|
fieldset[disabled] .btn-white:hover,
|
|
763
775
|
fieldset[disabled] .btn-white:focus,
|
|
764
776
|
fieldset[disabled] .btn-white:active,
|
|
765
777
|
fieldset[disabled] .btn-white.active {
|
|
766
|
-
color: #cacaca;
|
|
778
|
+
color: #cacaca;
|
|
767
779
|
}
|
|
768
780
|
|
|
769
781
|
.btn-outline {
|
|
770
|
-
color: inherit;
|
|
771
|
-
background-color: transparent;
|
|
772
|
-
transition: all .5s;
|
|
782
|
+
color: inherit;
|
|
783
|
+
background-color: transparent;
|
|
784
|
+
transition: all .5s;
|
|
773
785
|
}
|
|
774
786
|
|
|
775
787
|
.btn-rounded {
|
|
776
|
-
border-radius: 50px;
|
|
788
|
+
border-radius: 50px;
|
|
777
789
|
}
|
|
778
790
|
|
|
779
791
|
.btn-large-dim {
|
|
780
|
-
width: 90px;
|
|
781
|
-
height: 90px;
|
|
782
|
-
font-size: 42px;
|
|
792
|
+
width: 90px;
|
|
793
|
+
height: 90px;
|
|
794
|
+
font-size: 42px;
|
|
783
795
|
}
|
|
784
796
|
|
|
785
797
|
button.dim {
|
|
786
|
-
display: inline-block;
|
|
787
|
-
text-decoration: none;
|
|
788
|
-
text-transform: uppercase;
|
|
789
|
-
text-align: center;
|
|
790
|
-
padding-top: 6px;
|
|
791
|
-
margin-right: 10px;
|
|
792
|
-
position: relative;
|
|
793
|
-
cursor: pointer;
|
|
794
|
-
border-radius: 5px;
|
|
795
|
-
font-weight: 600;
|
|
796
|
-
margin-bottom: 20px !important;
|
|
797
|
-
|
|
798
|
-
&:active {
|
|
799
|
-
|
|
800
|
-
}
|
|
798
|
+
display: inline-block;
|
|
799
|
+
text-decoration: none;
|
|
800
|
+
text-transform: uppercase;
|
|
801
|
+
text-align: center;
|
|
802
|
+
padding-top: 6px;
|
|
803
|
+
margin-right: 10px;
|
|
804
|
+
position: relative;
|
|
805
|
+
cursor: pointer;
|
|
806
|
+
border-radius: 5px;
|
|
807
|
+
font-weight: 600;
|
|
808
|
+
margin-bottom: 20px !important;
|
|
809
|
+
|
|
810
|
+
&:active {
|
|
811
|
+
top: 3px;
|
|
812
|
+
}
|
|
801
813
|
}
|
|
802
814
|
|
|
803
815
|
button.btn-primary.dim {
|
|
804
|
-
box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
|
|
805
|
-
|
|
806
|
-
&:active {
|
|
807
|
-
|
|
808
|
-
}
|
|
816
|
+
box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
|
|
817
|
+
|
|
818
|
+
&:active {
|
|
819
|
+
box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
|
|
820
|
+
}
|
|
809
821
|
}
|
|
810
822
|
|
|
811
823
|
button.btn-default.dim {
|
|
812
|
-
box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
|
|
813
|
-
|
|
814
|
-
&:active {
|
|
815
|
-
|
|
816
|
-
}
|
|
824
|
+
box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
|
|
825
|
+
|
|
826
|
+
&:active {
|
|
827
|
+
box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
|
|
828
|
+
}
|
|
817
829
|
}
|
|
818
830
|
|
|
819
831
|
|
|
820
832
|
button.btn-warning.dim {
|
|
821
|
-
box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
|
|
822
|
-
|
|
823
|
-
&:active {
|
|
824
|
-
|
|
825
|
-
}
|
|
833
|
+
box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
|
|
834
|
+
|
|
835
|
+
&:active {
|
|
836
|
+
box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
|
|
837
|
+
}
|
|
826
838
|
}
|
|
827
839
|
|
|
828
840
|
button.btn-info.dim {
|
|
829
|
-
box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
|
|
830
|
-
|
|
831
|
-
&:active {
|
|
832
|
-
|
|
833
|
-
}
|
|
841
|
+
box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
|
|
842
|
+
|
|
843
|
+
&:active {
|
|
844
|
+
box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
|
|
845
|
+
}
|
|
834
846
|
}
|
|
835
847
|
|
|
836
848
|
button.btn-success.dim {
|
|
837
|
-
box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
|
|
838
|
-
|
|
839
|
-
&:active {
|
|
840
|
-
|
|
841
|
-
}
|
|
849
|
+
box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
|
|
850
|
+
|
|
851
|
+
&:active {
|
|
852
|
+
box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
|
|
853
|
+
}
|
|
842
854
|
}
|
|
843
855
|
|
|
844
856
|
|
|
845
857
|
button.btn-danger.dim {
|
|
846
|
-
box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
|
|
847
|
-
|
|
848
|
-
&:active {
|
|
849
|
-
|
|
850
|
-
}
|
|
858
|
+
box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
|
|
859
|
+
|
|
860
|
+
&:active {
|
|
861
|
+
box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
|
|
862
|
+
}
|
|
851
863
|
}
|
|
852
864
|
|
|
853
865
|
|
|
854
866
|
button.dim {
|
|
867
|
+
|
|
868
|
+
&:before {
|
|
869
|
+
font-size: 50px;
|
|
870
|
+
line-height: 1em;
|
|
871
|
+
font-weight: normal;
|
|
872
|
+
color: var(--white);
|
|
873
|
+
display: block;
|
|
874
|
+
padding-top: 10px;
|
|
875
|
+
}
|
|
855
876
|
|
|
856
|
-
&:before {
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
color: var(--white);
|
|
861
|
-
display: block;
|
|
862
|
-
padding-top: 10px;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
&:active:before {
|
|
866
|
-
top: 7px;
|
|
867
|
-
font-size: 50px;
|
|
868
|
-
}
|
|
877
|
+
&:active:before {
|
|
878
|
+
top: 7px;
|
|
879
|
+
font-size: 50px;
|
|
880
|
+
}
|
|
869
881
|
}
|
|
870
882
|
|
|
871
883
|
|
|
872
884
|
.btn:focus {
|
|
873
|
-
outline: none !important;
|
|
885
|
+
outline: none !important;
|
|
874
886
|
}
|
|
875
887
|
|
|
876
888
|
.btn-circle {
|
|
877
|
-
width: 30px;
|
|
878
|
-
height: 30px;
|
|
879
|
-
padding: 6px 0;
|
|
880
|
-
border-radius: 10px;
|
|
881
|
-
text-align: center;
|
|
882
|
-
font-size: 12px;
|
|
883
|
-
line-height: 1.42;
|
|
889
|
+
width: 30px;
|
|
890
|
+
height: 30px;
|
|
891
|
+
padding: 6px 0;
|
|
892
|
+
border-radius: 10px;
|
|
893
|
+
text-align: center;
|
|
894
|
+
font-size: 12px;
|
|
895
|
+
line-height: 1.42;
|
|
884
896
|
}
|
|
885
897
|
|
|
886
898
|
.btn-circle.btn-lg {
|
|
887
|
-
width: 50px;
|
|
888
|
-
height: 50px;
|
|
889
|
-
padding: 10px 16px;
|
|
890
|
-
border-radius: 25px;
|
|
891
|
-
font-size: 18px;
|
|
892
|
-
line-height: 1.33;
|
|
899
|
+
width: 50px;
|
|
900
|
+
height: 50px;
|
|
901
|
+
padding: 10px 16px;
|
|
902
|
+
border-radius: 25px;
|
|
903
|
+
font-size: 18px;
|
|
904
|
+
line-height: 1.33;
|
|
893
905
|
}
|
|
894
906
|
|
|
895
907
|
.btn-circle.btn-xl {
|
|
896
|
-
width: 70px;
|
|
897
|
-
height: 70px;
|
|
898
|
-
padding: 10px 16px;
|
|
899
|
-
border-radius: 35px;
|
|
900
|
-
font-size: 24px;
|
|
901
|
-
line-height: 1.33;
|
|
908
|
+
width: 70px;
|
|
909
|
+
height: 70px;
|
|
910
|
+
padding: 10px 16px;
|
|
911
|
+
border-radius: 35px;
|
|
912
|
+
font-size: 24px;
|
|
913
|
+
line-height: 1.33;
|
|
902
914
|
}
|