Skip to content

Instantly share code, notes, and snippets.

@shadcn
shadcn / gist:8997702
Created February 14, 2014 08:37
Equal column heights for Bootstrap
[class*="col-"]{
margin-bottom: -99999px;
padding-bottom: 99999px;
}
@shadcn
shadcn / gist:10392401
Created April 10, 2014 15:11
Drupal - Get field value using entity api
<?php
$value = entity_metadata_wrapper('node', $node)->field_foo_bar->value();
@shadcn
shadcn / _font.scss
Last active August 29, 2015 14:00
font-face for Radix
// Font faces
// --------------------------------------------------
@import "compass/css3/font-face";
$font-faces: ('GothamRnd-Medium', 'GothamRnd-Book');
@each $font-face in $font-faces {
@include font-face(
'#{$font-face}',
font-files(
"#{$font-face}.woff", woff,
@shadcn
shadcn / gist:9b660d701816854dc407
Created May 2, 2014 17:51
Hide icon from the dock
Set LSUIElement to YES
<div class="row">
<div class="col-md-4">Column 1</div>
<div class="col-md-8">Column 2</div>
</div>
@shadcn
shadcn / gist:8e4420f0045d72970c9d
Created May 16, 2014 12:16
Radix - disable responsive
// Media queries breakpoints
// --------------------------------------------------
// Extra small screen / phone
// Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
$screen-xs: 1px !default;
$screen-xs-min: $screen-xs !default;
$screen-phone: $screen-xs-min !default;
// Small screen / tablet
/**
* Display a day view.
*/
function template_preprocess_calendar_day(&$vars) {
$vars['view']->style_with_weekno = FALSE;
$view = $vars['view'];
$rows = $vars['rows'];
$item_count = 0;
$by_hour_count = 0;
@shadcn
shadcn / gist:8b4c6e2404825c387450
Created September 2, 2014 19:46
Switch Panopoly Layouts to Radix Layouts.
/**
* Replace Panopoly layouts with Radix Layouts
* @param $plugin
* @param $info
*/
function radix_ctools_plugin_post_alter(&$plugin, &$info) {
// If Radix Layouts module is installed.
// Switch all Panopoly Panels layouts to Radix Layouts.
if (module_exists('radix_layouts')) {
$radix_layouts_path = drupal_get_path('module', 'radix_layouts');
@shadcn
shadcn / gist:3f78074de48ae295b341
Created December 1, 2014 14:50
Cocoapods stuck on “analyzing dependencies”

Run the following:

$ pod repo remove master
$ pod setup
$ pod install
@shadcn
shadcn / gist:5ea3aa3a4ce4cd345aa8
Created December 9, 2015 06:33
Drupal + Bootstrap + Sass + Gulp + Browsersync + FontAwesome
Download and enable radix: drush en radix -y; drush vset theme_default radix
Create a subtheme: drush cc all; drush radix "Subtheme"
Set default theme: drush en subtheme -y; drush vset theme_default subtheme
Install required modules: cd /path/to/subtheme; npm run setup
Update browserSyncProxy in /path/to/subtheme/config.json
Watch: gulp