forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataFlow.css
More file actions
108 lines (94 loc) · 2.04 KB
/
DataFlow.css
File metadata and controls
108 lines (94 loc) · 2.04 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
100
101
102
103
104
105
106
107
108
/** dataFlow 数据流服务样式**/
.component-init-center {
text-align: center;
}
.component-dataflow__container {
line-height: 36px;
}
.component-dataflow__container div {
float: left;
min-width: 300px;
}
/*输入框*/
.component-input-default {
position: relative;
border: #D9D9D9 solid 0.2px;
background-color: #ffffff;
}
.component-input-default:hover {
border: #108FE9 solid 0.2px;
}
.component-input-default input[type='text'] {
margin: 2px;
font-family: MicrosoftYaHei;
font-size: 12px;
color: #919191;
height: 18px;
min-width: 292px;
line-height: 18px;
padding-left: 8px;
padding-right: 25px;
border: none !important;
outline: none !important;
}
/*组件输入框清除按钮*/
.component-dataflow__container .supermapol-icons-close:before {
content: "\e6ae";
}
.component-input-default input[type='text'] ~ span.supermapol-icons-close {
position: absolute;
right: 5px;
cursor: pointer;
color: #E9E9E9;
width: 20px;
height: 20px;
line-height: 20px;
top: 9px;
text-align: center;
z-index: 10;
}
/*组件按钮默认样式*/
.component-button-default {
position: relative;
margin: 0 5px;
padding: 0 10px;
height: 36px;
font-size: 16px;
color: #ffffff;
text-align: center;
letter-spacing: .75px;
line-height: 32px;
border-radius: 4px;
cursor: pointer;
background-color: #108EE9;
outline: none;
border: none;
}
.component-button-default:hover {
background-color: #38ADF5;
color: #ffffff;
border: none;
cursor: pointer;
}
/*复选框 todo 统一采用空间分析复选框样式*/
.component-checkbox-container {
margin: 10px auto;
}
.component-checkbox-default {
position: absolute;
margin-top: 1px;
height: 14px;
width: 14px;
}
.component-checkbox-default:hover {
cursor: pointer;
}
.component-label {
margin-left: 20px;
line-height: 16px;
font-size: 12px;
color: #919191;
}
.component-label-selected {
color: #595959 !important;
}