aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/styles.css
blob: 174f7b496d0ade4d0b458c4155cda910d3592665 (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
/**
 * 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-family: PingFang SC,Hiragino Sans GB,Microsoft YaHei,Segoe UI,Helvetica,Arial,san-serif !important;
}

.form-group .btn{
    min-width: 20px;
}

.form-control-label{
    line-height: 30px;
}

.card{
    border: none;
}

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

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

.dropdown-menu{
    display: block;
    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{
    margin-bottom: 1rem;
}

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

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

.selected-container-text{
    width: 160px;
}

/*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: 4px;
    height: 4px;
	background-color: transparent;
	margin-right: 2px;
}

/*���������*/
::-webkit-scrollbar-track
{
	border-radius: 2px;
	background-color: transparent;
}

/*�������Ļ��鰴ť*/
::-webkit-scrollbar-thumb{
    border-radius: 2px;
    background-color: #00abff;
}

/*���������������˵İ�ť*/
::-webkit-scrollbar-button{
    width: 0;
    height: 0;
}