forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDropDownBox.css
More file actions
99 lines (87 loc) · 1.92 KB
/
DropDownBox.css
File metadata and controls
99 lines (87 loc) · 1.92 KB
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
/**下拉框组件样式**/
.component-dropdownbox--container {
position: relative;
width: 200px;
height: 58px;
margin-bottom: 16px;
}
.component-dropdownbox {
width: 192px;
height: 50px;
background: #FFFFFF;
margin: 0 auto;
padding: 8px 0 0 8px;
border: 1px solid #D9D9D9;
border-radius: 2px;
}
.component-dropdownbox:hover {
border: 1px solid #108EE9;
}
.component-dropdownbox__triangle-btn {
position: relative;
bottom: 46px;
left: 173px;
width: 10px;
height: 10px;
cursor: pointer;
}
.component-dropdownbox__triangle-btn > div {
width: 105%;
height: 100%;
}
.component-dropdownbox__content {
position: absolute !important;
top: 61px;
left: 0;
width: 184px;
/* height: 92px; */
background: #FFFFFF;
padding: 8px;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
border: 1px solid #D9D9D9;
border-radius: 2px;
z-index: 10001;
}
.component-dropdownbox__item {
width: 177px;
height: 42px;
margin-bottom: 8px;
cursor: pointer;
color: #595959;
}
.component-dropdownbox__content .component-dropdownbox__item:hover .component-dropdownbox__item__title {
color: #108EE9;
}
.component-dropdownbox__content .component-dropdownbox__item:hover .component-dropdownbox__item__remark {
color: #108EE9;
}
.component-dropdownbox__item__img div {
width: 48px;
height: 42px;
}
.component-dropdownbox__item__title {
position: relative;
bottom: 40px;
left: 57px;
width: 120px;
height: 16px;
font-size: 12px;
font-weight: bold;
color: #595959;
overflow: hidden;
}
.component-dropdownbox__item__remark {
position: relative;
bottom: 32px;
left: 57px;
width: 120px;
height: 16px;
font-size: 12px;
color: #919191;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.component-dropdownbox__content--chart {
display: none;
}