Allow UI to delete sessions

This commit is contained in:
2024-09-07 22:26:38 -05:00
parent 0eb75994c9
commit 6b5bb96de7
11 changed files with 162 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
.PrimaryTheme {
--backgroundColor: #444444;
--middlegroundColor: #D1D1D1;
--foregroundColor: #eaeaea;
--hrefColor: #99c3ff;
--uniformBottomMargin: 0.5rem;
@@ -29,6 +30,14 @@
font-size: 85%;
}
.PrimaryTheme button:hover {
box-shadow: 0px 0px 1px 1px var(--middlegroundColor)
}
.PrimaryTheme button:active {
box-shadow: 0px 0px 1px 1px var(--middlegroundColor), 0px 1px 1px 3px var(--middlegroundColor);
}
.PrimaryTheme button.href {
border: 0;
background: unset;
@@ -64,5 +73,6 @@
.PrimaryTheme .ThemeVariant--Contrast {
--backgroundColor: #eaeaea;
--foregroundColor: #444444;
--middlegroundColor: #5e5e5e;
--hrefColor: #0065be;
}