123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- .zl-row {
- display: flex;
- flex-wrap: wrap;
- }
- * {
- box-sizing: border-box;
- }
- .zl-col-6 {
- flex: 0 0 50%;
- max-width: 50%;
- padding: 0 8px;
- }
- .zl-table-height {
- height: calc(50vh - 32px);
- overflow: auto;
- }
- body {
- margin: 0;
- }
- .zl-code {
- height: calc(100vh - 30px);
- overflow: auto;
- }
- .zl-col-12 {
- flex: 0 0 100%;
- max-width: 100%;
- }
- .zl-tree {
- height: calc(50vh - 30px);
- overflow: auto;
- }
- .zl-table-head {
- font-size: 1rem;
- height: 20px;
- line-height: 20px;
- border-left: 5px solid #686f72;
- padding-left: 7px;
- margin: 4px 0;
- }
- #astJson li {
- position: relative;
- white-space: nowrap;
- max-width: 100%;
- cursor: pointer;
- list-style: none;
- }
- #astJson li:after {
- content: "";
- position: absolute;
- width: 20px;
- height: 20px;
- left: -23px;
- top: 13px;
- border-width: 1px;
- border-top: 1px dashed #3fa35e;
- }
- #astJson li:before {
- content: "";
- position: absolute;
- width: 1px;
- height: 100%;
- left: -23px;
- top: 3px;
- border-width: 1px;
- border-left: 1px dashed #3fa35e;
- }
- #astJson li.parent-node>ul:before {
- top: 2px;
- }
- #astJson div>ul>li:before {
- opacity: 0;
- }
- #astJson div>ul>li:after {
- opacity: 0;
- }
- #astJson span.tree-icon {
- content: "";
- width: 20px;
- height: 20px;
- background-image: url("/imags/icon_del.svg");
- background-repeat: no-repeat;
- background-size: cover;
- display: inline-block;
- position: relative;
- top: 5px;
- margin-right: 2px;
- }
- #astJson li.parent-node.collapse-node span.tree-icon {
- background-image: url(/imags/icon_add.svg);
- }
- #astJson ul>.last-node>span.tree-icon {
- opacity: 0;
- }
- #astJson .parent-node li.last-node>span.tree-icon {
- display: none;
- }
- #astJson .parent-node li:last-child:before {
- height: 10px;
- }
- #astJson span.tree-icon.collapse-node {
- background-image: url(/imags/icon_add.svg);
- }
- #astJson span.node-text {
- font-size: 16px;
- }
- #astJson .import-data-table>div>ul {
- border: 1px solid #999;
- padding: 8px;
- }
- #astJson .import-data-table ul {
- padding-inline-start: 32px;
- }
- #astJson .dx-freespace-row td {
- border-left: 1px solid transparent !important;
- border-right: 1px solid transparent !important;
- }
- #astJson .dx-data-row td {
- border-bottom: 1px solid #d1d1d1;
- }
- .monaco-highlight {
- background: #d3dbd7;
- }
|