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
| =min-height(!height) | |
| min-height= !height | |
| height: auto !important | |
| height: !height |
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
| @implementation _CPAppBootstrapper (CustomLoadTheme) | |
| + (BOOL)loadDefaultTheme | |
| { | |
| alert('hi') | |
| return YES; | |
| } | |
| @end |
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
| // In view | |
| - (void)mouseEntered:(CPEvent)anEvent | |
| { | |
| _DOMElement.className = "photoview_hover"; | |
| } | |
| - (void)mouseExited:(CPEvent)anEvent | |
| { | |
| _DOMElement.className = ""; |
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
| %ul#comments-list | |
| = reply | |
| = reply do | |
| = reply | |
| = reply do | |
| = reply do | |
| = reply do | |
| = reply | |
| = reply | |
| = reply |
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
| :table | |
| | <h3>Find a Doctor Near You by Name or Specialty</h3> | |
| Doctor Name: | <input type="text" size="30" /> | |
| Your Zip Code: | <input type="text" size="10" /> | |
| Doctors within: | <select><option>5</option></select> | |
| Speciality: | <select><option>Any Speciality</option></select> | |
| Gender of Doctor: | <select><option>No Preference</option></select> | |
| Additional Languages Spoken: | <select><option>No Language Preference</option></select> | |
| Show: | <label><input type="radio" name="show" />PeaceHealth Medical Group doctors only</label><br /><label><input type="radio" name="show" />All PeaceHealth and affiliated community doctors</label> | |
| | <input type="submit" value="Search" /> <a href="">Clear Search</a> |
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
| @import compass.sass | |
| @import susy.sass |
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
| ::Compass.configuration do |config| | |
| config.asset_host do |asset| | |
| "http://#{(1..4).to_a[rand(4)]}.tfln.com" | |
| end | |
| end |
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
| %pre | |
| :preserve | |
| <head> | |
| <script src="jquery-1.4.js" type="text/javascript"></script> | |
| <script src="jquery/iphone-style-checkboxes.js" type="text/javascript"></script> | |
| <link rel="stylesheet" href="path_to/style.css" type="text/css" media="screen" /> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $(':checkbox').iphoneStyle(); | |
| }); |
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
| @import "base"; | |
| @include global-reset; | |
| @include blueprint-typography; | |
| body { | |
| background: $unfocused-background-color image_url("white-bg.jpg") repeat-y 50% 0; | |
| color: $text-color; | |
| } |
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
| =linear-gradient($color-stops, $start: top) { | |
| $end: grad-opposite-position($start) | |
| border-image: -webkit-gradient(linear, #{grad-point($start)}, #{grad-point($end)}, #{grad-color-stops($color-stops)}) | |
| border-image: -moz-linear-gradient(#{$start}, #{$color-stops}) |