1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 17:19:38 +02:00

textarea elements rtl/ltr fixes

Fixing textareas resizer side on 3p-filters and English text not being
written as it should on all textareas.
This commit is contained in:
Mikey1993 2014-08-24 02:51:10 +03:00
parent a315126921
commit 78772d8a1a
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ div > p:last-child {
<div>
<p data-i18n="1pFormatHint"></p>
<p><button id="importUserFiltersFromFile" data-i18n="1pImport"></button> &emsp; <button id="exportUserFiltersToFile" data-i18n="1pExport"></button></p>
<textarea class="userFilters" id="userFilters"></textarea>
<textarea class="userFilters" id="userFilters" dir="auto"></textarea>
<p><button id="userFiltersApply" disabled="true" data-i18n="1pApplyChanges"></button></p>
</div>

View File

@ -24,7 +24,7 @@
<div id="externalListsDiv">
<p data-i18n="3pExternalListsHint" style="margin: 0 0 0.25em 0; font-size: 13px;"></p>
<textarea id="externalLists"></textarea>
<textarea id="externalLists" dir="auto"></textarea>
<p style="margin: 0.25em 0 0 0"><button id="externalListsApply" disabled="true" data-i18n="3pExternalListsApply"></button></p>
</div>

View File

@ -94,7 +94,7 @@ span.obsolete {
width: 48em;
height: 8em;
white-space: nowrap;
direction: ltr;
direction: __MSG_@@bidi_dir__;
}
body #loadingOverlay {
position: fixed;

View File

@ -29,7 +29,7 @@ div > p:last-child {
<div>
<p data-i18n="whitelistPrompt"></p>
<p><button id="importWhitelistFromFile" data-i18n="whitelistImport"></button> &emsp; <button id="exportWhitelistToFile" data-i18n="whitelistExport"></button></p>
<textarea id="whitelist"></textarea>
<textarea id="whitelist" dir="auto"></textarea>
<p><button id="whitelistApply" type="button" disabled="true" data-i18n="whitelistApply"></button></p>
</div>