Skip to content

Commit

Permalink
Wedge v2 updates (#344)
Browse files Browse the repository at this point in the history
* add css for wedgeV2

* update versions and readme

* fix hrs
  • Loading branch information
jamesros161 authored Feb 16, 2021
1 parent cdc9240 commit 27aeafd
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ user guide for more information.

## Changelog ##

### 2.5.2 ###
Bug Fix: Crio - Nested Row [#343](https://github.com/BoldGrid/boldgrid-theme-framework/issues/343)
Update: Added CSS styles for WedgeV2 update.

### 2.5.1 ###
Bug Fix: Full width menu background doesn't touch sides [#327] (https://github.com/BoldGrid/boldgrid-theme-framework/issues/327)
Bug Fix: Widget in full width header = horizontal scrollbar [#244] (https://github.com/BoldGrid/boldgrid-theme-framework/issues/244)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boldgrid-theme-framework",
"version": "2.5.1",
"version": "2.5.2",
"description": "BoldGrid Theme Framework",
"main": "index.js",
"engines": {
Expand Down
5 changes: 4 additions & 1 deletion src/assets/scss/boldgrid-theme-framework.scss
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,7 @@
--------------------------------------------------------------*/
@import "boldgrid/margin-fix";


/*--------------------------------------------------------------
# Inspiration Specific Styles ( Added in 2.5.2 )
--------------------------------------------------------------*/
@import "boldgrid/inspiration-styles";
16 changes: 16 additions & 0 deletions src/assets/scss/boldgrid/_inspiration-styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.wedge-cta {
background: rgba(255, 255, 255, 0.8);
}

.wedge-cta-dark {
background: rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width:992px) {
.wedge-cta {
background:none
}
.wedge-cta-dark {
background:none
}
}
19 changes: 18 additions & 1 deletion src/assets/scss/boldgrid/_margin-fix.scss
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,17 @@
margin-right: 0px;
}
.container {
.row {
> .row {
&:not( .bg-editor-hr-wrap ) {
margin-left: 20px;
margin-right: 20px;
}
}
.row {
&.bg-editor-hr-wrap {
> div {
padding-left:0px;
padding-right: 0px;
}
}
}
Expand Down Expand Up @@ -437,6 +440,20 @@ footer#colophon {
}
}
}
#main-wrapper.full-width {
.main {
.entry-content {
.container {
> .row {
&:not( .bg-editor-hr-wrap ) {
margin-left: 0px;
margin-right: 0px;
}
}
}
}
}
}
}
@media only screen and (max-width: 768px) {
.has-sidebar.left-sidebar {
Expand Down
2 changes: 1 addition & 1 deletion src/boldgrid-theme-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: BoldGrid Theme Framework
* Plugin URI: https://www.boldgrid.com/docs/configuration-file
* Description: BoldGrid Theme Framework is a library that allows you to easily make BoldGrid themes. Please see our reference guide for more information: https://www.boldgrid.com/docs/configuration-file
* Version: 2.5.1
* Version: 2.5.2
* Author: BoldGrid.com <[email protected]>
* Author URI: https://www.boldgrid.com/
* Text Domain: bgtfw
Expand Down

0 comments on commit 27aeafd

Please sign in to comment.