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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
| /**
| * filter select
| * @author Tevin
| */
|
| @import "../../common/sassMixin";
|
| .c-filter-select {
| .content {
| @include flexbox(flex, flex-start center);
| white-space: nowrap;
| .empty,
| .value {
| display: inline-block;
| vertical-align: middle;
| @include ellipsis();
| }
| .empty {
| color: #ccc;
| }
| .filled {
| color: #6190e8;
| }
| .at-icon {
| text-align: center;
| color: #666;
| }
| }
| &.type-bar {
| .content {
| height: 86px;
| .label {
| padding-right: 12px;
| color: #666;
| }
| .filled {
| letter-spacing: -2px;
| }
| .at-icon {
| padding-left: 4px;
| vertical-align: middle;
| }
| }
| }
| &.type-item {
| .label {
| color: #666;
| line-height: 40px;
| }
| .content {
| .empty,
| .filled {
| flex: 6;
| }
| .at-icon {
| flex: 1;
| }
| }
| }
| }
|
|