#13178 Fixed Discovery app download modal styling
This commit is contained in:
parent
ca7c0f26a3
commit
e1841ba04c
|
@ -234,18 +234,18 @@ class ExtensionsDiscovery extends Wizard
|
||||||
url_str = `<a target="_blank" class="link-important" href="${url}">'.__('here').'</a>`;
|
url_str = `<a target="_blank" class="link-important" href="${url}">'.__('here').'</a>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
var markup = "<ul class=\'\'>";
|
var markup = "<ul class=\'\' style=\'padding: 15px 0px 0px 25px;\'>";
|
||||||
|
|
||||||
if (msgs_json.includes('.NOT_FOUND_MSG.')) {
|
if (msgs_json.includes('.NOT_FOUND_MSG.')) {
|
||||||
markup += "<li> '.__('The required files for the application were not found.').'</li>";
|
markup += \'<li class="lato font_10pt bolder"> '.__('The required files for the application were not found.').'</li>\';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msgs_json.includes('.ENTERPRISE_MSG.')) {
|
if (msgs_json.includes('.ENTERPRISE_MSG.')) {
|
||||||
markup += "<li> '.__('This discovery application is for Enterprise customers only.').'</li>";
|
markup += \'<li class="lato font_10pt bolder"> '.__('This discovery application is for Enterprise customers only.').'</li>\';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msgs_json.includes('.URL_MSG.')) {
|
if (msgs_json.includes('.URL_MSG.')) {
|
||||||
markup += \'<li> '.__('You can download this application from').' \'+url_str+\'.</li>\';
|
markup += \'<li class="lato font_10pt bolder"> '.__('You can download this application from').' \'+url_str+\'.</li>\';
|
||||||
}
|
}
|
||||||
|
|
||||||
markup += "</ul>";
|
markup += "</ul>";
|
||||||
|
|
Loading…
Reference in New Issue