Another Console Icon

This commit is contained in:
thororen1234 2025-02-02 12:20:00 -05:00
parent 49647cf6af
commit 4b2297bf7f
3 changed files with 61 additions and 37 deletions

View file

@ -71,7 +71,7 @@ function ReloadRequiredCard({ required, enabledPlugins, openDisablePluginsModal,
<Forms.FormText className={cl("dep-text")}>
Restart now to apply new plugins and their settings
</Forms.FormText>
<Button onClick={() => location.reload()} className={cl("restart-button")}>
<Button className={cl("restart-button")} onClick={() => location.reload()}>
Restart
</Button>
</>

View file

@ -76,20 +76,17 @@
color: var(--info-warning-text);
}
.vc-plugins-restart-button {
margin-top: 0.5em;
}
.vc-plugins-info-icon:not(:hover, :focus) {
.vc-plugins-info-button svg:not(:hover, :focus) {
color: var(--text-muted);
}
.vc-restart-button {
.vc-plugins-restart-button {
background-color: var(--background-color) !important;
border: 1px solid var(--info-warning-foreground) !important;
margin-top: 0.5em;
}
.vc-restart-button:hover {
.vc-plugins-restart-button:hover {
background-color: var(--info-warning-foreground) !important;
}