mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Fix #1030
This commit is contained in:
parent
5bbc4c8037
commit
5560ec8a1b
@ -10,6 +10,7 @@
|
||||
|
||||
### Issues closed
|
||||
|
||||
* #1030 Add `!importnant` to non responsive display helpers
|
||||
* #1020 Customizing `.navbar-item img` max height
|
||||
* #998 `.navbar-dropdown` with **right** alignment
|
||||
* #877 `.pagination` isn't using `$pagination-background`
|
||||
|
@ -730,7 +730,7 @@ table th {
|
||||
}
|
||||
|
||||
a.has-text-white:hover, a.has-text-white:focus {
|
||||
color: #e6e6e6;
|
||||
color: #e6e6e6 !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: black;
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #dbdbdb;
|
||||
color: #dbdbdb !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #1c1c1c;
|
||||
color: #1c1c1c !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #009e86;
|
||||
color: #009e86 !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #205bbc;
|
||||
color: #205bbc !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #1ca64c;
|
||||
color: #1ca64c !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #ffd324;
|
||||
color: #ffd324 !important;
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #ff0537;
|
||||
color: #ff0537 !important;
|
||||
}
|
||||
|
||||
.has-text-black-bis {
|
||||
@ -834,7 +834,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
||||
}
|
||||
|
||||
.is-block {
|
||||
display: block;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
@ -892,9 +892,9 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
||||
}
|
||||
|
||||
.is-flex {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
display: -webkit-box !important;
|
||||
display: -ms-flexbox !important;
|
||||
display: flex !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
@ -970,7 +970,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
||||
}
|
||||
|
||||
.is-inline {
|
||||
display: inline;
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
@ -1028,7 +1028,7 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
||||
}
|
||||
|
||||
.is-inline-block {
|
||||
display: inline-block;
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
@ -1086,9 +1086,9 @@ a.has-text-danger:hover, a.has-text-danger:focus {
|
||||
}
|
||||
|
||||
.is-inline-flex {
|
||||
display: -webkit-inline-box;
|
||||
display: -ms-inline-flexbox;
|
||||
display: inline-flex;
|
||||
display: -webkit-inline-box !important;
|
||||
display: -ms-inline-flexbox !important;
|
||||
display: inline-flex !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
|
File diff suppressed because one or more lines are too long
@ -93,7 +93,7 @@ $alignments: ('centered': 'center', 'left': 'left', 'right': 'right')
|
||||
a.has-text-#{$name}
|
||||
&:hover,
|
||||
&:focus
|
||||
color: darken($color, 10%)
|
||||
color: darken($color, 10%) !important
|
||||
|
||||
@each $name, $shade in $shades
|
||||
.has-text-#{$name}
|
||||
@ -105,7 +105,7 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
|
||||
|
||||
@each $display in $displays
|
||||
.is-#{$display}
|
||||
display: #{$display}
|
||||
display: #{$display} !important
|
||||
+mobile
|
||||
.is-#{$display}-mobile
|
||||
display: #{$display} !important
|
||||
|
Loading…
Reference in New Issue
Block a user