aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css')
-rw-r--r--deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css164
1 files changed, 164 insertions, 0 deletions
diff --git a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css
new file mode 100644
index 00000000..5d52b5c5
--- /dev/null
+++ b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/styles.css
@@ -0,0 +1,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;
+}