CSS curves settings fix

This commit is contained in:
l_samenv
2024-09-04 10:40:36 +02:00
parent 345a231bdd
commit 2cb81cde58
3 changed files with 35 additions and 24 deletions

View File

@ -11,7 +11,7 @@
}
#curves-settings-popup-container{
width: 380px;
width: 100%;
height: 100%;
border: 2px solid black;
margin: auto;
@ -44,6 +44,8 @@
#curves-settings-popup-content{
padding: 10px;
height: calc(100% - 80px);
display: flex;
flex-direction: column;
}
.button-center-wrapper{
@ -62,7 +64,7 @@
}
#curves-settings-popup-table{
width: 335px;
width: 100%;
}
#curves-settings-popup-table,
#curves-settings-popup-table tr th,
@ -77,9 +79,23 @@
text-align: left;
}
#curves-settings-popup-table tbody tr td:not(.bin-cell){
position: relative;
}
#curves-settings-popup-table tbody tr td:not(.bin-cell) div{
position: absolute;
display: inline-block;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.text-input{
padding: 0;
border: 0;
width: 100%;
}
.bin-cell{
@ -91,17 +107,6 @@ td img{
height: 15px;
}
.variable-cell, .parameter-cell, .cat-cell{
width: 73px;
}
.color-cell{
width: 57px;
}
.unit-cell{
width: 37px;
}
#curves-settings-popup-footer{
height: 40px;
display: flex;