mirror of
https://github.com/gantry/gantry5.git
synced 2026-08-19 01:15:04 -05:00
Fix warnings during CSS compiling (#1667)
This commit is contained in:
+7
-1
@@ -1,9 +1,15 @@
|
||||
# 5.3.9
|
||||
## XX/XX/2016
|
||||
|
||||
1. [Common](#common)
|
||||
3. [](#bugfix)
|
||||
|
||||
# 5.3.8
|
||||
## 10/11/2016
|
||||
|
||||
3. [WordPress](#wordpress)
|
||||
3. [](#bugfix)
|
||||
- Fixed Gantry settings not being available in multi-site environments (#1610)
|
||||
- Fixed Gantry settings not being available in multi-site environments (#1610, thanks @dudewithamood)
|
||||
- Fixed issues with Gantry menu mixing up menu item parameters and ordering after using WordPress Importer (#1669)
|
||||
|
||||
# 5.3.7
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
$bullet-icon-size: 3.5rem !default;
|
||||
|
||||
$bullet-icon-color-1: $core-accent !default;
|
||||
$bullet-icon-color-2: adjust-hue($core-accent, -20) !default;
|
||||
$bullet-icon-color-3: adjust-hue($core-accent, -130) !default;
|
||||
@@ -0,0 +1,75 @@
|
||||
// Core
|
||||
$core-text: #444 !default;
|
||||
$core-accent: #1BB3E9 !default;
|
||||
$secondary-link: #F6635E !default;
|
||||
$white: #fff !default;
|
||||
$black: #000 !default;
|
||||
$light-gray: #ddd !default;
|
||||
$border-color: #EEEEEE !default;
|
||||
|
||||
// Borders
|
||||
$core-border-color: $light-gray !default;
|
||||
$core-border-color-hover: darken($core-border-color, 10) !default;
|
||||
$core-border-color-focus: $core-accent !default;
|
||||
|
||||
// Shadows
|
||||
$core-box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.06) !default;
|
||||
$core-box-shadow-focus: $core-box-shadow, 0 0 5px rgba(darken($core-border-color-focus, 5), 0.7) !default;
|
||||
|
||||
// Background
|
||||
$page-bg: #fff !default;
|
||||
|
||||
// Header
|
||||
$header-text: #FFFFFF !default;
|
||||
|
||||
// Nav
|
||||
$navbar-text: #75879A !default;
|
||||
$navbar-bg: #FFFFFF !default;
|
||||
|
||||
// Showcase
|
||||
$showcase-bg: lighten($core-accent, 6%) !default;
|
||||
$showcase-text: #fff !default;
|
||||
|
||||
// Feature
|
||||
$feature-bg: #fff !default;
|
||||
|
||||
// Main Body
|
||||
$main-bg: #f7f7f7 !default;
|
||||
$body-border: darken($main-bg, 5%) !default;
|
||||
|
||||
// Sidebar
|
||||
$sidebar-text: #aaa !default;
|
||||
|
||||
// Bottom
|
||||
$bottom-bg: #f7f7f7 !default;
|
||||
$bottom-text: $core-text !default;
|
||||
|
||||
// Footer
|
||||
$footer-bg: #333 !default;
|
||||
$footer-text: #999 !default;
|
||||
|
||||
$rule-color: #F0F2F4 !default;
|
||||
$code-text: #c7254e !default;
|
||||
$code-bg: #f9f2f4 !default;
|
||||
$pre-text: #237794 !default;
|
||||
$pre-bg: #f0f0f0 !default;
|
||||
|
||||
// Dark Contrast variation
|
||||
$dark-navbar-text: #999 !default;
|
||||
$dark-sidebar: #222 !default;
|
||||
$dark-sidebar-text: #999 !default;
|
||||
$dark-main-bg: #333 !default;
|
||||
$dark-body-border: #666 !default;
|
||||
|
||||
// Info - Yellow
|
||||
$notes-info-border: #F0AD4E !default;
|
||||
$notes-info-bg: #FCF8F2 !default;
|
||||
// Warning - Red
|
||||
$notes-warning-border: #D9534F !default;
|
||||
$notes-warning-bg: #FDF7F7 !default;
|
||||
// Note - Blue
|
||||
$notes-note-border: #5BC0DE !default;
|
||||
$notes-note-bg: #F4F8FA !default;
|
||||
// Success - Green
|
||||
$notes-success-border: #5CB85C !default;
|
||||
$notes-success-bg: #F1F9F1 !default;
|
||||
+5
-5
@@ -1,7 +1,7 @@
|
||||
// Font Family
|
||||
$font-family-default: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
||||
$font-family-header: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
||||
$font-family-mono: "Inconsolata", monospace;
|
||||
$font-family-serif: "Georgia", "Times", "Times New Roman", serif;
|
||||
$font-family-default: "Raleway", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default;
|
||||
$font-family-header: "Montserrat", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default;
|
||||
$font-family-mono: "Inconsolata", monospace !default;
|
||||
$font-family-serif: "Georgia", "Times", "Times New Roman", serif !default;
|
||||
|
||||
$icons: "FontAwesome";
|
||||
$icons: "FontAwesome" !default;
|
||||
@@ -0,0 +1,13 @@
|
||||
// Sizes
|
||||
$header-height: 5rem !default;
|
||||
$footer-height: 6rem !default;
|
||||
$border-radius: 3px !default;
|
||||
|
||||
// Font Weights
|
||||
$font-weight-bold: 600 !default;
|
||||
$font-weight-regular: 400 !default;
|
||||
$font-weight-light:300 !default;
|
||||
|
||||
// Global Paddings
|
||||
$padding-horiz: 7rem !default;
|
||||
$padding-vert: 3rem !default;
|
||||
@@ -0,0 +1,26 @@
|
||||
// REQUIRED DEPENDENCIES - DO NOT CHANGE
|
||||
|
||||
// Load Bourbon library
|
||||
@import "vendor/bourbon/bourbon";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Nucleus Configuration Defaults
|
||||
@import "configuration/nucleus/base";
|
||||
|
||||
// Load Grav Configuration Defaults
|
||||
@import "configuration/grav/base";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Nucleus Mixins and Functions
|
||||
@import "nucleus/functions/base";
|
||||
@import "nucleus/mixins/base";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Alerts Highlighting
|
||||
@import "nucleus/theme/alerts";
|
||||
|
||||
// Load Grav Assets
|
||||
@import "grav/base";
|
||||
@@ -0,0 +1 @@
|
||||
@import "theme/base";
|
||||
@@ -1,5 +0,0 @@
|
||||
$bullet-icon-size: 3.5rem;
|
||||
|
||||
$bullet-icon-color-1: $core-accent;
|
||||
$bullet-icon-color-2: adjust-hue($core-accent, -20);
|
||||
$bullet-icon-color-3: adjust-hue($core-accent, -130);
|
||||
@@ -1,75 +0,0 @@
|
||||
// Core
|
||||
$core-text: #444;
|
||||
$core-accent: #1BB3E9;
|
||||
$secondary-link: #F6635E;
|
||||
$white: #fff;
|
||||
$black: #000;
|
||||
$light-gray: #ddd;
|
||||
$border-color: #EEEEEE;
|
||||
|
||||
// Borders
|
||||
$core-border-color: $light-gray;
|
||||
$core-border-color-hover: darken($core-border-color, 10);
|
||||
$core-border-color-focus: $core-accent;
|
||||
|
||||
// Shadows
|
||||
$core-box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.06);
|
||||
$core-box-shadow-focus: $core-box-shadow, 0 0 5px rgba(darken($core-border-color-focus, 5), 0.7);
|
||||
|
||||
// Background
|
||||
$page-bg: #fff;
|
||||
|
||||
// Header
|
||||
$header-text: #FFFFFF;
|
||||
|
||||
// Nav
|
||||
$navbar-text: #75879A;
|
||||
$navbar-bg: #FFFFFF;
|
||||
|
||||
// Showcase
|
||||
$showcase-bg: lighten($core-accent, 6%);
|
||||
$showcase-text: #fff;
|
||||
|
||||
// Feature
|
||||
$feature-bg: #fff;
|
||||
|
||||
// Main Body
|
||||
$main-bg: #f7f7f7;
|
||||
$body-border: darken($main-bg, 5%);
|
||||
|
||||
// Sidebar
|
||||
$sidebar-text: #aaa;
|
||||
|
||||
// Bottom
|
||||
$bottom-bg: #f7f7f7;
|
||||
$bottom-text: $core-text;
|
||||
|
||||
// Footer
|
||||
$footer-bg: #333;
|
||||
$footer-text: #999;
|
||||
|
||||
$rule-color: #F0F2F4;
|
||||
$code-text: #c7254e;
|
||||
$code-bg: #f9f2f4;
|
||||
$pre-text: #237794;
|
||||
$pre-bg: #f0f0f0;
|
||||
|
||||
// Dark Contrast variation
|
||||
$dark-navbar-text: #999;
|
||||
$dark-sidebar: #222;
|
||||
$dark-sidebar-text: #999;
|
||||
$dark-main-bg: #333;
|
||||
$dark-body-border: #666;
|
||||
|
||||
// Info - Yellow
|
||||
$notes-info-border: #F0AD4E;
|
||||
$notes-info-bg: #FCF8F2;
|
||||
// Warning - Red
|
||||
$notes-warning-border: #D9534F;
|
||||
$notes-warning-bg: #FDF7F7;
|
||||
// Note - Blue
|
||||
$notes-note-border: #5BC0DE;
|
||||
$notes-note-bg: #F4F8FA;
|
||||
// Success - Green
|
||||
$notes-success-border: #5CB85C;
|
||||
$notes-success-bg: #F1F9F1;
|
||||
@@ -1,13 +0,0 @@
|
||||
// Sizes
|
||||
$header-height: 5rem;
|
||||
$footer-height: 6rem;
|
||||
$border-radius: 3px;
|
||||
|
||||
// Font Weights
|
||||
$font-weight-bold: 600;
|
||||
$font-weight-regular: 400;
|
||||
$font-weight-light:300;
|
||||
|
||||
// Global Paddings
|
||||
$padding-horiz: 7rem;
|
||||
$padding-vert: 3rem;
|
||||
@@ -1,20 +1,23 @@
|
||||
// REQUIRED DEPENDENCIES - DO NOT CHANGE
|
||||
|
||||
// Load Third Party Libraries
|
||||
// Load Bourbon library
|
||||
@import "vendor/bourbon/bourbon";
|
||||
|
||||
// Load Nucleus Configuration
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Nucleus Configuration Defaults
|
||||
@import "configuration/nucleus/base";
|
||||
|
||||
// Load Nucleus Mixins and Functions
|
||||
@import "nucleus/functions/base";
|
||||
@import "nucleus/mixins/base";
|
||||
// Load Grav Configuration Defaults
|
||||
@import "configuration/grav/base";
|
||||
|
||||
// Load Grav Configuration
|
||||
@import "grav/configuration/base";
|
||||
// Load Theme Configuration
|
||||
@import "configuration/base";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Theme Variable Driven Nucleus Elements
|
||||
@import "grav/theme/base";
|
||||
@import "grav";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
|
||||
@@ -1,20 +1,23 @@
|
||||
// REQUIRED DEPENDENCIES - DO NOT CHANGE
|
||||
|
||||
// Load Third Party Libraries
|
||||
// Load Bourbon library
|
||||
@import "vendor/bourbon/bourbon";
|
||||
|
||||
// Load Nucleus Configuration
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Nucleus Configuration Defaults
|
||||
@import "configuration/nucleus/base";
|
||||
|
||||
// Load Nucleus Mixins and Functions
|
||||
@import "nucleus/functions/base";
|
||||
@import "nucleus/mixins/base";
|
||||
// Load Grav Configuration Defaults
|
||||
@import "configuration/grav/base";
|
||||
|
||||
// Load Theme Configuration
|
||||
@import "configuration/base";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
// Load Theme Variable Driven Nucleus Elements
|
||||
@import "grav/theme/base";
|
||||
|
||||
// Load Grav Configuration
|
||||
@import "grav/configuration/base";
|
||||
@import "grav";
|
||||
|
||||
//-------------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user