aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css
blob: 5d52b5c5097bbb8a02ffc71415635a301feedf86 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
 * Copyright (c) 2017 ZTE Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     ZTE - initial API and implementation and/or initial documentation
 */

body, html {
    height: 100%;
    font-size: 14px;
    font-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,Segoe UI,Helvetica,Arial,san-serif !important;
}

.plx-btn{
    min-width: 20px;
}

label{
    height: 32px;
    line-height: 32px;
    margin: 0;
}

select{
    height: 32px;
    line-height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
}

select:focus{
    border-color: #00abff;
}

.card{
    border: none;
}

.card-header{
    background-color: transparent;
    padding: 10px;
    border-bottom: none;
}

.card-body{
    padding: 10px 10px 0 10px;
}

.dropdown-menu{
    display: block !important;
    /* font-size: 12px; */
}

.caret {
    border-top: 6px dashed;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
}

.selected-container-text{
    background-color: #fff;
    padding-left: 14px !important;
    line-height: 20px;
}

.selected-container-text:hover{
    background-color: #fff;
    cursor: default;
    border-color: #ddd;
}

.selected-item-text{
    color: #333;
    margin: 0 !important;
    font-size: 12px !important;
}

textarea.form-control {
    height: auto;
}

body .ui-radiobutton .ui-radiobutton-box .ui-radiobutton-icon{
    top: 1px;
}

.ui-fluid .ui-tree{
    width: fit-content;
    min-width: 100%;
}

.ui-tree-toggler{
    height: 32px;
    line-height: 32px;
    margin-bottom: 1rem;
}

.ui-tree-container{
    overflow: auto;
}

.ui-widget-content{
    background: none;
}


.dropdown{
    display: inline-block;
    vertical-align: bottom;
}

.selected-container-text{
    width: 160px;
    height: 32px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/*IE滚动条设置*/
body{
    /*三角箭头的颜色*/
    scrollbar-arrow-color: #00abff;
    /*滚动条滑块按钮的颜色*/
    scrollbar-face-color: #00abff;
    /*滚动条整体颜色*/
    scrollbar-highlight-color: transparent;
    /*滚动条阴影*/
    scrollbar-shadow-color: #000;
    /*滚动条轨道颜色*/
    scrollbar-track-color: transparent;
}

/*Chrome滚动条设置*/
/*滚动条整体部分,必须要设置*/
::-webkit-scrollbar
{
	width: 6px;
    height: 6px;
	background-color: transparent;
	margin-right: 3px;
}

/*滚动条的轨道*/
::-webkit-scrollbar-track
{
	border-radius: 3px;
	background-color: transparent;
}

/*滚动条的滑块按钮*/
::-webkit-scrollbar-thumb{
    border-radius: 3px;
    background-color: #00abff;
}

/*滚动条的上下两端的按钮*/
::-webkit-scrollbar-button{
    width: 0;
    height: 0;
}