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
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold |
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
html, body { | |
padding: 0; | |
} | |
html { | |
-webkit-box-shadow: inset 0px 0px 55px 0px rgba(0, 0, 0, 0.2); | |
-moz-box-shadow: inset 0px 0px 55px 0px rgba(0, 0, 0, 0.2); | |
box-shadow: inset 0px 0px 55px 0px rgba(0, 0, 0, 0.2); | |
} |
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
<!--[if (lte IE 8)&(!IEMobile)]><html class="no-mq"><![endif]--> | |
<!--[if (gte IE 9)|(IEMobile)]><!--><html><!--<![endif]--> |
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
/** | |
* Allow developers to override settings. | |
*/ | |
define('SWEET_ASS_STAGE_SETTINGS_REGEX', '/^(dca11\.webchefs\.org|dca11\.dev1\.fourkitchens\.com)(:\d+)*$/'); | |
define('SWEET_ASS_USER_SETTINGS_REGEX', '/^(.*)\.(.*)\.(webchefs\.org|dev1\.fourkitchens\.com)(:\d+)*$/'); | |
if (preg_match(SWEET_ASS_USER_SETTINGS_REGEX, $_SERVER['HTTP_HOST'], $matches)) { | |
// Load general dev settings. | |
if (file_exists('sites/default/settings.dev.php')) { | |
include_once 'sites/default/settings.dev.php'; |
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
<ul> | |
<li>1.0 | |
<li>2.0 | |
<ul> | |
<li>2.1 | |
<li>2.2 | |
^ this would render incorrectly | |
VS. |
NewerOlder