mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 07:38:53 +02:00
style(client): fix checkboxes override causing issues for canvas (closes #6463)
This commit is contained in:
parent
313ba3df80
commit
4d73cdefef
@ -139,12 +139,6 @@ textarea,
|
|||||||
color: var(--muted-text-color);
|
color: var(--muted-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Restore default apperance */
|
|
||||||
input[type="number"],
|
|
||||||
input[type="checkbox"] {
|
|
||||||
appearance: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add a gap between consecutive radios / check boxes */
|
/* Add a gap between consecutive radios / check boxes */
|
||||||
label.tn-radio + label.tn-radio,
|
label.tn-radio + label.tn-radio,
|
||||||
label.tn-checkbox + label.tn-checkbox {
|
label.tn-checkbox + label.tn-checkbox {
|
||||||
|
@ -53,12 +53,19 @@ const TPL = /*html*/`
|
|||||||
word-break:keep-all;
|
word-break:keep-all;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.promoted-attribute-cell input[type="checkbox"] {
|
.promoted-attribute-cell input[type="checkbox"] {
|
||||||
width: 22px !important;
|
width: 22px !important;
|
||||||
flex-grow: 0;
|
flex-grow: 0;
|
||||||
width: unset;
|
width: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Restore default apperance */
|
||||||
|
.promoted-attribute-cell input[type="number"],
|
||||||
|
.promoted-attribute-cell input[type="checkbox"] {
|
||||||
|
appearance: auto;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class="promoted-attributes-container"></div>
|
<div class="promoted-attributes-container"></div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user