IE11-specific style tweaks
This commit is contained in:
parent
095da4cc7a
commit
fd4fb6cdb1
|
@ -32,6 +32,7 @@ const TagWidget = props => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="r6o-widget tag">
|
<div className="r6o-widget tag">
|
||||||
|
<div>
|
||||||
{ tagBodies.length > 0 &&
|
{ tagBodies.length > 0 &&
|
||||||
<ul className="r6o-taglist">
|
<ul className="r6o-taglist">
|
||||||
{ tagBodies.map(tag =>
|
{ tagBodies.map(tag =>
|
||||||
|
@ -51,6 +52,7 @@ const TagWidget = props => {
|
||||||
)}
|
)}
|
||||||
</ul>
|
</ul>
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
{ !props.readOnly &&
|
{ !props.readOnly &&
|
||||||
<Autocomplete
|
<Autocomplete
|
||||||
|
|
|
@ -2,6 +2,20 @@
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* IE11-specific hackery */
|
||||||
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
||||||
|
|
||||||
|
.r6o-widget.tag .r6o-taglist li {
|
||||||
|
height:27px;
|
||||||
|
|
||||||
|
.delete-wrapper .delete {
|
||||||
|
position:relative;
|
||||||
|
top:-4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.r6o-widget.tag {
|
.r6o-widget.tag {
|
||||||
background-color:$blueish-white;
|
background-color:$blueish-white;
|
||||||
border-bottom:1px solid $lightgrey-border;
|
border-bottom:1px solid $lightgrey-border;
|
||||||
|
|
Loading…
Reference in New Issue