UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

87 lines (74 loc) 1.52 kB
/* Because of `all: unset`, we have to re-define some these values. */ @mixin button { all: unset; position: relative; box-sizing: inherit; outline: none; cursor: pointer; user-select: none; transition-timing-function: var(--lb-transition-easing); transition-duration: var(--lb-transition-duration); transition-property: background, color, opacity; -webkit-tap-highlight-color: transparent; &::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; transition-property: box-shadow; } &:where(:focus-visible) { z-index: 1; &::after { box-shadow: var(--lb-dynamic-background) 0 0 0 2px, var(--lb-accent) 0 0 0 4px; } } } @mixin truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } @mixin capitalize { &::first-letter { text-transform: capitalize; } } @mixin invisible-selection { &::selection, *::selection { background: transparent; } } @mixin invisible-scrollbar { & { -ms-overflow-style: none; scrollbar-width: none; } &::-webkit-scrollbar { display: none; } } @mixin firefox-only { @supports (-moz-appearance: none) { @content; } } @mixin not-firefox { @supports not (-moz-appearance: none) { @content; } } @mixin safari-only { @supports (background: -webkit-named-image(i)) { @content; } } @mixin not-safari { @supports not (background: -webkit-named-image(i)) { @content; } }