This commit is contained in:
Jeremy Thomas 2017-08-07 19:57:34 +01:00
parent 5bbc4c8037
commit 5560ec8a1b
4 changed files with 22 additions and 21 deletions

View File

@ -10,6 +10,7 @@
### Issues closed ### Issues closed
* #1030 Add `!importnant` to non responsive display helpers
* #1020 Customizing `.navbar-item img` max height * #1020 Customizing `.navbar-item img` max height
* #998 `.navbar-dropdown` with **right** alignment * #998 `.navbar-dropdown` with **right** alignment
* #877 `.pagination` isn't using `$pagination-background` * #877 `.pagination` isn't using `$pagination-background`

View File

@ -730,7 +730,7 @@ table th {
} }
a.has-text-white:hover, a.has-text-white:focus { a.has-text-white:hover, a.has-text-white:focus {
color: #e6e6e6; color: #e6e6e6 !important;
} }
.has-text-black { .has-text-black {
@ -738,7 +738,7 @@ a.has-text-white:hover, a.has-text-white:focus {
} }
a.has-text-black:hover, a.has-text-black:focus { a.has-text-black:hover, a.has-text-black:focus {
color: black; color: black !important;
} }
.has-text-light { .has-text-light {
@ -746,7 +746,7 @@ a.has-text-black:hover, a.has-text-black:focus {
} }
a.has-text-light:hover, a.has-text-light:focus { a.has-text-light:hover, a.has-text-light:focus {
color: #dbdbdb; color: #dbdbdb !important;
} }
.has-text-dark { .has-text-dark {
@ -754,7 +754,7 @@ a.has-text-light:hover, a.has-text-light:focus {
} }
a.has-text-dark:hover, a.has-text-dark:focus { a.has-text-dark:hover, a.has-text-dark:focus {
color: #1c1c1c; color: #1c1c1c !important;
} }
.has-text-primary { .has-text-primary {
@ -762,7 +762,7 @@ a.has-text-dark:hover, a.has-text-dark:focus {
} }
a.has-text-primary:hover, a.has-text-primary:focus { a.has-text-primary:hover, a.has-text-primary:focus {
color: #009e86; color: #009e86 !important;
} }
.has-text-info { .has-text-info {
@ -770,7 +770,7 @@ a.has-text-primary:hover, a.has-text-primary:focus {
} }
a.has-text-info:hover, a.has-text-info:focus { a.has-text-info:hover, a.has-text-info:focus {
color: #205bbc; color: #205bbc !important;
} }
.has-text-success { .has-text-success {
@ -778,7 +778,7 @@ a.has-text-info:hover, a.has-text-info:focus {
} }
a.has-text-success:hover, a.has-text-success:focus { a.has-text-success:hover, a.has-text-success:focus {
color: #1ca64c; color: #1ca64c !important;
} }
.has-text-warning { .has-text-warning {
@ -786,7 +786,7 @@ a.has-text-success:hover, a.has-text-success:focus {
} }
a.has-text-warning:hover, a.has-text-warning:focus { a.has-text-warning:hover, a.has-text-warning:focus {
color: #ffd324; color: #ffd324 !important;
} }
.has-text-danger { .has-text-danger {
@ -794,7 +794,7 @@ a.has-text-warning:hover, a.has-text-warning:focus {
} }
a.has-text-danger:hover, a.has-text-danger:focus { a.has-text-danger:hover, a.has-text-danger:focus {
color: #ff0537; color: #ff0537 !important;
} }
.has-text-black-bis { .has-text-black-bis {
@ -834,7 +834,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
.is-block { .is-block {
display: block; display: block !important;
} }
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
@ -892,9 +892,9 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
.is-flex { .is-flex {
display: -webkit-box; display: -webkit-box !important;
display: -ms-flexbox; display: -ms-flexbox !important;
display: flex; display: flex !important;
} }
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
@ -970,7 +970,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
.is-inline { .is-inline {
display: inline; display: inline !important;
} }
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
@ -1028,7 +1028,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
.is-inline-block { .is-inline-block {
display: inline-block; display: inline-block !important;
} }
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
@ -1086,9 +1086,9 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
.is-inline-flex { .is-inline-flex {
display: -webkit-inline-box; display: -webkit-inline-box !important;
display: -ms-inline-flexbox; display: -ms-inline-flexbox !important;
display: inline-flex; display: inline-flex !important;
} }
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {

File diff suppressed because one or more lines are too long

View File

@ -93,7 +93,7 @@ $alignments: ('centered': 'center', 'left': 'left', 'right': 'right')
a.has-text-#{$name} a.has-text-#{$name}
&:hover, &:hover,
&:focus &:focus
color: darken($color, 10%) color: darken($color, 10%) !important
@each $name, $shade in $shades @each $name, $shade in $shades
.has-text-#{$name} .has-text-#{$name}
@ -105,7 +105,7 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
@each $display in $displays @each $display in $displays
.is-#{$display} .is-#{$display}
display: #{$display} display: #{$display} !important
+mobile +mobile
.is-#{$display}-mobile .is-#{$display}-mobile
display: #{$display} !important display: #{$display} !important