Remember, we're editing files currently in active use by the system
killall Dock
/*jshint -W043 */ | |
// ==UserScript== | |
// @name Jira Story templates | |
// @namespace https://gist.github.com/ThatGuyCND/0081dd22847b1247c6aa | |
// @description Provides a UI Dropdown for selecting the type of deliverable that provides an appropriate template for acceptance criteria. | |
// @include https://backlog.acquia.com/secure/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== |
@mixin respond-to($primary, $secondary:min-width, $nq:false, $nq-class:lt9) { | |
// Convert pixel values to ems | |
@if unit($primary) == 'px' { | |
$primary: pem($primary); | |
} | |
@if type-of($secondary) == number and unit($secondary) == 'px' { | |
$secondary: pem($secondary); | |
} | |
// Print out Media Queries |
/** Theme Specific Colors | |
* | |
* + Newspapers | |
*/ | |
// Frankfort Station | |
$FS-main: rgb(0, 88, 140); | |
$FS-secondary: rgb(0, 53, 93); | |
// Lockport Legend | |
$LL-main: rgb(248, 181, 43); | |
$LL-secondary: rgb(148, 122, 72); |
@for $i from 1 through $total-columns { | |
.col__#{$total-columns}-#{$i} { | |
// Mobile & Tablet: on small and medium screens, all columns are full width | |
@include span-columns($total-columns); | |
// Desktop: when no longer on a medium display, obey column sizes | |
@include respond-to($medium) { | |
@include span-columns($i); | |
} | |
} | |