Skip to content

Instantly share code, notes, and snippets.

@Griever
Created June 13, 2010 08:23
Show Gist options
  • Save Griever/436464 to your computer and use it in GitHub Desktop.
Save Griever/436464 to your computer and use it in GitHub Desktop.
改行コードがあるので Stylish 0.5系のみ
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix(http://), url-prefix(https://) {
a[href^="http://ime.nu/"]
{
-moz-binding: url('data:text/xml;charset=utf-8,
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="aaa">
<implementation>
<constructor><![CDATA[
this.href = this.href.replace("ime.nu/", "");
]]></constructor>
</implementation>
</binding>
</bindings>');
}
a[href^="http://pinktower.com/"]
{
-moz-binding: url('data:text/xml;charset=utf-8,
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl">
<binding id="bbb">
<implementation>
<constructor><![CDATA[
this.href = this.href.replace("pinktower.com/", "");
]]></constructor>
</implementation>
</binding>
</bindings>');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment