Skip to content

Commit

Permalink
chore(release): 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Sep 20, 2020
1 parent 2952966 commit 3a09d5c
Show file tree
Hide file tree
Showing 5 changed files with 141 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.6.0](https://github.com/twbs/bootstrap-sass/compare/v3.5.1...v3.6.0) (2020-09-20)


### Features

* **loader:** add loader styles ([279c24d](https://github.com/twbs/bootstrap-sass/commit/279c24df89c5529ffc9c561a9ba5ef43e50dd9fa))
* add skip-link ([2952966](https://github.com/twbs/bootstrap-sass/commit/295296618810b81f8fff14fb2f9c48175b4e269e))


### Bug Fixes

* move all nav items right ([84afafa](https://github.com/twbs/bootstrap-sass/commit/84afafa07d3e8371c732d8dd57986bda3bc893b0))
* **loader:** use hidden attribute ([a604763](https://github.com/twbs/bootstrap-sass/commit/a6047630b1e685fc91fa1d8b6b0d10a3073259d5))
* **navbar:** support buttons in navbar ([9776d53](https://github.com/twbs/bootstrap-sass/commit/9776d5323f0f5d9f288918316c93e5164a9b45a5))

### [3.5.1](https://github.com/twbs/bootstrap-sass/compare/v3.5.0...v3.5.1) (2020-09-17)


Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
"dependencies": {
"jquery": "1.9.1 - 3"
},
"version": "3.5.1"
"version": "3.6.0"
}
128 changes: 123 additions & 5 deletions dist/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -3323,10 +3323,19 @@ tbody.collapse.in {

.navbar-nav {
margin: 10px -15px; }
.navbar-nav > li > a {
.navbar-nav > li > a,
.navbar-nav > li > button {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px; }
.navbar-nav > li > button {
width: 100%;
padding: 1em;
margin-top: 0;
margin-bottom: 0;
background-color: inherit;
border: 0;
border-radius: 0; }
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
Expand All @@ -3351,7 +3360,8 @@ tbody.collapse.in {
margin: 0; }
.navbar-nav > li {
float: left; }
.navbar-nav > li > a {
.navbar-nav > li > a,
.navbar-nav > li > button {
padding-top: 20px;
padding-bottom: 20px; } }

Expand Down Expand Up @@ -3473,13 +3483,16 @@ tbody.collapse.in {
background-color: transparent; }
.navbar-default .navbar-text {
color: #ffffff; }
.navbar-default .navbar-nav > li > a {
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > button {
color: #ffffff; }
.navbar-default .navbar-nav > li > a:focus {
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > button:focus {
outline: 2px solid #ffffff;
outline-offset: -2px;
background-color: #017d87; }
.navbar-default .navbar-nav > li > a:hover {
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > button:hover {
color: #ffffff;
background-color: #005d64; }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
Expand Down Expand Up @@ -4901,3 +4914,108 @@ a.label:hover, a.label:focus {
@media print {
.hidden-print {
display: none !important; } }

.loading-indicator:not([hidden]) {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1050;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
margin: auto;
background-color: rgba(255, 255, 255, 0.75); }

.loader-background {
background-color: #ffffff; }

.cradle {
display: flex;
font-size: 2em; }

.cradle-node {
transform-origin: center -1em; }

.cradle-ball {
width: 2em;
height: 2em;
background: #107179;
border-radius: 50%;
box-shadow: inset -0.08em -0.4em 1px rgba(0, 0, 0, 0.15); }

.cradle-node:first-child {
animation: left-bounce 607.5ms cubic-bezier(0, 0, 0.5, 1) infinite alternate; }

.cradle-node:last-child {
animation: right-bounce 607.5ms cubic-bezier(0, 0, 0.5, 1) 607.5ms infinite alternate; }

.cradle-node:first-child .cradle-ball {
animation: left-shift-colour 2430ms cubic-bezier(0, 0, 0.5, 1) infinite; }

.cradle-node:last-child .cradle-ball {
animation: right-shift-colour 2430ms cubic-bezier(0, 0, 0.5, 1) 607.5ms infinite; }

@keyframes left-bounce {
0%,
50% {
transform: rotate(0deg); }
100% {
transform: rotate(35deg); } }

@keyframes right-bounce {
0%,
50% {
transform: rotate(0deg); }
100% {
transform: rotate(-35deg); } }

@keyframes left-shift-colour {
0%,
12.4%,
37.5%,
62.4%,
87.5% {
background: #107179;
box-shadow: inset -0.08em -0.4em 1px rgba(0, 0, 0, 0.15); }
25%,
75% {
box-shadow: inset -4px -8px 1px rgba(0, 0, 0, 0.15); }
12.5%,
37.4% {
background: #fbbf45; }
62.5%,
87.4% {
background: #59d1e4; } }

@keyframes right-shift-colour {
0%,
12.4%,
37.5%,
62.4%,
87.5% {
background: #107179;
box-shadow: inset -0.08em -0.4em 1px rgba(0, 0, 0, 0.15); }
25%,
75% {
box-shadow: inset 0.08em -8px 1px rgba(0, 0, 0, 0.15); }
12.5%,
37.4% {
background: #6fdac9; }
62.5%,
87.4% {
background: #fc4589; } }

.c-skip-link:focus {
position: absolute;
background-color: #005d64;
color: #fff;
font-weight: 600;
padding: 1rem 2rem;
outline: 3px solid #fff;
opacity: initial;
text-decoration: underline;
text-underline-position: under;
transition: none; }
2 changes: 1 addition & 1 deletion dist/app.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-sass",
"version": "3.5.1",
"version": "3.6.0",
"description": "bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.",
"main": "assets/javascripts/bootstrap.js",
"style": "assets/stylesheets/_bootstrap.scss",
Expand Down

0 comments on commit 3a09d5c

Please sign in to comment.