@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
339 lines • 9.52 kB
CSS
/* forward the rem function */
/*
* This file defines the layer order for all CSS layers used in KoliBri.
* The order is important as it determines the cascade priority.
*
* Layer order (lowest to highest priority):
* 1. kol-a11y - Accessibility defaults and requirements
* 2. kol-global - Global component styles and resets
* 3. kol-component - Component-specific styles
* 4. kol-theme-global - Theme-specific global styles
* 5. kol-theme-component - Theme-specific component styles
*/
@layer kol-a11y, kol-global, kol-component, kol-theme-global, kol-theme-component;
/*
* This file contains all rules for accessibility.
*/
@layer kol-a11y {
:host {
/*
* Minimum size of interactive elements.
*/
--a11y-min-size: calc(44 * 1rem / var(--kolibri-root-font-size, 16));
/*
* No element should be used without verifying the contrast ratio of its background and font colors.
* By initially setting the background color to white and the font color to black,
* the contrast ratio is ensured and explicit adjustment is forced.
*/
color: black;
background-color: white;
/*
* Verdana is an accessible font that can be used without requiring additional loading time.
*/
font-family: Verdana;
/*
* Letter spacing is required for all texts.
*/
letter-spacing: inherit;
/*
* Word spacing is required for all texts.
*/
word-spacing: inherit;
/*
* Text should be aligned left by default to provide a predictable starting point.
*/
text-align: left;
}
* {
/*
* This rule enables the word dividing for all texts. That is important for high zoom levels.
*/
hyphens: auto;
/*
* This rule enables the word dividing for all texts. That is important for high zoom levels.
*/
word-break: break-word;
}
/*
* All interactive elements should have a minimum size of to-rem(44).
*/
/* input:not([type='checkbox'], [type='radio'], [type='range']), */
/* option, */
/* select, */
/* textarea, */
button,
.kol-input .input {
min-width: var(--a11y-min-size);
min-height: var(--a11y-min-size);
}
/*
* Some interactive elements should not inherit the font-family and font-size.
*/
a,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
option,
select,
textarea {
/*
* All elements should inherit the text color from his parent element.
*/
color: inherit;
/*
* All elements should inherit the font family from his parent element.
*/
font-family: inherit;
/*
* All elements should inherit the font size from his parent element.
*/
font-size: inherit;
/*
* Letter spacing is required for all texts.
*/
letter-spacing: inherit;
/*
* Word spacing is required for all texts.
*/
word-spacing: inherit;
}
/**
* Sometimes we need the semantic element for accessibility reasons,
* but we don't want to show it.
*
* - https://www.a11yproject.com/posts/how-to-hide-content/
*/
.visually-hidden {
position: fixed;
top: 0;
left: 0;
width: 1px;
height: 1px;
overflow: hidden;
white-space: nowrap;
clip-path: inset(50%);
}
}
@layer kol-global {
/*
* Dieses CSS stellt sicher, dass der Standard-Style
* von A und Button resettet werden.
*/
:is(a, button) {
background-color: transparent;
width: 100%;
margin: 0;
padding: 0;
border: none;
/* 100% needed for custom width from outside */
}
/*
* Ensure elements with hidden attribute to be actually not visible
* @see https://meowni.ca/hidden.is.a.lie.html
*/
[hidden] {
display: none ;
}
.badge-text-hint {
color: black;
background-color: white;
}
}
@layer kol-global {
:host {
/*
* The max-width is needed to prevent the table from overflowing the
* parent node, if the table is wider than the parent node.
*/
max-width: 100%;
font-size: calc(16 * 1rem / var(--kolibri-root-font-size, 16));
}
* {
/*
* We prefer to box-sizing: border-box for all elements.
*/
box-sizing: border-box;
}
.kol-span {
/* KolSpan is a layout component with icons in all directions and a label text in the middle. */
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
/* The sub span in KolSpan is the horizontal span with icon left and right and the label text in the middle. */
}
.kol-span__container {
display: flex;
align-items: center;
}
a,
button {
cursor: pointer;
}
.kol-span .kol-span__label--hide-label .kol-span__label {
display: none;
}
/* Reset browser agent style. */
button:disabled {
color: unset;
}
.disabled label,
.disabled:focus-within label,
[aria-disabled=true],
[aria-disabled=true]:focus,
[disabled],
[disabled]:focus {
outline: none;
cursor: not-allowed;
}
[aria-disabled=true]:focus .kol-span,
[disabled]:focus .kol-span {
outline: none ;
}
.hastooltip {
z-index: 900 ;
}
}
@layer kol-component {
@keyframes rotate {
to {
transform: rotate(1turn);
}
}
@keyframes growingCircle {
0% {
opacity: 0.5;
border-color: white;
clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
}
25% {
opacity: 0.75;
border-color: var(--kol-spin-color, var(--kol-theme-spin-color, #000));
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
}
50% {
opacity: 1;
border-color: var(--kol-spin-color, var(--kol-theme-spin-color, black));
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
}
75% {
opacity: 1;
border-color: var(--kol-spin-color, var(--kol-theme-spin-color, black));
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}
100% {
opacity: 0.1;
border-color: var(--kol-spin-color, var(--kol-theme-spin-color, black));
clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}
}
.kol-spin__spinner--cycle {
width: calc(var(--kol-spin-size, 48) * 1rem / var(--kolibri-root-font-size, 16));
height: calc(var(--kol-spin-size, 48) * 1rem / var(--kolibri-root-font-size, 16));
}
.kol-spin__spinner--cycle__element {
border-radius: 50%;
display: block;
position: relative;
width: 100%;
height: 100%;
animation: 2s linear infinite rotate;
}
@media (prefers-reduced-motion) {
.kol-spin__spinner--cycle__element {
animation-duration: 4s ;
}
}
.kol-spin__spinner--cycle__element::before {
border-radius: 50%;
position: absolute;
inset: 0;
content: "";
animation: 3s linear infinite growingCircle;
border: 5px solid var(--kol-spin-color, var(--kol-theme-spin-color, #333));
}
@media (prefers-reduced-motion) {
.kol-spin__spinner--cycle__element::before {
animation-duration: 6s ;
}
}
}
@layer kol-component {
@keyframes spin1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes spin2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(calc(var(--kol-spin-size, 13) * 1rem / var(--kolibri-root-font-size, 16)), 0);
}
}
@keyframes spin3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion#toning_down_the_animation_scaling */
@media (prefers-reduced-motion) {
.kol-spin__spinner-element {
animation-duration: 2s ;
}
}
.kol-spin__spinner--dot {
--kol-spin-border-width: calc(var(--kol-spin-size, 13) / 10);
width: calc(calc(var(--kol-spin-size, 13) * 3 + 2) * 1rem / var(--kolibri-root-font-size, 16));
height: calc(calc(var(--kol-spin-size, 13) + var(--kol-spin-border-width) * 2) * 1rem / var(--kolibri-root-font-size, 16));
}
.kol-spin__spinner--dot__element {
background-color: var(--kol-spin-color, var(--kol-theme-spin-color, #000));
border-radius: 50%;
position: absolute;
top: 1px;
width: calc(var(--kol-spin-size, 13) * 1rem / var(--kolibri-root-font-size, 16));
height: calc(var(--kol-spin-size, 13) * 1rem / var(--kolibri-root-font-size, 16));
animation-timing-function: cubic-bezier(0, 1, 1, 0);
border: calc(var(--kol-spin-border-width) * 1rem / var(--kolibri-root-font-size, 16)) solid white;
}
.kol-spin__spinner--dot__element--1 {
left: calc(var(--kol-spin-border-width) * 1rem / var(--kolibri-root-font-size, 16));
z-index: 0;
animation: 1s infinite spin1;
}
.kol-spin__spinner--dot__element--2 {
left: calc(var(--kol-spin-border-width) * 1rem / var(--kolibri-root-font-size, 16));
z-index: 1;
animation: 1s infinite spin2;
}
.kol-spin__spinner--dot__element--3 {
left: calc(calc(var(--kol-spin-size, 13) + var(--kol-spin-border-width)) * 1rem / var(--kolibri-root-font-size, 16));
z-index: 1;
animation: 1s infinite spin2;
}
.kol-spin__spinner--dot__element--4 {
opacity: 0.6;
left: calc(calc(var(--kol-spin-size, 13) * 2 + var(--kol-spin-border-width)) * 1rem / var(--kolibri-root-font-size, 16));
z-index: 0;
animation: 1s infinite spin3;
}
}
@layer kol-component {
.kol-spin__spinner {
display: block;
position: relative;
}
}