mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
Fixes #131: header items broken on IE11
When using the shorthand property on .header-item the flex-basis is set to 0px in IE11 Signed-off-by: Deyan Yanakiev <kliomba@abv.bg>
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
max-height: 24px
|
max-height: 24px
|
||||||
a
|
a
|
||||||
color: $text
|
color: $text
|
||||||
flex: 1
|
flex-grow: 1
|
||||||
&:hover
|
&:hover
|
||||||
color: $link-hover
|
color: $link-hover
|
||||||
&.is-active
|
&.is-active
|
||||||
@@ -143,4 +143,3 @@
|
|||||||
&:hover,
|
&:hover,
|
||||||
&.is-active
|
&.is-active
|
||||||
border-bottom-width: 2px
|
border-bottom-width: 2px
|
||||||
|
|
||||||
|
|||||||
6
css/bulma.css
vendored
6
css/bulma.css
vendored
@@ -3990,9 +3990,9 @@ a.menu-block:hover {
|
|||||||
.header-item a {
|
.header-item a {
|
||||||
color: #69707a;
|
color: #69707a;
|
||||||
-webkit-box-flex: 1;
|
-webkit-box-flex: 1;
|
||||||
-webkit-flex: 1;
|
-webkit-flex-grow: 1;
|
||||||
-ms-flex: 1;
|
-ms-flex-positive: 1;
|
||||||
flex: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-item a:hover {
|
.header-item a:hover {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
2
css/bulma.min.css
vendored
2
css/bulma.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user