Skip to content
Snippets Groups Projects
Commit e4df7b72 authored by Sascha Herzinger's avatar Sascha Herzinger
Browse files

Fixed a few report styling issues

parent 7285f311
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!589Feature error reporting
......@@ -679,11 +679,16 @@ error report dialog style
float: right;
}
.report-tooltip {
opacity: 1;
}
.report-dialog #report-comment {
width: 100%;
padding: 0;
resize: none;
height: 60px;
color: black;
}
#report-comment {
......
......@@ -359,11 +359,23 @@ GuiConnector.prototype.alert = function (error, redirectIfSecurityError) {
$(self._errorDialogData)
.controlgroup({direction: 'vertical'});
$(self._errorDialog)
.tooltip();
.tooltip({
classes: {
"ui-tooltip": "report-tooltip ui-corner-all ui-widget-shadow"
},
track: true,
position: {
my: 'right',
at: 'left'
}
});
});
document.body.appendChild(self._errorDialog);
$(self._errorDialog).dialog({
classes: {'ui-dialog': 'report-dialog'},
classes: {
'ui-dialog': 'report-dialog ui-corner-all',
'ui-dialog-titlebar': 'ui-corner-all'
},
title: 'An error occurred!',
resizable: true,
height: 'auto',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment