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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
// Number of slices of a 100% scale that will be generated | |
$steps: 20; | |
// Custom widths that will be generated among the proportions | |
$customWidths: ( |
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
// ---- | |
// libsass (v3.0.2) | |
// ---- | |
$colourList: ( |
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
// FACTORY ____________________________________________________________________________________________________________ | |
/** | |
@ngdoc factory | |
@name cordova.factory:cordovaExitApp | |
@description Adds events to exit app on Android | |
http://stackoverflow.com/questions/18184497/backbutton-confirm-exit-app-android-phonegap-jquery | |
*/ | |
// DEFINITION _________________________________________________________________________________________________________ |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$list: yellow tomato red green; | |
@for $i from 1 to length($list) { | |
.color-#{$i} { | |
background: nth($list, $i); |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@import "compass"; | |
@mixin animation-loading-two-colors ( $color-a, $color-b, $number-of-items: 5) { | |
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
/** | |
* Prints the content of a variable | |
*/ | |
function dump() | |
{ | |
list($callee) = debug_backtrace(); | |
$arguments = func_get_args(); | |
$total_arguments = count($arguments); | |
echo '<fieldset style="background: #fefefe !important; border:2px red solid; padding:5px; font-size: 12px; color: #333; text-align: left">'; |
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
html, body, main{ | |
-webkit-backface-visibility: visible; | |
height: 100%; | |
} | |
// off-canvas fix | |
.off-canvas-wrap, .inner-wrap{ | |
-webkit-backface-visibility: visible; | |
} |
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
/************************************************************************************** | |
* CUSTOM ADMIN FILTER | |
* Add taxonomy filter to wp-admin posts listing | |
**************************************************************************************/ | |
add_action( 'restrict_manage_posts', 'my_restrict_manage_posts' ); | |
function my_restrict_manage_posts() { | |
global $typenow; |
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
msgid "" | |
msgstr "" | |
"Project-Id-Version: THEME\n" | |
"Report-Msgid-Bugs-To: \n" | |
"POT-Creation-Date: 2014-06-26 17:38+0100\n" | |
"PO-Revision-Date: \n" | |
"Language-Team: TEAM <[email protected]>\n" | |
"Language: en\n" | |
"MIME-Version: 1.0\n" | |
"Content-Type: text/plain; charset=UTF-8\n" |
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
<div class="table container"> | |
<div class="table-cell"> | |
<code>display: table-cell;</code> | |
</div> | |
</div> | |
<div class="wrapper container"> | |
<div class="inline-block"> | |
<code>display: inline-block;</code> | |
</div> |