mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 17:17:57 +01:00
this fixes #489
This commit is contained in:
parent
31e2b1ac03
commit
35ee7b79f8
2 changed files with 8 additions and 2 deletions
|
@ -28,12 +28,18 @@ body {
|
|||
background-color: #eee;
|
||||
}
|
||||
#content {
|
||||
margin-left: 4em;
|
||||
width: calc(100% - 4em);
|
||||
}
|
||||
body[dir="ltr"] #content {
|
||||
margin-left: 4em;
|
||||
}
|
||||
body[dir="rtl"] #content {
|
||||
margin-right: 4em;
|
||||
}
|
||||
#content table {
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
direction: ltr;
|
||||
width: 100%;
|
||||
}
|
||||
#content table tr.blocked {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div>
|
||||
<p data-i18n="rulesFormatHint"></p>
|
||||
<p><button id="rulesApply" disabled="true" data-i18n="1pApplyChanges"></button></p>
|
||||
<textarea id="rulesEditor" spellcheck="false"></textarea>
|
||||
<textarea id="rulesEditor" spellcheck="false" dir="auto"></textarea>
|
||||
<p><button id="importButton" type="button" data-i18n="1pImport"></button>  
|
||||
<button id="exportButton" type="button" data-i18n="1pExport"></button>
|
||||
<input class="hidden" id="importFilePicker" type="file" accept="text/plain" style="display: none;"></p>
|
||||
|
|
Loading…
Reference in a new issue