Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions styles/components/nav-header.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
gap: 1.5rem;
}

.nav-header-links a:hover, .nav-header-theme-switch button:hover{
opacity: var(--hover-opacity);
}

.nav-header-link-selected {
color: var(--color-text);
}
Expand Down
14 changes: 14 additions & 0 deletions styles/pages/kapten-alloc.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
color: var(--color-text);
}

.kapten-alloc-subheader button:hover {
opacity: var(--hover-opacity);
}

.kapten-alloc-search span {
margin-left: -2.2rem;
font-size: 0.8rem;
Expand Down Expand Up @@ -107,8 +111,10 @@

.kapten-alloc-table tbody tr {
cursor: pointer;
transition: none;
}


.kapten-alloc-table tbody tr:nth-child(odd) {
background-color: var(--color-bg);
}
Expand All @@ -117,10 +123,18 @@
background-color: var(--color-bg-secondary);
}

.kapten-alloc-table tbody tr:hover {
background-color: var(--color-bg-hover);
}

.kapten-alloc-table tbody tr.selected {
background-color: var(--color-bg-highlight);
}

.kapten-alloc-table tbody tr.selected:hover {
background-color: var(--color-bg-highlight-hover);
}

.kapten-alloc-table tbody tr.selected td {
color: var(--color-text);
}
Expand Down
7 changes: 6 additions & 1 deletion styles/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
--color-bg: #1c1c1c;
--color-bg-secondary: #232323;
--color-bg-panel: #161616;
--color-bg-highlight: #451179;
--color-bg-hover: #7b7b7b59;
--color-bg-highlight: #451179c1;
--color-bg-highlight-hover: #652aa0ac;


--color-text: #ffffff;
--color-text-secondary: #a0a0a0;
--color-text-accent: #ffffff;

--color-border: #333333;

--hover-opacity: 0.75;
}
4 changes: 4 additions & 0 deletions styles/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
--color-bg: #ebebeb;
--color-bg-secondary: #ffffff;
--color-bg-panel: #dedede;
--color-bg-hover: #bdbdbd7e;
--color-bg-highlight: #ff9ed4;
--color-bg-highlight-hover: #fa6cbaca;

--color-text: #000000;
--color-text-secondary: #555555;
--color-text-accent: #ff386d;

--color-border: #cdcdcd;

--hover-opacity: 0.55;
}