1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00
This commit is contained in:
gorhill 2015-02-08 10:07:15 -05:00
parent d9244b24c9
commit 01474c7adb
3 changed files with 7 additions and 9 deletions

View File

@ -183,12 +183,6 @@ body.dirty #refresh:hover {
#dynamicFilteringContainer > div:hover {
background-color: #f0f0f0;
}
#dynamicFilteringContainer > div#privacyInfo {
background-color: white;
color: #444;
padding: 4px 0;
text-align: center;
}
#dynamicFilteringContainer > div > span {
background-color: transparent;
border: none;
@ -200,7 +194,11 @@ body.dirty #refresh:hover {
line-height: 22px;
overflow: hidden;
position: relative;
vertical-align: top;
vertical-align: middle;
}
#dynamicFilteringContainer > div:nth-of-type(1) > span {
height: 18px;
line-height: 18px;
}
#dynamicFilteringContainer > div > span:nth-of-type(1) {
border-right: 1px solid white;

View File

@ -256,7 +256,7 @@ var buildAllDynamicFilters = function() {
// Remove and reuse all rows: the order may have changed, we can't just
// reuse them in-place.
rowsToRecycle = uDom('#dynamicFilteringContainer > div:nth-of-type(6) ~ div').detach();
rowsToRecycle = uDom('#dynamicFilteringContainer > div:nth-of-type(7) ~ div').detach();
var n = allHostnameRows.length;
for ( var i = 0; i < n; i++ ) {

View File

@ -28,7 +28,7 @@
<div id="refresh" class="fa">&#xf021;</div>
</div><!-- DO NOT REMOVE --><div>
<div id="dynamicFilteringContainer">
<!-- <div><span data-i18n="popupAnyRulePrompt"></span><span data-src="/" data-des="*" data-type="*"> </span><span data-src="." data-des="*" data-type="*"> </span></div> -->
<div><span data-i18n="popupAnyRulePrompt"></span><span data-src="/" data-des="*" data-type="*"> </span><span data-src="." data-des="*" data-type="*"> </span></div>
<div><span data-i18n="popupImageRulePrompt"></span><span data-src="/" data-des="*" data-type="image"> </span><span data-src="." data-des="*" data-type="image"> </span></div>
<div><span data-i18n="popup3pAnyRulePrompt"></span><span data-src="/" data-des="*" data-type="3p"> </span><span data-src="." data-des="*" data-type="3p"> </span></div>
<div><span data-i18n="popupInlineScriptRulePrompt"></span><span data-src="/" data-des="*" data-type="inline-script"> </span><span data-src="." data-des="*" data-type="inline-script"> </span></div>