Skip to content

Commit

Permalink
Release v4.0.13 (#492)
Browse files Browse the repository at this point in the history
* update style on .qg-section-nav (#461)

* move style from squiz to _qg-forms.scss (#462)

* Minimize search component (#466)

* Minimize search component

* Minimize search component

* update aside style (#464)

* decommission qg-cut-in (#475)

* fix banner tags spacing issue (#474)

* fix gq-card style (#473)

* QOL-8647 Removed max-width to allow long breadcrumbs to fill line space available (#476)

* update deprecation message (#477)

* Qol 8843 improvement multi select (form.io) component styles (#479)

* QOL-8843
Improvement: Multi-select (Form.io) component styles

* QOL-8843
Improvement: Multi-select (Form.io) component styles

* updated styles

* updated styles

* QOL-8843
Improvement: Multi-select (Form.io) component styles

* QOL-8843
Improvement: Multi-select (Form.io) component styles

* QOL-8843
Improvement: Multi-select (Form.io) component styles

* alert box spacing (#480)

* Changed the color used for code to meet WCAG 2.1 AA contrast ratio requirements (#481)

* Alert box margin (#483)

* alert box spacing

* alert box spacing

* Qol 9031 add spinner component (#482)

* add css helper class

* add and expose global css variables

* add spinner component

* fix typo

* Qol 9031 add spinner component (#484)

* update component stories

* forms.io styles update

* forms.io styles update

* Qol 9076 fix card margin (#485)

* update card style

* fix card style

* forms.io styles update (#486)

* Qol 9031 add spinner component (#487)

* update spinners doc

* Qol 9031 add spinner component (#488)

* update spinner default style

* forms.io styles update

* forms.io styles update

* Qol 8843 forms.io styles update (#491)

* forms.io styles update

* forms.io styles update

* styles update

* reverted the content as some other test code got commited.

* deleted examples of specific forms

Co-authored-by: Asif Amin <30643973+asifamingov@users.noreply.github.com>
Co-authored-by: Bec Launder <950889+re-becca@users.noreply.github.com>
Co-authored-by: asifamingov <asif.amin@dsiti.qld.gov.au>
  • Loading branch information
4 people committed Sep 2, 2022
1 parent a5c8ab5 commit ff92f61
Show file tree
Hide file tree
Showing 32 changed files with 763 additions and 298 deletions.
2 changes: 1 addition & 1 deletion gulp/common-tasks/scss.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = function (gulp, plugins, config, destFolder = 'assets', addSrc)
browsers: plugins.supportedBrowser,
cascade: false,
}))
.pipe(sourcemaps.write())
.pipe(sourcemaps.write('.'))
// .pipe(plugins.if(type === 'release', plugins.cleanCss()))
.pipe(plugins.if(typeof destFolder[0] !== 'undefined', gulp.dest(`${dest.base}/${destFolder[0]}/${dest.ext}`)))
.pipe(plugins.if(typeof destFolder[1] !== 'undefined', gulp.dest(`${dest.base}/${destFolder[1]}/${dest.ext}`)))
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": "Queensland-Government-Web-Template",
"version": "4.0.12",
"version": "4.0.13",
"description": "This template is designed to provide a template for all Franchise websites, and the underpinning technology for new Agency websites.",
"main": "gulpfile.babel.js",
"repository": {
Expand Down
19 changes: 6 additions & 13 deletions src/assets/_project/_blocks/components/alerts/_qg-alert.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// global alert styles
.qg-global-alert {
margin-bottom: 0;
}

// content alert and global alert styles
.alert {
position: relative;
color: #000;
Expand All @@ -22,38 +28,25 @@
border: none;
border-left: 5px solid $brand-danger;
background-color: #FCF4F6;
& + .alert-danger{
@extend .mt-4
}
}
&.alert-success {
border: none;
border-left: 5px solid $brand-success;
background-color: #f2f7ea;
& + .alert-success{
@extend .mt-4
}
}
&.alert-info {
border: none;
border-left: 5px solid $brand-info;
background-color: #eff5f6;
& + .alert-info{
@extend .mt-4
}
}
&.alert-warning {
border: none;
border-left: 5px solid $brand-warning;
background-color: #ffedde;
& + .alert-warning{
@extend .mt-4
}
}
&.alert-success, &.alert-info, &.alert-warning, &.alert-tip, &.alert-danger{
font-weight: normal;
color: #000;
margin: 0;
border-radius: 0;
padding: 0.75rem 1.25rem;
h2{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
}
}
}
.qg-promotional-banner__popular-apps-tags {
margin-left: -4px;
margin-right: -4px;
}
}

.qg-promotional-banner__info > h2 {
Expand Down
Loading

0 comments on commit ff92f61

Please sign in to comment.