N°2112: Setup alert message introduced by 83ba909 stopped working since 797893d🐒 🐒

This commit is contained in:
Stephen Abello
2020-01-15 10:08:14 +01:00
parent efef582119
commit 7b6481efbd
3 changed files with 23 additions and 27 deletions

View File

@@ -3263,28 +3263,6 @@ span.search-button, span.refresh-button {
.date_format_tooltip td {
padding: 0.25em;
}
#setup {
.module-selection-banner img {
max-height: 48px;
}
.module-selection-body {
height: 28em;
overflow: auto;
border: #ccc 1px solid;
.wiz-choice:checked ~ .description{
#itop-ticket-mgmt-simple-ticket-enhanced-portal:not(:checked),
#itop-ticket-mgmt-itil-enhanced-portal:not(:checked){
~ .description::after {
content: "Legacy portal is no longer part of iTop, by leaving this option unchecked your portal users won't be able to access iTop anymore.";
display: block;
margin-top: 0.5em;
font-weight: bold;
color: #e60000b8;
}
}
}
}
}
.mfp-close {
cursor: pointer !important;
}

View File

@@ -74,10 +74,6 @@ a {
a:hover {
color: #ea7d1e;
}
label {
cursor: pointer;
}
#header {
width: 600px;
margin-left: auto;
@@ -185,7 +181,8 @@ table.formTable {
border-radius: inherit;
}
#progress .progress.progress-error {
background-color: #e53e3e !important;
background-image: none !important;
background-color: #f56565 !important;
/* !important to overload jQuery UI style */
animation: none;
}
@@ -264,3 +261,10 @@ fieldset > legend {
background-color: #f7fafc;
padding: 10px;
}
.module-selection-body .wiz-choice:checked ~ .description #itop-ticket-mgmt-simple-ticket-enhanced-portal:not(:checked) ~ .description::after, .module-selection-body .wiz-choice:checked ~ .description #itop-ticket-mgmt-itil-enhanced-portal:not(:checked) ~ .description::after {
content: "Legacy portal is no longer part of iTop, by leaving this option unchecked your portal users won't be able to access iTop anymore.";
display: block;
margin-top: 0.5em;
font-weight: bold;
color: rgba(230, 0, 0, 0.722);
}

View File

@@ -42,6 +42,8 @@ $message-error-border-color: #E53E3E !default;
$message-error-text-color: #C53030 !default;
$message-error-bg-color: #FFF5F5 !default;
$legacy-portal-removal-text-color: #e60000b8 !default;
// Compilation progress bar
$progress-bar-color: #000000 !default;
$progress-bar-ongoing-1-bg-color: #FBD38D !default;
@@ -304,5 +306,17 @@ fieldset{
rgba(0,0,0,.06) !important;
background-color: #F7FAFC;
padding: 10px;
.wiz-choice:checked ~ .description{
#itop-ticket-mgmt-simple-ticket-enhanced-portal:not(:checked),
#itop-ticket-mgmt-itil-enhanced-portal:not(:checked){
~ .description::after {
content: "Legacy portal is no longer part of iTop, by leaving this option unchecked your portal users won't be able to access iTop anymore.";
display: block;
margin-top: 0.5em;
font-weight: bold;
color: $legacy-portal-removal-text-color;
}
}
}
}