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
| .pam-select.el-select {
| width: 100%;
|
| .el-input {
|
| &__inner {
| padding-left: 20px;
| height: 46px;
| border: 1px solid #707070;
| border-radius: 5px;
| font-size: 20px;
| }
| &__icon {
| color: #ED1B2E;
| font-size: 25px;
| transform: none;
| }
| }
| .is-focus {
| .el-input__inner {
| border-color: #707070;
| }
| }
| .el-icon-arrow-up {
| font-family: 'icomoon' !important;
| speak: never;
| font-style: normal;
| font-weight: normal;
| font-variant: normal;
| text-transform: none;
| line-height: 1;
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| &:before {
| content: "\e910";
| }
| }
| }
|
| .el-select-dropdown__item {
| padding: 0 10px;
| }
|
|