Multiple cells selection and area

This commit is contained in:
alonso.torres 2023-09-14 10:57:42 +02:00
parent 322767701c
commit 17f35cda15
12 changed files with 288 additions and 109 deletions

View file

@ -1855,13 +1855,13 @@
}
}
.position-wrapper {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
display: flex;
width: 100%;
max-width: 185px;
height: 26px;
border-radius: 4px;
border: 1px solid $color-gray-60;
.position-btn {
display: flex;
justify-content: center;
@ -1871,6 +1871,8 @@
cursor: pointer;
color: $color-gray-20;
border-right: 1px solid $color-gray-60;
flex: 1;
&:last-child {
border-right: none;
}
@ -1878,6 +1880,13 @@
&:hover {
color: $color-primary;
}
&[disabled] {
opacity: 0.5;
&:hover {
color: $color-gray-20;
}
}
}
}