diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index b7a052a..ebaf300 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -881,3 +881,11 @@ - Updated `mini-sucroa`: Removed `horizontal` tables, added `sticky` for `header` and `footer`, added `tooltip`, disabled legacy support in `utility`. Updated the rest of the components as required (minor changes). - Updated `mini-sucroa` flavor description. - Decided to drop `mini-classic`, not worth it in the long run. See #57 for details. + +# v2.1.1 Development log + +## 20170329 + +- Started code cleanup and updating. +- Updated `core` by moving all of the variable definitions and defaults at the top of the module's file. +- Updated both flavor files to deal with the indentation and column problems (only for the `core` module so far). Readability is a lot better, but consistency is a little bit worse. For all intents and purposes, this is the way to go for this release, as the previous styling was impossible to read for the most part in many setups. diff --git a/src/flavors/mini-default.scss b/src/flavors/mini-default.scss index 23f9356..a3a22c3 100644 --- a/src/flavors/mini-default.scss +++ b/src/flavors/mini-default.scss @@ -7,107 +7,106 @@ mini.css version: v2.1.0 (Fermion) */ // Basic rules for body and typography -$fore-color: #212121; // Text and general foreground color -$back-color: #f5f5f5; // Body background color +$fore-color: #212121; // Text and general foreground color +$back-color: #f5f5f5; // Body background color $base-font-family: // Default font stack for all elements: '-apple-system, BlinkMacSystemFont,\"Segoe UI\",\"Roboto\", \"Droid Sans\",\"Helvetica Neue\", Helvetica, Arial, sans-serif'; // OS X and iOS system fonts (San Francisco) -> Windows system fonts -> Android system fonts (newer and older) -> Fallback fonts -$base-root-font-size: 16px; // Root font sizing for all elements [1] +$base-root-font-size: 16px; // Root font sizing for all elements [1] $base-font-size: 1em; // Default font sizing for all elements [2] -$base-line-height: 1.5; // Default line height for all elements. -$body-margin: 0; // Margin for the body -$apply-defaults-to-all: true; // Should default values be applied to all - // elements? (`true` or `false`) [3] +$base-line-height: 1.5; // Default line height for all elements. +$body-margin: 0; // Margin for the body +$apply-defaults-to-all: true; // Should default values be applied to all + // elements? (`true` or `false`) [3] $h1-font-size: 2em; // Font size of h1 -$h2-font-size: 1.5em; // Font size for h2 -$h3-font-size: 1.25em; // Font size for h3 -$h4-font-size: 1.1em; // Font size for h4 +$h2-font-size: 1.5em; // Font size for h2 +$h3-font-size: 1.25em; // Font size for h3 +$h4-font-size: 1.1em; // Font size for h4 $h5-font-size: 1em; // Font size for h5 -$h6-font-size: 0.85em; // Font size for h6 -$heading-line-height: 1.2em; // Line height for all headings -$heading-margin: 12px 8px; // Margin for all headings -$heading-font-weight: 500; // Font weight for all headings -$heading-smalltext-fore-color: #424242; // color in headings -$make-heading-smalltext-block: true; // Should elements in headings - // be displayed as blocks (`true`/`false`) [4] -$heading-smalltext-b-font-size: 75%; // Font size of block elements in headings -$heading-smalltext-b-top-margin:-4px; // Top margin of block elements in headings -$paragraph-margin: 1px 8px; // Margin for
elements -$list-margin: 1px 8px 10px; // Margin for
-$blockquote-fore-color: $fore-color; // Text color for-$blockquote-margin: 8px 10px; // Margin for-$blockquote-padding: 6px 10px 24px; // Padding for-$blockquote-sidebar-style: 3px solid #616161; // Style for the sidebar of-$blockquote-cite-font-size: 0.85em; // Font size for citation of-$blockquote-cite-fore-color: #616161; // Text color for citation of-$blockquote-cite-left-position: 10px; // Left padding for citation of-$blockquote-cite-bottom-position: // Bottom padding for citation of- 0; -$blockquote-border-style: 0; // Border style for-$blockquote-border-radius: 0 2px 2px 0; // Border radius for-$blockquote-box-shadow: // Box shadow for+$h6-font-size: 0.85em; // Font size for h6 +$heading-line-height: 1.2em; // Line height for all headings +$heading-margin: 12px 8px; // Margin for all headings +$heading-font-weight: 500; // Font weight for all headings +$heading-smalltext-fore-color: #424242; // color in headings +$make-heading-smalltext-block: true; // Should elements in headings + // be displayed as blocks (`true`/`false`) [4] +$heading-smalltext-b-font-size: 75%; // Font size of block elements in headings +$heading-smalltext-b-top-margin:-4px; // Top margin of block elements in headings +$paragraph-margin: 1px 8px; // Margin forelements +$list-margin: 1px 8px 10px; // Margin for
and
elements +$list-left-padding: 28px; // Left padding for
and
elements +$bold-font-weight: 700; // Font weight for and +$horizontal-rule-line-height: 1.25em; //
line height +$horizontal-rule-margin: 8px; //
margin +$horizontal-rule-border-style: 1px solid #757575;// Border style for horizontal rules (used + // in the
element's border-top) +$horizontal-rule-fancy-style: true; // Should a fancy styling be applied for the + //
element (`true`/`false`) [5] +$horizontal-rule-fancy-gradient:"to right, #bdbdbd, #616161, #bdbdbd"; // Gradient style for fancy horizontal rule +$blockquote-back-color: #eeeeee; // Background color for+$blockquote-fore-color: $fore-color; // Text color for+$blockquote-margin: 8px 10px; // Margin for+$blockquote-padding: 6px 10px 24px; // Padding for+$blockquote-sidebar-style: 3px solid #616161; // Style for the sidebar of+$blockquote-cite-font-size: 0.85em; // Font size for citation of+$blockquote-cite-fore-color: #616161; // Text color for citation of+$blockquote-cite-left-position: 10px; // Left padding for citation of+$blockquote-cite-bottom-position: 0; // Bottom padding for citation of+$blockquote-border-style: 0; // Border style for+$blockquote-border-radius: 0 2px 2px 0; // Border radius for+$blockquote-box-shadow: // Box shadow for0 1px 3px rgba(0,0,0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); -$use-default-code-fonts: true; // Should default font choice (monospace) be - // used for code elements? (`true`/`false`) [6] -//$code-font-family: monospace, monospace; // Fonts for code elements if not default -$code-element-padding: 2px 4px; // Padding for-$code-element-fore-color: $fore-color; // Text color for
-$code-element-back-color: #e0e0e0; // Background color for
-$code-element-border-style: 0; // Border style for
-$code-element-border-radius: 2px; // Border radius for
+$use-default-code-fonts: true; // Should default font choice (monospace) be + // used for code elements? (`true`/`false`) [6] +//$code-font-family: monospace, monospace; // Fonts for code elements if not default +$code-element-padding: 2px 4px; // Padding for
+$code-element-fore-color: $fore-color; // Text color for
+$code-element-back-color: #e0e0e0; // Background color for
+$code-element-border-style: 0; // Border style for
+$code-element-border-radius: 2px; // Border radius for
$code-element-box-shadow: // Box shadow for
0 1px 2px rgba(0,0,0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); -$pre-element-padding: 12px; // Padding for
-$pre-element-fore-color: $code-element-fore-color; // Text color for-$pre-element-back-color: $code-element-back-color; // Background color for-$pre-element-border-style: 0; // Border style for-$pre-element-border-radius: 0 2px 2px 0; // Border radius for-$pre-element-margin: 8px 10px; // Margin for+$pre-element-padding: 12px; // Padding for+$pre-element-fore-color: $code-element-fore-color; // Text color for+$pre-element-back-color: $code-element-back-color; // Background color for+$pre-element-border-style: 0; // Border style for+$pre-element-border-radius: 0 2px 2px 0; // Border radius for+$pre-element-margin: 8px 10px; // Margin for$pre-element-box-shadow: // Box shadow for0 1px 3px rgba(0,0,0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); -$add-pre-element-sidebar: true; // Should a fancy sidebar be added to the - // left side of(`true`/`false`) [7] -$pre-element-sidebar-style: 3px solid #1565c0; // Style of the sidebar of-$kbd-element-padding: 2px 4px; // Padding for -$kbd-element-fore-color: #fafafa; // Text color for -$kbd-element-back-color: $fore-color; // Background color for -$kbd-element-border-style: 0; // Border style for -$kbd-element-border-radius: 2px; // Border radius for +$add-pre-element-sidebar: true; // Should a fancy sidebar be added to the + // left side of(`true`/`false`) [7] +$pre-element-sidebar-style: 3px solid #1565c0; // Style of the sidebar of+$kbd-element-padding: 2px 4px; // Padding for +$kbd-element-fore-color: #fafafa; // Text color for +$kbd-element-back-color: $fore-color; // Background color for +$kbd-element-border-style: 0; // Border style for +$kbd-element-border-radius: 2px; // Border radius for $kbd-element-box-shadow: // Box shadow for 0 1px 2px rgba(0,0,0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); -$style-samp-element: false; // Should styles for be included? - // (`true`/`false`) [8] -//$samp-element-padding: 2px 4px; // Padding for -//$samp-element-fore-color: $fore-color; // Text color for -//$samp-element-back-color: #2196f3; // Background color for -//$samp-element-border-style: 0; // Border style for -//$samp-element-border-radius: 2px; // Border radius for -$include-dfn-fix: true; // Should the fix for Android 4.3 concerning - // be included (`true`/`false`) [9] -$small-font-size: 75%; // Font size for elements -$sup-font-size: 75%; // Font size for elements -$sub-font-size: 75%; // Font size for elements -$sup-top: -8px; // top -$sub-bottom: -4px; // bottom -$link-fore-color: #0277bd; // Text color for -$link-visited-fore-color: #01579b; // Text color for visited +$style-samp-element: false; // Should styles for be included? + // (`true`/`false`) [8] +//$samp-element-padding: 2px 4px; // Padding for +//$samp-element-fore-color: $fore-color; // Text color for +//$samp-element-back-color: #2196f3; // Background color for +//$samp-element-border-style: 0; // Border style for +//$samp-element-border-radius:2px; // Border radius for +$include-dfn-fix: true; // Should the fix for Android 4.3 concerning + // be included (`true`/`false`) [9] +$small-font-size: 75%; // Font size for elements +$sup-font-size: 75%; // Font size for elements +$sub-font-size: 75%; // Font size for elements +$sup-top: -8px; // top +$sub-bottom: -4px; // bottom +$link-fore-color: #0277bd; // Text color for +$link-visited-fore-color: #01579b; // Text color for visited $link-font-weight: 500; // Font weight for -$apply-link-underline: true; // Should an underline be applied to all - // elements? (`true`/`false`) [10] -$apply-link-hover-fade: true; // Should the :hover and :focus state of - // elements use fade-out instead of a different - // color (`true`/`false`) [11] -//$link-hover-fore-color: #0288d1; // Text color for when hovered or focused +$apply-link-underline: true; // Should an underline be applied to all + // elements? (`true`/`false`) [10] +$apply-link-hover-fade: true; // Should the :hover and :focus state of + // elements use fade-out instead of a different + // color (`true`/`false`) [11] +//$link-hover-fore-color: #0288d1; // Text color for when hovered or focused // Notes: // [1] - The value $base-root-font-size should be in `px` only! This rule is very important, as it will determine the root // element's font sizing. diff --git a/src/flavors/mini-sucroa.scss b/src/flavors/mini-sucroa.scss index ae976fb..97436af 100644 --- a/src/flavors/mini-sucroa.scss +++ b/src/flavors/mini-sucroa.scss @@ -11,105 +11,104 @@ // font-family: 'Libre Baskerville', serif; // font-family: 'Cousine', monospace; // Basic rules for body and typography -$fore-color: #211423; // Text and general foreground color -$back-color: #fffcc9; // Body background color -$base-font-family: 'Libre Baskerville', serif; // Default font stack for all elements: -$base-root-font-size: 16px; // Root font sizing for all elements [1] -$base-font-size: 1em; // Default font sizing for all elements [2] -$base-line-height: 1.7; // Default line height for all elements. -$body-margin: 0; // Margin for the body -$apply-defaults-to-all: true; // Should default values be applied to all - // elements? (`true` or `false`) [3] +$fore-color: #211423; // Text and general foreground color +$back-color: #fffcc9; // Body background color +$base-font-family: 'Libre Baskerville', serif; // Default font stack for all elements: +$base-root-font-size: 16px; // Root font sizing for all elements [1] +$base-font-size: 1em; // Default font sizing for all elements [2] +$base-line-height: 1.7; // Default line height for all elements. +$body-margin: 0; // Margin for the body +$apply-defaults-to-all: true; // Should default values be applied to all + // elements? (`true` or `false`) [3] $h1-font-size: 2.2em; // Font size of h1 $h2-font-size: 1.7em; // Font size for h2 $h3-font-size: 1.4em; // Font size for h3 $h4-font-size: 1.2em; // Font size for h4 -$h5-font-size: 1em; // Font size for h5 +$h5-font-size: 1em; // Font size for h5 $h6-font-size: 0.9em; // Font size for h6 -$heading-line-height: 1.2em; // Line height for all headings -$heading-margin: 12px 10px; // Margin for all headings -$heading-font-weight: 500; // Font weight for all headings -$heading-smalltext-fore-color: #424242; // color in headings -$make-heading-smalltext-block: true; // Should elements in headings - // be displayed as blocks (`true`/`false`) [4] -$heading-smalltext-b-font-size: 75%; // Font size of block elements in headings -$heading-smalltext-b-top-margin:-2px; // Top margin of block elements in headings -$paragraph-margin: 4px 10px; // Margin forelements -$list-margin: 4px 10px 10px; // Margin for
and
elements +$heading-line-height: 1.2em; // Line height for all headings +$heading-margin: 12px 10px; // Margin for all headings +$heading-font-weight: 500; // Font weight for all headings +$heading-smalltext-fore-color: #424242; // color in headings +$make-heading-smalltext-block: true; // Should elements in headings + // be displayed as blocks (`true`/`false`) [4] +$heading-smalltext-b-font-size: 75%; // Font size of block elements in headings +$heading-smalltext-b-top-margin:-2px; // Top margin of block elements in headings +$paragraph-margin: 4px 10px; // Margin for
elements +$list-margin: 4px 10px 10px; // Margin for
and
elements $list-left-padding: 32px; // Left padding for
and
elements $bold-font-weight: 700; // Font weight for and -$horizontal-rule-line-height: 1.3em; //
line height -$horizontal-rule-margin: 10px; //
margin -$horizontal-rule-border-style: 1px solid #757575; // Border style for horizontal rules (used - // in the
element's border-top) -$horizontal-rule-fancy-style: true; // Should a fancy styling be applied for the - //
element (`true`/`false`) [5] -$horizontal-rule-fancy-gradient:"to right, #5d545f, #1e1320, #5d545f"; // Gradient style for fancy horizontal rule -$blockquote-back-color: #eae1ff; // Background color for-$blockquote-fore-color: $fore-color; // Text color for-$blockquote-margin: 10px; // Margin for-$blockquote-padding: 8px 12px 28px; // Padding for-$blockquote-sidebar-style: 3px solid #331e36; // Style for the sidebar of-$blockquote-cite-font-size: 0.85em; // Font size for citation of-$blockquote-cite-fore-color: #5d545f; // Text color for citation of-$blockquote-cite-left-position: 10px; // Left padding for citation of-$blockquote-cite-bottom-position: // Bottom padding for citation of- 4px; -$blockquote-border-style: 0; // Border style for-$blockquote-border-radius: 2px; // Border radius for+$horizontal-rule-line-height: 1.3em; //
line height +$horizontal-rule-margin: 10px; //
margin +$horizontal-rule-border-style: 1px solid #757575; // Border style for horizontal rules (used + // in the
element's border-top) +$horizontal-rule-fancy-style: true; // Should a fancy styling be applied for the + //
element (`true`/`false`) [5] +$horizontal-rule-fancy-gradient:"to right, #5d545f, #1e1320, #5d545f"; // Gradient style for fancy horizontal rule +$blockquote-back-color: #eae1ff; // Background color for+$blockquote-fore-color: $fore-color; // Text color for+$blockquote-margin: 10px; // Margin for+$blockquote-padding: 8px 12px 28px; // Padding for+$blockquote-sidebar-style: 3px solid #331e36; // Style for the sidebar of+$blockquote-cite-font-size: 0.85em; // Font size for citation of+$blockquote-cite-fore-color:#5d545f; // Text color for citation of+$blockquote-cite-left-position: 10px; // Left padding for citation of+$blockquote-cite-bottom-position: 4px; // Bottom padding for citation of+$blockquote-border-style: 0; // Border style for+$blockquote-border-radius: 2px; // Border radius for$blockquote-box-shadow: // Box shadow for0 1px 3px rgba(0,0,0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); -$use-default-code-fonts: false; // Should default font choice (monospace) be - // used for code elements? (`true`/`false`) [6] -$code-font-family: 'Cousine', monospace, monospace; // Fonts for code elements if not default -$code-element-padding: 3px 4px; // Padding for-$code-element-fore-color: $fore-color; // Text color for
-$code-element-back-color: #e8deff; // Background color for
-$code-element-border-style: 0; // Border style for
-$code-element-border-radius: 2px; // Border radius for
+$use-default-code-fonts: false; // Should default font choice (monospace) be + // used for code elements? (`true`/`false`) [6] +$code-font-family: 'Cousine', monospace, monospace;// Fonts for code elements if not default +$code-element-padding: 3px 4px; // Padding for
+$code-element-fore-color: $fore-color; // Text color for
+$code-element-back-color: #e8deff; // Background color for
+$code-element-border-style: 0; // Border style for
+$code-element-border-radius:2px; // Border radius for
$code-element-box-shadow: // Box shadow for
0 1px 2px rgba(0,0,0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); -$pre-element-padding: 8px 12px 8px; // Padding for
-$pre-element-fore-color: $code-element-fore-color; // Text color for-$pre-element-back-color: $code-element-back-color; // Background color for-$pre-element-border-style: 0; // Border style for-$pre-element-border-radius: 2px; // Border radius for-$pre-element-margin: 10px; // Margin for+$pre-element-padding: 8px 12px 8px; // Padding for+$pre-element-fore-color: $code-element-fore-color; // Text color for+$pre-element-back-color: $code-element-back-color; // Background color for+$pre-element-border-style: 0; // Border style for+$pre-element-border-radius: 2px; // Border radius for+$pre-element-margin: 10px; // Margin for$pre-element-box-shadow: // Box shadow for0 1px 3px rgba(0,0,0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15); -$add-pre-element-sidebar: true; // Should a fancy sidebar be added to the - // left side of(`true`/`false`) [7] -$pre-element-sidebar-style: 3px solid #6979c6; // Style of the sidebar of-$kbd-element-padding: 3px 4px; // Padding for -$kbd-element-fore-color: #fffddc; // Text color for -$kbd-element-back-color: #331e36; // Background color for -$kbd-element-border-style: 0; // Border style for -$kbd-element-border-radius: 2px; // Border radius for +$add-pre-element-sidebar: true; // Should a fancy sidebar be added to the + // left side of(`true`/`false`) [7] +$pre-element-sidebar-style: 3px solid #6979c6; // Style of the sidebar of+$kbd-element-padding: 3px 4px; // Padding for +$kbd-element-fore-color: #fffddc; // Text color for +$kbd-element-back-color: #331e36; // Background color for +$kbd-element-border-style: 0; // Border style for +$kbd-element-border-radius: 2px; // Border radius for $kbd-element-box-shadow: // Box shadow for 0 1px 2px rgba(0,0,0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.15); -$style-samp-element: false; // Should styles for be included? - // (`true`/`false`) [8] -//$samp-element-padding: 2px 4px; // Padding for -//$samp-element-fore-color: $fore-color; // Text color for -//$samp-element-back-color: #2196f3; // Background color for -//$samp-element-border-style: 0; // Border style for -//$samp-element-border-radius: 2px; // Border radius for -$include-dfn-fix: true; // Should the fix for Android 4.3 concerning - // be included (`true`/`false`) [9] -$small-font-size: 80%; // Font size for elements -$sup-font-size: 80%; // Font size for elements -$sub-font-size: 80%; // Font size for elements -$sup-top: -6px; // top -$sub-bottom: -6px; // bottom -$link-fore-color: #5664a3; // Text color for -$link-visited-fore-color: #434e7f; // Text color for visited +$style-samp-element: false; // Should styles for be included? + // (`true`/`false`) [8] +//$samp-element-padding: 2px 4px; // Padding for +//$samp-element-fore-color: $fore-color; // Text color for +//$samp-element-back-color: #2196f3; // Background color for +//$samp-element-border-style: 0; // Border style for +//$samp-element-border-radius:2px; // Border radius for +$include-dfn-fix: true; // Should the fix for Android 4.3 concerning + // be included (`true`/`false`) [9] +$small-font-size: 80%; // Font size for elements +$sup-font-size: 80%; // Font size for elements +$sub-font-size: 80%; // Font size for elements +$sup-top: -6px; // top +$sub-bottom: -6px; // bottom +$link-fore-color: #5664a3; // Text color for +$link-visited-fore-color: #434e7f; // Text color for visited $link-font-weight: 500; // Font weight for -$apply-link-underline: true; // Should an underline be applied to all - // elements? (`true`/`false`) [10] -$apply-link-hover-fade: true; // Should the :hover and :focus state of - // elements use fade-out instead of a different - // color (`true`/`false`) [11] -//$link-hover-fore-color: #0288d1; // Text color for when hovered or focused +$apply-link-underline: true; // Should an underline be applied to all + // elements? (`true`/`false`) [10] +$apply-link-hover-fade: true; // Should the :hover and :focus state of + // elements use fade-out instead of a different + // color (`true`/`false`) [11] +//$link-hover-fore-color: #0288d1; // Text color for when hovered or focused // Notes: // [1] - The value $base-root-font-size should be in `px` only! This rule is very important, as it will determine the root // element's font sizing. diff --git a/src/mini/_core.scss b/src/mini/_core.scss index c1c464b..90dbf83 100644 --- a/src/mini/_core.scss +++ b/src/mini/_core.scss @@ -1,8 +1,24 @@ /* Browsers resets and base typography. */ -$apply-defaults-to-all: true !default; // Should default values be applied to all elements? (`true` or `false`). -$base-root-font-size: 16px !default; // Root font sizing for all elements - In `px` only! +// Should default values be applied to all elements? (`true`/`false`). +$apply-defaults-to-all: true !default; +// Root font sizing for all elements - Should only be specified in `px` units! +$base-root-font-size: 16px !default; +// Fix display of element in older versions of Android. +$include-dfn-fix: true !default; +// Should elements in headings be displayed as blocks (`true`/`false`). +$make-heading-smalltext-block: false !default; +// Should a fancy styling be applied for the
element (`true`/`false`). +$horizontal-rule-fancy-style: false !default; +// Should a fancy sidebar be added to the left side of(`true`/`false`). +$add-pre-element-sidebar: false !default; +// Should an underline be applied to all elements? (`true`/`false`). +$apply-link-underline: true !default; +// Should the :hover and :focus state of elements use fade-out instead of +// a different color (`true`/`false`). +$apply-link-hover-fade: true !default; + html { font-size: $base-root-font-size; // Set root's font sizing. } @@ -68,8 +84,7 @@ img { height: auto; } -// Fix display in older versions of Android. -$include-dfn-fix: true !default; +// Fix display of element in older versions of Android. @if $include-dfn-fix { dfn { font-style: italic; @@ -82,7 +97,6 @@ h1, h2, h3, h4, h5, h6 { font-weight: $heading-font-weight; small { color: $heading-smalltext-fore-color; - $make-heading-smalltext-block: false !default; @if $make-heading-smalltext-block { display: block; @if $heading-smalltext-b-top-margin != 0 { @@ -135,7 +149,6 @@ hr { // Actual styling using variables line-height: $horizontal-rule-line-height; margin: $horizontal-rule-margin; - $horizontal-rule-fancy-style: false !default; @if $horizontal-rule-fancy-style { height: 1px; background: -webkit-linear-gradient(#{$horizontal-rule-fancy-gradient}); @@ -238,7 +251,6 @@ pre { @if pre-element-margin != 0 { margin: $pre-element-margin; } - $add-pre-element-sidebar: false !default; @if $add-pre-element-sidebar { border-left: $pre-element-sidebar-style; } @@ -375,8 +387,6 @@ $style-samp-element: false !default; } } -$apply-link-underline: true !default; -$apply-link-hover-fade: true !default; a{ color: $link-fore-color; @if $apply-link-underline {