Rename folder scss with an "_" for Jekyll to ignore it
This commit is contained in:
_config.yml
assets/_scss
_archive.scss_base.scss_buttons.scss_footer.scss_forms.scss_masthead.scss_mixins.scss_navigation.scss_notices.scss_page.scss_print.scss_reset.scss_sidebar.scss_syntax.scss_tables.scss_toc.scss_utilities.scss_variables.scssmain.scss
gulpfile.jsvendor
breakpoint
_breakpoint.scss_context.scss_helpers.scss_legacy-settings.scss_no-query.scss_parsers.scss_respond-to.scss_settings.scss
parsers
font-awesome
_animated.scss_bordered-pulled.scss_core.scss_fixed-width.scss_font-awesome.scss_icons.scss_larger.scss_list.scss_mixins.scss_path.scss_rotated-flipped.scss_stacked.scss_variables.scss
magnific-popup
susy
_su.scss_susy.scss_susyone.scss
susy
_su.scss
language
_susy.scss_susyone.scss
susy
_background.scss_bleed.scss_box-sizing.scss_breakpoint-plugin.scss_container.scss_context.scss_gallery.scss_grids.scss_gutters.scss_isolate.scss_margins.scss_padding.scss_rows.scss_settings.scss_span.scss_validation.scss
susyone
output
su
26
assets/_scss/vendor/breakpoint/parsers/_single.scss
vendored
Normal file
26
assets/_scss/vendor/breakpoint/parsers/_single.scss
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
//////////////////////////////
|
||||
// Import Pieces
|
||||
//////////////////////////////
|
||||
@import "single/default";
|
||||
|
||||
@function breakpoint-parse-single($feature, $empty-media, $first) {
|
||||
$parsed: '';
|
||||
$leader: '';
|
||||
// If we're forcing
|
||||
@if not ($empty-media) or not ($first) {
|
||||
$leader: 'and ';
|
||||
}
|
||||
|
||||
// If it's a single feature that can stand alone, we let it
|
||||
@if (breakpoint-single-string($feature)) {
|
||||
$parsed: $feature;
|
||||
// Set Context
|
||||
$context-setter: private-breakpoint-set-context($feature, $feature);
|
||||
}
|
||||
// If it's not a stand alone feature, we pass it off to the default handler.
|
||||
@else {
|
||||
$parsed: breakpoint-parse-default($feature);
|
||||
}
|
||||
|
||||
@return $leader + '(' + $parsed + ')';
|
||||
}
|
Reference in New Issue
Block a user