1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| /**
| * CFilterInput
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-filter-input {
| &.off .input {
| opacity: 0.5;
| }
| &.type-bar {
| display: flex;
| height: 90px;
| align-items: center;
| .label {
| line-height: 90px;
| padding-right: 12px;
| }
| .input {
| flex: 1;
| height: 90px;
| line-height: 90px;
| color: #6190e8;
| }
| }
| &.type-item {
| .label {
| line-height: 40px;
| }
| .input {
| height: 100px;
| line-height: 100px;
| }
| }
| }
|
|