@limetech/lime-elements
Version:
263 lines (251 loc) • 7.97 kB
CSS
@charset "UTF-8";
/**
* Note! This file is exported to `dist/scss/` in the published
* node module, for consumer projects to import.
* That means this file cannot import from any file that isn't
* also exported, keeping the same relative path.
*
* Or, just don't import anything, that works too.
*/
/**
* This can be used on a trigger element that opens a dropdown menu or a popover.
*/
/**
* This mixin will mask out the content that is close to
* the edges of a scrollable area.
* - If the scrollable content has `overflow-y`, use `vertically`
* as an argument for `$direction`.
- If the scrollable content has `overflow-x`, use `horizontally`
* as an argument for `$direction`.
*
* For the visual effect to work smoothly, we need to make sure that
* the size of the fade-out edge effect is the same as the
* internal paddings of the scrollable area. Otherwise, content of a
* scrollable area that does not have a padding will fade out before
* any scrolling has been done.
* This is why this mixin already adds paddings, which automatically
* default to the size of the fade-out effect.
* This size defaults to `1rem`, but to override the size use
* `--limel-top-edge-fade-height` & `--limel-bottom-edge-fade-height`
* when `vertically` argument is set, and use
* `--limel-left-edge-fade-width` & `--limel-right-edge-fade-width`
* when `horizontally` argument is set.
* Of course you can also programmatically increase and decrease the
* size of these variables for each edge, based on the amount of
* scrolling that has been done by the user. In this case, make sure
* to add a custom padding where the mixin is used, to override
* the paddings that are automatically added by the mixin in the
* compiled CSS code.
*/
/**
* This mixin will add an animated underline to the bottom of an `a` elements.
* Note that you may need to add `all: unset;` –depending on your use case–
* before using this mixin.
*/
/**
* This mixin creates a cross-browser font stack.
* - `sans-serif` can be used for the UI of the components.
* - `monospace` can be used for code.
*
* ⚠️ If we change the font stacks, we need to update
* 1. the consumer documentation in `README.md`, and
* 2. the CSS variables of `--kompendium-example-font-family`
* in the `<style>` tag of `index.html`.
*/
/**
* This mixin is a hack, using old CSS syntax
* to enable you to truncate a piece of text,
* after a certain number of lines.
*/
/**
* This mixin will add a chessboard background pattern,
* typically used to visualize transparency.
*/
/**
* Make a container resizable by the user.
* This is used in the documentations and examples
* of some components, to demonstrate how the component
* behaves in a resizable container.
*/
/**
* The breakpoints below are used to create responsive designs
* in Lime's products. Therefore, they are here to get distributed
* to all components in other private repos, which rely on this `mixins`
* file, to create consistent styles.
*
* :::important
* In very rare cases you should used media queries!
* Nowadays, there are many better ways of achieving responsive design
* without media queries. For example, using CSS Grid, Flexbox, and their features.
* :::
*/
/**
* Media query mixins for responsive design based on screen width.
* Note that these mixins do not detect the device type!
*/
/**
* @prop --breadcrumbs-item-text-color: Text color of breadcrumbs items, defaults to `--contrast-1100`.
* @prop --breadcrumbs-item-max-width: Maximum width of a button in the breadcrumbs. Defaults to `10rem`. Keep in mind that the buttons should not appear too big.
*/
:host(limel-breadcrumbs) {
--limel-breadcrumbs-item-height: 1.5rem;
--limel-breadcrumbs-gap: 0.75rem;
--limel-breadcrumbs-gap: 0.75rem;
--limel-breadcrumbs-item-text-color: var(
--breadcrumbs-item-text-color,
rgb(var(--contrast-1500))
);
--limel-overflow-mask-horizontal: linear-gradient(
to right,
transparent 0%,
black calc(0% + var(--limel-left-edge-fade-width, 1rem)),
black calc(100% - var(--limel-right-edge-fade-width, 1rem)),
transparent 100%
);
-webkit-mask-image: var(--limel-overflow-mask-horizontal);
mask-image: var(--limel-overflow-mask-horizontal);
padding-left: var(--limel-left-edge-fade-width, 1rem);
padding-right: var(--limel-right-edge-fade-width, 1rem);
--limel-left-edge-fade-width: 0.5rem;
--limel-right-edge-fade-width: 0.5rem;
}
ol,
li,
.step {
all: unset;
}
* {
box-sizing: border-box;
}
ol {
padding: 0.5rem;
gap: var(--limel-breadcrumbs-gap);
}
.step {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.25rem;
max-width: var(--breadcrumbs-item-max-width, 10rem);
height: var(--limel-breadcrumbs-item-height);
color: var(--limel-breadcrumbs-item-text-color);
border-radius: 100vw;
font-size: var(--limel-theme-default-font-size);
padding: 0 0.25rem;
}
.step:not(:has(.text)) {
padding: 0 0.125rem;
}
.step:not(.last):focus {
outline: none;
}
.step:not(.last):focus-visible {
outline: none;
box-shadow: var(--shadow-depth-8-focused);
}
.step:not(.last):after {
content: var(--limel-breadcrumbs-divider);
display: flex;
align-items: center;
justify-content: center;
width: var(--limel-breadcrumbs-gap);
position: absolute;
top: 0;
right: calc(var(--limel-breadcrumbs-gap) * -1);
bottom: 0;
left: auto;
text-align: center;
}
a.step {
position: relative;
cursor: pointer;
transition: color 0.2s ease;
color: var(--limel-breadcrumbs-item-text-color);
}
a.step:before {
transition: opacity 0.2s ease, transform 0.3s ease-out;
content: "";
position: absolute;
inset: auto 0 0 0;
width: calc(100% - 0.5rem);
margin: auto;
height: 0.125rem;
border-radius: 1rem;
background-color: currentColor;
opacity: 0;
transform: scale(0.6);
}
a.step:hover {
color: rgb(var(--color-blue-default));
}
a.step:hover:before {
opacity: 0.3;
transform: scale(1);
}
button.step:not(.last) {
transition: color var(--limel-clickable-transition-speed, 0.4s) ease, background-color var(--limel-clickable-transition-speed, 0.4s) ease, box-shadow var(--limel-clickable-transform-speed, 0.4s) ease, transform var(--limel-clickable-transform-speed, 0.4s) var(--limel-clickable-transform-timing-function, ease);
cursor: pointer;
color: var(--limel-breadcrumbs-item-text-color);
background-color: transparent;
}
button.step:not(.last):hover, button.step:not(.last):focus, button.step:not(.last):focus-visible {
will-change: color, background-color, box-shadow, transform;
}
button.step:not(.last):hover, button.step:not(.last):focus-visible {
transform: translate3d(0, 0.01rem, 0);
color: var(--limel-theme-on-surface-color);
background-color: var(--lime-elevated-surface-background-color);
}
button.step:not(.last):hover {
box-shadow: var(--button-shadow-hovered);
}
button.step:not(.last):active {
--limel-clickable-transform-timing-function: cubic-bezier(
0.83,
-0.15,
0.49,
1.16
);
transform: translate3d(0, 0.05rem, 0);
box-shadow: var(--button-shadow-pressed);
}
button.step:not(.last):hover, button.step:not(.last):active {
--limel-clickable-transition-speed: 0.2s;
--limel-clickable-transform-speed: 0.16s;
}
limel-icon {
flex-shrink: 0;
width: calc(var(--limel-breadcrumbs-item-height) - 0.25rem);
height: calc(var(--limel-breadcrumbs-item-height) - 0.25rem);
}
.text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 0 0.25rem;
}
.last {
opacity: 0.7;
}
:host(limel-breadcrumbs) {
box-sizing: border-box;
display: flex;
width: 100%;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
direction: rtl;
}
:host(limel-breadcrumbs)::-webkit-scrollbar {
display: none;
}
ol {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
margin-right: auto;
}
.step {
direction: ltr;
}