From 8bb0a518dd4d9450370582c4d4ac3ae1dba1466b Mon Sep 17 00:00:00 2001 From: litian <2804272236@qq.com> Date: 星期五, 25 四月 2025 15:28:18 +0800 Subject: [PATCH] 资源 --- src/assets/main.css | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 104 insertions(+), 6 deletions(-) diff --git a/src/assets/main.css b/src/assets/main.css index 702bb60..c90754c 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -1,5 +1,5 @@ @import './base.css'; - +@import './style/examination.less'; #parentApp { width: 100%; height: 100%; @@ -42,13 +42,13 @@ display: flex; justify-content: space-between; } -.settingBox.lineTypeBox { +.settingBox .lineTypeBox { width: 190px; padding: 0 !important; - } -.settingBox.lineTypeBox .typeItem { +.settingBox .lineTypeBox .typeItem { line-height: 16px !important; + cursor: pointer; } .settingBox .bgColor { display: flex; @@ -56,6 +56,7 @@ } .settingBox .bgColor .flex1 { flex: 1; + margin:0 5px; } .settingBox .bgColor .scribeItem { width: 30px; @@ -124,6 +125,9 @@ text-align: center; flex: 1; } +.popinnerBox .characters .active { + border: 1px solid #0093ff; +} .lineStyle .lineTypeBox { display: flex; justify-content: space-between; @@ -136,6 +140,7 @@ border: 1px solid #d9d9d9; margin: 0 5px; position: relative; + line-height: 16px !important; } .lineStyle .lineTypeBox .typeItem .solid { border: 1px solid #707070; @@ -198,6 +203,57 @@ width: 20px; } +.graphBox .graphSelect{ + display: flex; + width:190px; +} +.graphBox .graphSelect .flex1{ + flex: 1; + display: flex; + justify-content: center; +} + +.graphBox .graphSelect .square{ + width:15px; + height:15px; + border:1px solid #707070; + + +} +.graphBox .graphSelect .rotundity{ + width:15px; + height:15px; + border-radius: 50%; + border:1px solid #707070; +} +.graphBox .graphSelect .triangle{ + width:20px; + height:15px; + position: relative; + overflow: hidden; + border-bottom:1px solid #707070; +} +.graphBox .graphSelect .triangle::after{ + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + border:1px solid #707070; + /* background: deeppink; */ + transform-origin: left bottom; + transform: rotate(45deg); +} +.graphBox .graphSelect .lineSegment{ + width:15px; +} +.acitveGraphType{ + padding:4px; + background-color: #e0e0e0; + border-radius: 5px; +} + .el-input__inner { border: none !important; } @@ -215,10 +271,52 @@ .el-tree { background: none !important; } -.el-tree-node:focus > .el-tree-node__content, +.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{ + background: rgba(0, 147, 255, 0.21) !important; +} +.el-tree-node:focus > .el-tree-node__content { + background: #e0f2ff !important; +} .el-tree-node__content:hover { background: rgba(0, 147, 255, 0.21) !important; } .el-tree-node__content { - height: 30px !important; + /* height: 30px !important; */ + height:auto !important; + align-items:stretch !important; } +.el-tree-node__content>.el-tree-node__expand-icon{ + padding:9px 5px !important; +} + +.custom-tree-node{ + flex:1; + display: flex; + /* align-items: center; */ + justify-content: space-between; + padding:5px 0; +} +.catalogueLabel{ + padding-right:10px; + flex:1; + /* width:200px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; */ +} +.el-tree-node{ + white-space:normal !important; +} +.pageNum{ + float: right; + color:#707070; + padding-right:5px; +} + +.icon-tabler-arrow-bar-to-left,.icon-tabler-arrow-bar-to-right{ + color:#707070 !important; +} + +body { + --keyboard-zindex: 999999; +} \ No newline at end of file -- Gitblit v1.9.1