This file contains 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
@media all and (-webkit-min-device-pixel-ratio:10000), | |
not all and (-webkit-min-device-pixel-ratio:0) { | |
/* 7.2 up */ | |
head~body { /* 9 up */ } | |
:root { /* 9.5 up */ } | |
} |
This file contains 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
/* IE 7 and below: RGBa value in hex: aaRRGGBB */ | |
* { | |
background:transparent; | |
zoom: 1; | |
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7FC8C8C8,endColorstr=#7FC8C8C8); | |
} |
This file contains 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
/* IE6 only */ | |
* html {} | |
/* IE7 only */ | |
* + html {} | |
/* IE8 only */ | |
/* IE6-7 */ |
This file contains 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
/* Caveats: | |
- ib-block needs an explicit width | |
- if the whitespace between ib-block elements is not a problem, then the ib-container class isn't necessary. | |
- if Firefox 2 support is necessary, add display:-moz-inline-stack to the top of the .ib-block rule and wrap .ib-block's children in a div. | |
- The IE6/7 rules can be broken out into separate ie-only stylesheets included via conditional comments. | |
*/ | |
.ib-block { | |
vertical-align:top; | |
display:inline-block; |
This file contains 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
/* A set of base utility classes */ | |
.hidden { | |
display:none; | |
} | |
.phark { | |
text-indent: -5000px; | |
overflow: hidden; | |
display:block; | |
} |
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<title>JSHTML</title> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<script type="text/javascript" src="jquery.jshtml.js"></script> | |
<script type="text/javascript"> | |
jQuery(function($){ | |
$('script.jshtml').jshtml(); | |
console.log(some_global); |
This file contains 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
Class.Mutators.jQuery= function(jquery){ | |
return jquery; | |
}; | |
Class.Mutators.initialize = function(initialize){ | |
return function(){ | |
//console.log("add ", this.jQuery.method, " to jQuery"); | |
jQuery.fn[this.jQuery.method] = function(){}; | |
$splat(this.jQuery.helpers).each(function(name){ | |
//console.log("add ", name, " as ", this[name], " to jQuery.", this.jQuery.method); |
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<title>YQL</title> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
<script type="text/javascript"> | |
//<![CDATA[ | |
(function($){ |
This file contains 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
CmdUtils.makeBookmarkletCommand({ | |
name: "radbox", | |
url: "javascript:function%20addvid(){var%20d=document,%20z=d.createElement(%27scr%27+%27ipt%27),%20b=d.body;try%20{if(!b)%20throw(0);r=Math.floor(Math.random()*100+1);z.setAttribute(%27src%27,%20%27http://radbox.me/init/static/add.js?r=%27+r.toString());b.appendChild(z);}%20catch(e)%20{alert(%27Please%20wait%20until%20the%20page%20has%20loaded.%27);}}if(window.location.hostname.search(%27radbox%27)%20==%20-1)%20{addvid();}%20else%20{alert(%27You%20cannot%20use%20this%20bookmarklet%20in%20Radbox.%27);}void(0);" | |
}) |
This file contains 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
#map{ | |
background:url(/_layouts/images/advics.internet.branding/map.png) #FFFFFF; | |
height:448px; | |
position:relative; | |
} | |
#map ul { | |
list-style:none; | |
} | |
.maplocation { | |
position:absolute; |
OlderNewer