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

@@ -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