1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

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:
Raymond Hill 2020-04-25 18:57:36 -04:00
parent 533f0e5969
commit fefc7e21b2
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 5 additions and 5 deletions

View File

@ -143,7 +143,7 @@ label {
Firefox Preview design guidelines.
- 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);
height: var(--checkbox-size);
margin: 0;

View File

@ -194,10 +194,10 @@
</div>
<div><span data-i18n="loggerSettingHideColumnsPrompt"></span>
<ul>
<li><label data-i18n="loggerSettingHideColumnTime"><input type="checkbox" data-column="0" /></label>
<li><label data-i18n="loggerSettingHideColumnFilter"><input type="checkbox" data-column="1" /></label>
<li><label data-i18n="loggerSettingHideColumnContext"><input type="checkbox" data-column="3" /></label>
<li><label data-i18n="loggerSettingHideColumnPartyness"><input type="checkbox" data-column="4" /></label>
<li><label data-i18n="loggerSettingHideColumnTime"><input type="checkbox" class="native" data-column="0" /></label>
<li><label data-i18n="loggerSettingHideColumnFilter"><input type="checkbox" class="native" data-column="1" /></label>
<li><label data-i18n="loggerSettingHideColumnContext"><input type="checkbox" class="native" data-column="3" /></label>
<li><label data-i18n="loggerSettingHideColumnPartyness"><input type="checkbox" class="native" data-column="4" /></label>
</ul>
</div>
<div><label data-i18n="loggerSettingPerEntryLineCount"><input type="number" min="2" max="6"></label></div>