Rework documentation URLs as inline markdown. Redesign documentations with markdown text. Redesign way to document scripts/categories and present the documentation. Documentation is showed in an expandable box instead of tooltip. This is to allow writing longer documentation (tooltips are meant to be used for short text) and have better experience on mobile. If a node (script/category) has documentation it's now shown with single information icon (ℹ) aligned to right. Add support for rendering documentation as markdown. It automatically converts plain URLs to URLs with display names (e.g. https://docs.microsoft.com/..) will be rendered automatically like "docs.microsoft.com - Windows 11 Privacy...".
27 lines
560 B
SCSS
27 lines
560 B
SCSS
/*
|
|
Defines global styles that applies to globally defined tags by default (body, main, article, div etc.)
|
|
*/
|
|
|
|
@use "@/presentation/assets/styles/colors" as *;
|
|
@use "@/presentation/assets/styles/fonts" as *;
|
|
@use "@/presentation/assets/styles/mixins" as *;
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
$globals-color-hover: $color-primary;
|
|
a {
|
|
color:inherit;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
@include hover-or-touch {
|
|
color: $globals-color-hover;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: $color-background;
|
|
font-family: $font-main;
|
|
}
|