Created
August 2, 2008 14:59
-
-
Save javascripter/3743 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.w3.org/1999/xhtml); | |
/* LivedoorReaderの広告を削除 */ | |
@-moz-document domain("reader.livedoor.com") { | |
.ads, | |
.grayline:first-child, | |
.inner-box, | |
.Last, | |
span[onmouseup="init_find_job()"]{ | |
display:none !important; | |
} | |
} | |
/* YourFileHostへのリンクにアイコンを表示 */ | |
:-moz-any-link[href*="http://www.yourfilehost.com/media.php?"]::before { | |
content:url("http://www.yourfilehost.com/favicon.ico") !important; | |
} | |
/* 新規タブを開くリンクのカーソルを変更 */ | |
:-moz-any-link[target="_blank"] { | |
cursor: alias !important; | |
} | |
/* mailto:リンクにアイコンを表示 */ | |
:-moz-any-link[href^="mailto:"]:before { | |
content: url("moz-icon://.eml?16") !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment