You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.5 KiB

.ce-table-tool__row {
position: absolute;
width: 12px;
border-radius: 6.5px;
overflow: hidden;
background-color: #E2E6ED;
}
.ce-table-tool__row .ce-table-tool__row__item {
width: 100%;
position: relative;
}
.ce-table-tool__row .ce-table-tool__row__item::after {
content: '';
position: absolute;
bottom: 0;
left: 2px;
width: 8px;
height: 1px;
background-color: #C0C6CF;
}
.ce-table-tool__row .ce-table-tool__row__item:last-child:after {
display: none;
}
.ce-table-tool__col {
position: absolute;
height: 12px;
border-radius: 6.5px;
overflow: hidden;
background-color: #E2E6ED;
display: flex;
}
.ce-table-tool__col .ce-table-tool__col__item {
height: 100%;
position: relative;
}
.ce-table-tool__col .ce-table-tool__col__item::after {
content: '';
position: absolute;
top: 2px;
left: -1px;
width: 1px;
height: 8px;
z-index: 1;
background-color: #C0C6CF;
}
.ce-table-tool__col .ce-table-tool__col__item:first-child:after {
display: none;
}
.ce-table-tool__row .ce-table-tool__row__item.active,
.ce-table-tool__col .ce-table-tool__col__item.active {
background-color: #C4D7FA;
}
.ce-table-tool__col .ce-table-tool__anchor {
right: -5px;
width: 10px;
height: 12px;
z-index: 9;
position: absolute;
cursor: col-resize;
}
.ce-table-tool__row .ce-table-tool__anchor {
bottom: -5px;
left: 0;
width: 12px;
height: 10px;
z-index: 9;
position: absolute;
cursor: row-resize;
}
.ce-table-anchor__line {
z-index: 9;
position: absolute;
border: 1px dotted #000000;
}