Fix the restrictions editor to display as block, not flex

This commit is contained in:
Bryan Housel
2018-11-29 14:43:00 -05:00
parent 838407b351
commit a8f477f256
+9 -1
View File
@@ -1797,11 +1797,19 @@ img.tag-reference-wiki-image {
/* Field - Restriction Editor
------------------------------------------------------- */
.form-field-input-restrictions {
display: block;
border: 1px solid #ccc;
border-top: 0;
border-radius: 0 0 4px 4px;
}
.form-field-input-restrictions .restriction-controls-container {
background-color: #fff;
border-top: 1px solid #ccc;
width: 100%;
padding: 5px;
border-top: 1px solid #ccc;
border-radius: 0 0 4px 4px;
}
.restriction-controls-container .restriction-controls {