input element display:block instead of float -> displayed in the same row

This commit is contained in:
Daniel
2025-04-25 18:29:00 +02:00
committed by Markus Zolliker
parent b9a1e7db99
commit 8119f221bd
3 changed files with 37 additions and 30 deletions

View File

@ -32,7 +32,6 @@
min-height: 24px;
display: block;
border-bottom: dotted darkgray 2px;
/* overflow: hidden; */
transition: 0.2s;
position: relative;
}
@ -43,15 +42,17 @@
.row-clickable:hover {
background-color:lightgray;
/* opacity: .7; */
}
.row-disabled {
/* opacity: .3; */
background-color: WhiteSmoke;
color: dimgray
}
.row-waiting-for-answer {
background-color: orangered;
}
.modules-icon {
display: inline-block;
width: 12px;
@ -178,10 +179,13 @@
/* INPUT ELEMENTS */
.input-element {
z-index: 100;
position: absolute;
right: 0;
top: 20px;
display: block;
text-align: right;
}
.input-element-button {
display: block;
text-align: right;
}
.input-element-hidden {