Skip to content

Commit

Permalink
Evelution 163
Browse files Browse the repository at this point in the history
Contains a vast amount of changes:
- More refined use of cursors in CPE elements (Less use of hand cursor, more of default)
- Hoverable Dropdowns (Not used anywhere)
- More accessible links in many places like the TOC
- New logo on Updater Preview
  • Loading branch information
HM100 committed Nov 12, 2024
1 parent 141944f commit ef7e2b9
Show file tree
Hide file tree
Showing 16 changed files with 618 additions and 149 deletions.
185 changes: 142 additions & 43 deletions docs/CPE.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/Chroma.js

Large diffs are not rendered by default.

28 changes: 27 additions & 1 deletion docs/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ body {
--global-nav-size:50px;
--minibar-size:50px;
--cpe-body-cursor:auto;
--cpe-auto-cursor: default;
--cpe-default-cursor: default;
--cpe-blocked-cursor:not-allowed;
--cpe-help-cursor:help;
--cpe-text-cursor:text;
Expand Down Expand Up @@ -150,6 +150,10 @@ body {
--global-nav-link-color-active:var(--luna-hyperlink-background-color);
--global-nav-link-background-active:rgb(var(--luna-hyperlink-background-color-rgb) / 0.4);
--global-nav-link-border-active:rgb(var(--luna-hyperlink-background-color-rgb) / 0.2);
/* Keybord-Focused Links */
--global-nav-link-color-focus:var(--global-nav-link-color-active);
--global-nav-link-background-focus:var(--global-nav-link-background-active);
--global-nav-link-border-focus:var(--luna-foreground-color);
/* Misc */
--global-nav-link-opacity:0.2;
--global-nav-link-border-opacity:0.1;
Expand Down Expand Up @@ -261,6 +265,13 @@ body {
box-shadow:var(--threeD-shadow-active);
}

.evelution-sidebar .link:focus-visible,
.evelution-sidebar .cpe-dropdown:focus-visible > .link {
background-color:var(--global-nav-link-background-focus);
border-color:var(--global-nav-link-border-focus);
color:var(--global-nav-link-color-focus);
}

.evelution-sidebar {
-webkit-backdrop-filter:none;
backdrop-filter:none;
Expand Down Expand Up @@ -1284,6 +1295,11 @@ margin-bottom:0;
font-weight:bolder;
}

.evelution-header .link:focus-visible,
.evelution-header .cpe-dropdown:focus-visible > .link {
border-color:var(--luna-foreground-color);
}

.evelution-header .wiki-tools {
height:inherit;
display:contents;
Expand Down Expand Up @@ -2156,6 +2172,11 @@ a:active {
.visualmode-contrast .evelution-sidebar .cpe-dropdown:focus-within > .link {
background-color:var(--global-nav-link-background-active);
}

.visualmode-contrast .evelution-sidebar .link:focus-visible,
.visualmode-contrast .evelution-sidebar .cpe-dropdown:focus-visible > .link {
background-color:var(--global-nav-link-background-focus);
}


.visualmode-contrast .evelution-header .link:hover {
Expand All @@ -2179,6 +2200,11 @@ a:active {
background-color:var(--highlight-background-color);
}

.visualmode-contrast .evelution-header .link:focus-visible,
.visualmode-contrast .evelution-header .cpe-dropdown:focus-visible > .link {
border-color:var(--luna-foreground-color);
}

@media (orientation:portrait) {
.visualmode-contrast .evelution-taskbar {
box-shadow:inset 0 1px var(--inactive-text-background-color)!important;
Expand Down
Loading

0 comments on commit ef7e2b9

Please sign in to comment.