a11yist/app/assets/stylesheets/layout.scss

216 lines
4.7 KiB
SCSS
Raw Normal View History

.action-row {
@extend .d-flex;
@extend .p-2;
2024-11-01 03:26:46 +01:00
@extend .mt-5;
// background-color: map-get($theme-colors, "primary");
background-color: var(--bs-tertiary-bg);
* {
@extend .me-2;
@extend .my-auto;
}
2024-07-19 02:29:18 +02:00
}
// // Fix trix dark mode
// .trix-button-row {
// .trix-button-group {
// border: var(--bs-border-width) solid var(--bs-border-color);
// .trix-button {
// border: 0;
// }
// }
// }
// [data-bs-theme=dark] {
// .trix-button-row {
// .trix-button-group {
// .trix-button {
// background-color: transparent;
// filter: invert(100%);
// }
// }
// }
// }
// // end fix trix dark mode
// .trix-content pre {
// background-color: var(--bs-secondary-bg);
// color: var(--bs-secondary-color);
// border: var(--bs-border-width) solid var(--bs-border-color);
// border-radius: var(--bs-border-radius);
// padding: var(--bs-padding);
2024-07-20 16:52:12 +02:00
// }
.hover-row:hover {
background-color: var(--bs-tertiary-bg);
}
.comment {
@extend .alert;
@extend .alert-warning;
border: 0;
border-left: 4px solid var(--bs-warning);
2024-07-21 00:33:38 +02:00
}
.navbar-brand {
color: $pink;
2024-09-23 00:14:33 +02:00
}
2024-10-25 22:33:44 +02:00
.form-label {
font-size: 1.3rem;
2024-10-28 22:39:17 +01:00
}
.highlight-when-nonempty:not([value=""]) {
@extend .border-primary
2024-11-03 21:58:25 +01:00
}
@mixin details-icon($color) {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(#{$color})" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
background-size: cover;
}
2024-11-06 22:12:37 +01:00
@mixin toggle-off-icon($color) {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(#{$color})" class="bi bi-toggle-off" viewBox="0 0 16 16"><path d="M11 4a4 4 0 0 1 0 8H8a5 5 0 0 0 2-4 5 5 0 0 0-2-4zm-6 8a4 4 0 1 1 0-8 4 4 0 0 1 0 8M0 8a5 5 0 0 0 5 5h6a5 5 0 0 0 0-10H5a5 5 0 0 0-5 5"/></svg>')
}
@mixin toggle-on-icon($color) {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(#{$color})" class="bi bi-toggle-on" viewBox="0 0 16 16"><path d="M5 3a5 5 0 0 0 0 10h6a5 5 0 0 0 0-10zm6 9a4 4 0 1 1 0-8 4 4 0 0 1 0 8" /> </svg>')
}
2024-11-03 21:58:25 +01:00
.page_nav nav ul {
padding-left: 0;
list-style-type: none;
line-height: 2rem;
a {
color: var(--bs-text);
text-decoration: none;
}
a:hover {
2024-11-06 22:12:37 +01:00
// text-decoration: underline;
2024-11-03 21:58:25 +01:00
}
ul {
2024-11-06 22:12:37 +01:00
padding-left: 0rem;
2024-11-03 21:58:25 +01:00
}
}
2024-11-06 22:12:37 +01:00
details.switch {
>summary {
display: flex;
}
2024-11-03 21:58:25 +01:00
2024-11-06 22:12:37 +01:00
>summary::after {
@include toggle-off-icon(to-rgb(map-get($theme-colors, "dark")));
width: 1rem;
height: 1rem;
float: inline-end;
transition: 0.4s;
content: '';
margin-top: 0.25rem;
margin-right: 0;
margin-left: 0.5rem
}
2024-11-03 21:58:25 +01:00
}
2024-11-06 22:12:37 +01:00
details.switch[open]>summary::after {
@include toggle-on-icon(to-rgb(map-get($theme-colors, "dark")));
}
@include color-mode(dark) {
details.switch summary::after {
@include toggle-off-icon(to-rgb(map-get($theme-colors, "light")));
}
}
@include color-mode(dark) {
details.switch[open]>summary::after {
@include toggle-on-icon(to-rgb(map-get($theme-colors, "light")));
}
2024-11-03 21:58:25 +01:00
}
2024-11-06 22:12:37 +01:00
// details.tree[open]:has(summary.active) {
// border: solid 1px $primary;
// }
details.tree {
>summary,
>summary a {
font-size: 1rem;
font-style: normal;
}
>summary {
display: flex;
line-height: 2rem;
padding-left: 12px;
// padding-top: 8px;
// padding-bottom: 8px;
}
>summary.active {
border-left: solid 8px $primary;
border-right: solid 8px $primary;
// border: solid 1px $primary;
// background-color: $gray-800;
padding-left: 8px;
// padding-top: 8px;
}
>summary::before {
@include details-icon(to-rgb(map-get($theme-colors, "dark")));
content: '';
float: inline-end;
width: 0.7rem;
height: 1rem;
margin-top: 0.5rem;
margin-right: 6px;
// background: url('chevron-right.svg');
// background-size: cover;
margin-left: 0px;
transition: 0.2s;
}
ul {
// li:hover {
// border-left: solid 2px $white;
// padding-left: 36px;
// }
li {
padding-left: 38px;
a {
display: block;
}
}
li:has(a.active) {
border-left: solid 2px $primary;
padding-left: 36px;
// background-color: $gray-900;
}
}
2024-11-03 21:58:25 +01:00
}
@include color-mode(dark) {
2024-11-06 22:12:37 +01:00
details.tree summary::before {
2024-11-03 21:58:25 +01:00
@include details-icon(to-rgb(map-get($theme-colors, "light")));
}
}
2024-11-06 22:12:37 +01:00
details.tree[open]>summary::before {
2024-11-03 21:58:25 +01:00
transform: rotate(90deg);
2024-11-06 22:12:37 +01:00
padding-bottom: 0;
}
// summary.active::before {
// @include details-icon(to-rgb($primary));
// }