Files
claude code agent b1b09e5da0 refactor(ce): remove leftover dead BE code — gates, orphans, dead selectors/CSS (F1-F4)
F1: drop the two HomeView edition-gate panels + their files (License/BackupFailed).
F2: delete zero-importer orphans (edition mutation, HubspotForm, HomepageFilter,
    relations mutation, ActivityLogsView cluster, ExperimentalFeatures subtree).
F3: collapse single-option selectors (Backup settings, init restore, env types)
    and delete the option files they orphaned.
F4: remove dead BE-teaser CSS rules and the --BE-only variable.
Also drop the orphaned .btn-warninglight BE-teaser variant.
F5 (limitedToBE) intentionally left — it is still read by BoxSelectorAngular.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-29 14:13:55 +03:00

42 lines
835 B
CSS

:global(portainer-tooltip) {
@apply inline-flex;
}
.tooltip {
background-color: var(--bg-tooltip-color) !important;
color: var(--text-tooltip-color) !important;
border-radius: 10px !important;
box-shadow:
0 2px 4px 0 rgba(34, 36, 38, 0.12),
0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
min-width: 50px;
font-size: 1rem !important;
text-align: left;
font-weight: 400;
width: max-content;
}
.tooltip:hover {
visibility: visible !important;
opacity: 1 !important;
}
[theme='highcontrast'] .tooltip {
border: 1px solid var(--border-widget);
border-color: var(--white-color) !important;
}
.tooltip-container {
line-height: 18px;
padding: 8px 10px !important;
font-size: 12px !important;
}
.tooltip-message a {
color: var(--blue-15) !important;
}
.tooltip-heading {
font-weight: 500;
}