css fixes
This commit is contained in:
parent
72a918b706
commit
ba4605476a
2 changed files with 7 additions and 1 deletions
|
@ -851,6 +851,9 @@ class Options implements OptionsElement<void>{
|
||||||
generateHTML(): HTMLElement{
|
generateHTML(): HTMLElement{
|
||||||
const div = document.createElement("div");
|
const div = document.createElement("div");
|
||||||
div.classList.add("flexttb","titlediv");
|
div.classList.add("flexttb","titlediv");
|
||||||
|
if(this.owner instanceof Options){
|
||||||
|
div.classList.add("optionElement");
|
||||||
|
}
|
||||||
const title = document.createElement("h2");
|
const title = document.createElement("h2");
|
||||||
title.textContent = this.name;
|
title.textContent = this.name;
|
||||||
div.append(title);
|
div.append(title);
|
||||||
|
|
|
@ -1812,8 +1812,11 @@ fieldset input[type="radio"] {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
.flexltr > .optionElement{
|
||||||
|
margin: 16px 6px 0 0px;
|
||||||
|
}
|
||||||
.optionElement:has(.optionElement) {
|
.optionElement:has(.optionElement) {
|
||||||
margin: 0;
|
/* margin: 0; */
|
||||||
}
|
}
|
||||||
.optionElement:has(.Buttons) {
|
.optionElement:has(.Buttons) {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue