mirror of https://github.com/gorhill/uBlock.git
Minor code review
- Make FA icons non-selectable, because of spurious selection on Firefox for Android when merely tapping an icon - Disable spellchecking in the static network filter editor in the logger
This commit is contained in:
parent
373bb77ff6
commit
0ffa4b91de
|
@ -7,6 +7,8 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.1em;
|
padding: 0.1em;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
.fa-icon > * {
|
.fa-icon > * {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="container static">
|
<div class="container static">
|
||||||
<p></p>
|
<p></p>
|
||||||
<p><textarea class="staticFilter" value=""></textarea>
|
<p><textarea class="staticFilter" spellcheck="false" value=""></textarea>
|
||||||
<button id="createStaticFilter" class="custom important" type="button" data-i18n="pickerCreate"></button>
|
<button id="createStaticFilter" class="custom important" type="button" data-i18n="pickerCreate"></button>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue