懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
125
126
127
128
129
130
131
132
/** 隐藏原始elem */
.ew-tagsinput-hide {
    display: block !important;
    visibility: hidden;
    position: absolute;
    z-index: -1;
}
 
/** 标签输入框样式 */
div.tagsinput {
    border: 1px solid #e6e6e6;
    background: #FFF;
    padding: 5px 5px 0 5px;
    border-radius: 2px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
 
div.tagsinput:hover {
    border: 1px solid #ccc;
}
 
div.tagsinput span.tag {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    display: inline-block;
    padding: 0 5px 0 8px;
    background: #009688;
    color: #fff;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    cursor: default;
}
 
div.tagsinput span.tag a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}
 
div.tagsinput span.tag a .layui-icon {
    font-size: 12px;
    margin: 0;
}
 
div.tagsinput span.tag a .default-close-text {
    font-size: 16px;
    font-weight: normal;
}
 
div.tagsinput input {
    color: #000;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 5px;
    background: transparent;
    border: none;
    outline: none;
    width: 60px;
}
 
div.tagsinput div {
    display: inline-block;
}
 
div.tagsinput > div {
    position: relative;
}
 
.not_valid {
    background: #FBD8DB !important;
    color: #90111A !important;
}
 
/* 无边框的风格 */
.tagsinput.tagsinput-default, .tagsinput.tagsinput-default:hover {
    border: none;
}
 
.tagsinput.tagsinput-default span.tag {
    background: #FAFAFA !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px;
    color: #666;
    line-height: 24px;
}
 
.tagsinput.tagsinput-default span.tag a {
    color: #aaa;
}
 
.tagsinput.tagsinput-default input {
    border: 1px dashed #d9d9d9;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
}
 
.tagsinput.tagsinput-default input:focus {
    border: 1px solid #ccc;
    text-align: left;
}
 
/* 提示列表 */
.tagsinput-tip-list {
    position: absolute;
    width: max-content;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    border: 1px solid #d2d2d2;
    min-width: 100px;
    width: max-content;
    z-index: 999;
}
 
.tagsinput-tip-list li {
    font-size: 14px;
    color: #666;
    padding: 0 10px 0 10px;
    cursor: pointer;
    display: block;
    line-height: 30px;
}
 
.tagsinput-tip-list li:hover {
    background: #f2f2f2;
}