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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.app-icon-picker {
.el-input {
line-height: 32px;
}
.el-input__inner {
height: 32px;
width: 100%;
padding-left: 8px;
}
.el-input__suffix {
height: 32px;
line-height: 32px;
.el-input__icon {
height: 32px;
line-height: 32px;
}
}
// 禁用状态
.is-disabled {
.el-input__inner {
background-color: rgba(243, 243, 243, 0.877);
border-color: rgb(204, 204, 204);
color: rgb(204, 204, 204) ;
cursor: not-allowed;
}
.el-input-group__append {
background-color: transparent;
color: rgb(204, 204, 204);
.el-icon-arrow-down::before {
color: #CCCDD3;
}
}
.el-icon-arrow-down {
cursor: not-allowed;
}
}
}
.app-icon-picker__box {
height: 60vh;
min-height: 60vh;
.el-input__inner {
height: 32px;
width: 250px;
float: right;
}
.el-menu-demo {
.el-menu-item {
height: 40px;
line-height: 40px;
}
}
.selector-content__icon-list {
width: 100%;
height: 55vh;
padding: 15px 0;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
overflow-y: auto;
.selector-content__icon-item {
width: auto;
height: auto;
cursor: pointer;
}
.icon-item__box {
width: 100px;
height: 83px;
min-width: 100px;
min-height: 67px;
padding: 10px 20px 0;
text-align: center;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
justify-content: center;
transition: all .2s;
}
.icon-item__box:hover {
transform: scale(1.5);
}
.is-active {
color: #3880FF;
}
.item-icon {
width: 100%;
height: 20px;
line-height: 20px;
font-size: 20px;
display: inline-block;
visibility: visible;
padding: 0;
margin: 0;
}
.icon-tip {
width: 100%;
height: calc(100% - 25px);
display: block;
font-size: 12px;
line-height: 12px;
margin: 5px 0 0 0;
}
}
}
// 当屏幕小于1450px时
@media screen and (max-width: 1450px) {
.el-menu-demo {
.el-menu-item {
width: (90% / 10) ;
height: 40px;
line-height: 40px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}