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
$(function() { | |
/* draw custom frames around certain types of items */ | |
doCustomFrames = function( $root ) { | |
/* ugly global -- need to encapsulate this and provide some kind of interface */ | |
/* called when new content is loaded */ | |
$root.find('.item > .twitter.message .frame').svg( twitterFrame ); | |
$root.find('.tweet-module .tweet .frame' ).svg( twitterFrame ); | |
}; |
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
/** | |
* Icon module. | |
* | |
* Class: icon, Prefix: icn-. | |
* | |
* https://home.ninginc.com/display/ENG/Yoko+Styleguide#YokoStyleguide-Icon | |
* | |
*/ | |
.icon { |
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
<?php | |
/** | |
* Create an SVG sprite as a DOMDocument. | |
*/ | |
class Sprite { | |
/** | |
* The URI for the SVG namespace. | |
* |
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
(provide 'color-theme-mnmlst) | |
(defun color-theme-mnmlst () | |
"a 'sublime' theme by mnmslt.me" | |
(interactive) | |
(color-theme-install | |
'(color-theme-tm | |
((background-color . "#282624") | |
(background-mode . dark) | |
(border-color . "#111") | |
(cursor-color . "yellow") |