mirror of https://github.com/gorhill/uBlock.git
Unbreaking checkbox in logger settings
Related commit:
- f9b385ffb1
The real fix is not trivial, so this is a workaround
until the real fix. The logger's setting dialog is
also suffering from small visual issues due to all
the CSS changes elsewhere recently, this will be fixed
at the same time.
This commit is contained in:
parent
533f0e5969
commit
fefc7e21b2
|
@ -143,7 +143,7 @@ label {
|
||||||
Firefox Preview design guidelines.
|
Firefox Preview design guidelines.
|
||||||
- To have a single checkbox design across all platforms.
|
- To have a single checkbox design across all platforms.
|
||||||
*/
|
*/
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"]:not(.native) {
|
||||||
--margin-end: calc(var(--font-size) * 0.75);
|
--margin-end: calc(var(--font-size) * 0.75);
|
||||||
height: var(--checkbox-size);
|
height: var(--checkbox-size);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -194,10 +194,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div><span data-i18n="loggerSettingHideColumnsPrompt"></span>
|
<div><span data-i18n="loggerSettingHideColumnsPrompt"></span>
|
||||||
<ul>
|
<ul>
|
||||||
<li><label data-i18n="loggerSettingHideColumnTime"><input type="checkbox" data-column="0" /></label>
|
<li><label data-i18n="loggerSettingHideColumnTime"><input type="checkbox" class="native" data-column="0" /></label>
|
||||||
<li><label data-i18n="loggerSettingHideColumnFilter"><input type="checkbox" data-column="1" /></label>
|
<li><label data-i18n="loggerSettingHideColumnFilter"><input type="checkbox" class="native" data-column="1" /></label>
|
||||||
<li><label data-i18n="loggerSettingHideColumnContext"><input type="checkbox" data-column="3" /></label>
|
<li><label data-i18n="loggerSettingHideColumnContext"><input type="checkbox" class="native" data-column="3" /></label>
|
||||||
<li><label data-i18n="loggerSettingHideColumnPartyness"><input type="checkbox" data-column="4" /></label>
|
<li><label data-i18n="loggerSettingHideColumnPartyness"><input type="checkbox" class="native" data-column="4" /></label>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div><label data-i18n="loggerSettingPerEntryLineCount"><input type="number" min="2" max="6"></label></div>
|
<div><label data-i18n="loggerSettingPerEntryLineCount"><input type="number" min="2" max="6"></label></div>
|
||||||
|
|
Loading…
Reference in New Issue