diff --git a/css/light-grey.scss b/css/light-grey.scss index e1d8380d4..3b26a7981 100644 --- a/css/light-grey.scss +++ b/css/light-grey.scss @@ -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; } diff --git a/css/setup.css b/css/setup.css index 87ac6cf5e..494d21ffa 100644 --- a/css/setup.css +++ b/css/setup.css @@ -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); +} diff --git a/css/setup.scss b/css/setup.scss index 82b22d046..508b087b9 100644 --- a/css/setup.scss +++ b/css/setup.scss @@ -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; + } + } + } }