@limetech/lime-elements
Version:
266 lines (249 loc) • 7.13 kB
CSS
@charset "UTF-8";
/*
* This file is imported into every component!
*
* Nothing in this file may output any CSS
* without being explicitly called by outside code.
*/
/**
* 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!
*/
:host {
isolation: isolate;
position: relative;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
* {
box-sizing: border-box;
}
img,
video,
audio,
object,
iframe {
max-height: 100%;
max-width: 100%;
box-sizing: border-box;
}
iframe {
border: none;
width: 100%;
height: 100%;
min-height: 20rem;
}
img {
min-width: 7rem;
object-fit: contain;
}
video {
width: 100%;
height: auto;
}
audio {
width: 100%;
}
object {
width: 100%;
height: 100%;
}
object[type="application/pdf"] {
min-height: 20rem;
}
object[type="text/plain"] {
border-radius: 0.25rem;
padding-right: 2rem;
overflow-y: auto;
}
:host(:fullscreen) {
background-color: rgb(var(--color-gray-darker));
}
:host(:fullscreen) object[type="text/plain"] {
max-width: 50rem;
max-height: calc(100% - 2rem);
}
:host(:-webkit-full-screen) {
background-color: rgb(var(--color-gray-darker));
}
:host(:-webkit-full-screen) object[type="text/plain"] {
max-width: 50rem;
max-height: calc(100% - 2rem);
}
.buttons {
position: absolute;
z-index: 1;
top: 0.25rem;
right: 0.25rem;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
@media (pointer: coarse) {
.buttons {
gap: 0.5rem;
}
}
.no-support {
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: center;
border: 1px dashed rgb(var(--contrast-600));
border-radius: 0.5rem;
padding: 1.25rem;
}
.no-support h1,
.no-support p {
margin: 0;
}
[class^=button--] {
all: unset;
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-theme-on-surface-color);
background-color: var(--lime-elevated-surface-background-color);
box-shadow: var(--button-shadow-normal);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
width: 2rem;
height: 2rem;
background-color: rgba(var(--contrast-100), 0.8);
backdrop-filter: blur(0.25rem);
-webkit-backdrop-filter: blur(0.25rem);
}
[class^=button--]:hover, [class^=button--]:focus, [class^=button--]:focus-visible {
will-change: color, background-color, box-shadow, transform;
}
[class^=button--]:hover, [class^=button--]:focus-visible {
transform: translate3d(0, -0.04rem, 0);
color: var(--limel-theme-on-surface-color);
background-color: var(--lime-elevated-surface-background-color);
box-shadow: var(--button-shadow-hovered);
}
[class^=button--]: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);
}
[class^=button--]:hover, [class^=button--]:active {
--limel-clickable-transition-speed: 0.2s;
--limel-clickable-transform-speed: 0.16s;
}
[class^=button--]:focus {
outline: none;
}
[class^=button--]:focus-visible {
outline: none;
box-shadow: var(--shadow-depth-8-focused);
}
[class^=button--] limel-icon {
transition: color 0.2s ease;
width: 1.25rem;
color: rgb(var(--contrast-1200));
}
[class^=button--]:hover limel-icon {
color: rgb(var(--contrast-1400));
}
.action-menu-for-pdf-files,
.action-menu-for-office-files {
position: absolute;
right: 0.75rem;
}
.action-menu-for-pdf-files {
bottom: 0.75rem;
}
.action-menu-for-office-files {
top: 0.75rem;
}