Few CSS fixes for firmware flasher -> build configuration (#3089)

10.9-maintenance
Ivan Efimov 2022-11-19 18:23:37 -06:00 committed by GitHub
parent 0064747f30
commit f20290451a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 5 deletions

View File

@ -327,10 +327,6 @@ button {
input {
background-color: #3a3a3a;
color: white;
border: solid 1px var(--subtleAccent);
border-radius: 3px;
min-height: 20px;
padding: 2px;
}
select {
background-color: #424242;

View File

@ -128,6 +128,12 @@
margin: auto;
color: #3f4241;
}
input {
border: solid 1px var(--subtleAccent);
border-radius: 3px;
min-height: 20px;
padding: 2px 4px 2px 4px;
}
}
.release_info, .build_configuration {
display: none;
@ -206,3 +212,19 @@
}
}
}
#branchInfo {
.select2-selection__rendered {
line-height: 30px !important;
}
.select2-container .select2-selection--single {
height: 32px !important;
}
.select2-selection__arrow {
height: 32px !important;
width: 32px;
}
}
#customDefines {
width: calc(95% - 6px);
height: 26px;
}

View File

@ -216,7 +216,7 @@
<div style="width: 49%; float: right;">
<strong i18n="firmwareFlasherBuildCustomDefines"></strong>
<div id="customDefinesInfo">
<input id="customDefines" name="customDefines" style="width: 95%"></input>
<input id="customDefines" name="customDefines"></input>
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherCustomDefinesDescription"></div>
</div>
</div>