Fixes these issues with the detachable tag edit dialog: * Moving the edit dialog then expanding the related tags causes the related tags to overflow outside the dialog. * Expanding the related tags, moving the edit dialog, then collapsing the tags causes the dialog to not resize back to its minimized size.
22 lines
319 B
SCSS
22 lines
319 B
SCSS
div.ui-dialog {
|
|
height: auto! important;
|
|
overflow: visible;
|
|
font-size: 1em;
|
|
z-index: 999 !important;
|
|
|
|
ul {
|
|
margin-left: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
}
|
|
|
|
.ui-state-highlight {
|
|
border: 1px solid #FCEEC1;
|
|
background: #FDF5D9;
|
|
}
|
|
|
|
.ui-state-error {
|
|
border: 1px solid #FBC7C6;
|
|
background: #FDDFDE;
|
|
}
|