Fixing bug 315038. Adding a slashdot site specific example

This commit is contained in:
dougt%meer.net 2005-11-10 17:40:00 +00:00
Родитель 6280e93a08
Коммит e40c9e3d94
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -129,6 +129,13 @@ nsSSRSupport::Observe(nsISupports *aSubject, const char *aTopic, const PRUnichar
prefBranch->AddObserver("ssr.", this, PR_FALSE);
PRBool enabled;
prefBranch->GetBoolPref("ssr.enabled", &enabled);
SetSSREnabled(enabled);
prefBranch->GetBoolPref("ssr.sites.enabled", &enabled);
SetSiteSSREnabled(enabled);
return NS_OK;
}

Просмотреть файл

@ -4,3 +4,20 @@
div#panel { display: none ! important;}
table#headertitle { display: none ! important;}
}
@-moz-document domain(slashdot.org)
{
div#links, div#topnav, div#slogan, div#footer, div#slashboxes, div.indexhead { display:none; }
body ul { display:none !important; }
div#frame, div#contents {
margin: 0px !important;
padding: 0px !important;
}
div#articles {
margin: 0px !important;
padding: 5px !important;
}
}