|
@@ -0,0 +1,66 @@
|
|
|
+.cy-transform-data {
|
|
|
+ width: calc(50% - 60px);
|
|
|
+
|
|
|
+ .cy-line {
|
|
|
+ overflow: auto;
|
|
|
+
|
|
|
+ .custom-tree-node {
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.cy-leaves-div {
|
|
|
+ height: calc(100% - 80px);
|
|
|
+ overflow: auto;
|
|
|
+ overflow-x: hidden;
|
|
|
+ margin-top: 5px;
|
|
|
+
|
|
|
+ .el-checkbox {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ .el-checkbox__label {
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.cy-transform-btn {
|
|
|
+ width: 100px;
|
|
|
+ margin: 20px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ align-content: center;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .el-row {
|
|
|
+ margin: 5px 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.cy-group-tree {
|
|
|
+ /* background: #ebcccc !important; */
|
|
|
+ /* color: #ffffff !important; */
|
|
|
+
|
|
|
+ .el-tree-node:focus>.el-tree-node__content {
|
|
|
+ background-color: #d9dddd;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-tree-node__content:hover {
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ .custom-tree-node {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .svg-icon {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ }
|
|
|
+}
|