Some bugfixes for input elements

This commit is contained in:
Daniel
2025-04-24 18:12:38 +02:00
committed by Markus Zolliker
parent 960e95c447
commit 6e20ed0f8f
4 changed files with 151 additions and 124 deletions

View File

@ -57,7 +57,7 @@
height: 12px;
line-height: 16px;
opacity: .8;
text-align: top;
vertical-align: top;
margin-bottom: 4px;
}
@ -66,7 +66,8 @@
.col-left {
display: inline-block;
min-width: 140px;
width: 155px;
vertical-align: top;
}
/* ------------------------------ info ------------------------------ */
@ -131,15 +132,18 @@
/* right */
.col-right-modules {
float: right;
display: inline-block;
width: 180px;
}
.col-right-parameters {
float: right;
display: inline-block;
width: 180px;
}
.col-right-value {
padding-right: 4px;
display: block;
text-align: right;
}
.col-right-disabled {
@ -149,7 +153,9 @@
/* ------------------------------ edit-icon ------------------------------ */
.edit-icon {
float: right;
position: absolute;
top: 4px;
right: 2px;
cursor: pointer;
}
@ -270,3 +276,27 @@ option {
border: 2px solid dimgray;
border-radius: 4px;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* PANEL <- moved here from SEAWebClientSwiper.css */
.panel {
background-color: #303030;
/* position: absolute; */
z-index: 20;
width: 100%;
height: 30px;
}
.panel:not(.graphics) {
color: white;
text-align: center;
padding: 6px 6px 6px 6px;
}
.panel.graphics{
display: flex;
justify-content: flex-end;
}
.toggle-updates-graphics {
float: right;
}