mirror of
https://github.com/we-promise/sure.git
synced 2026-05-08 05:04:59 +00:00
* feat(design-system): live tokens reference page in Lookbook Adds `DesignTokensPreview` at `/design-system/inspect/design_tokens/*`, split into seven sub-pages (typography, palette, surfaces, text, borders, controls, effects). Each reads `design/tokens/sure.tokens.json` at request time and renders the corresponding slice with values pre-resolved to literal hex / rgba in Ruby — Tailwind doesn't need to keep every CSS variable alive for the swatches to render. Also drops the `@source not "../../../design/tokens"` directive added in #1604. Excluding the JSON tree-shook ten or so design system utilities that aren't yet used in app views (`shadow-border-md/sm/xl`, `button-bg-ghost-hover`, etc.). The preview references each utility through dynamic ERB, which Tailwind's scanner can't follow, so those swatches were rendering blank. Letting Tailwind scan the JSON keeps every declared utility available, which matches the intent of a design system. Compiled CSS grows by about 3 KB. Stacked previously on the `refactor/design-system-tokens` branch behind #1604; rebased onto `main` once that landed. * style(design-system): apply rubocop indented_internal_methods to preview CI lint flagged the private helpers in DesignTokensPreview because the project's RuboCop config uses `indented_internal_methods` style (methods after `private`/`protected` get an extra 2-space indent). Auto-fixed with `bin/rubocop -A`. * fix(design-system): pre-resolve utility token values for the preview CodeRabbit caught: collect_utilities was passing raw `{ref}` strings (e.g. `{color.gray.50}`) as light_value/dark_value, while the rest of the class pre-resolves to literal hex / rgba. The four templates that display them (surfaces, text, borders, controls) showed the unresolved template strings to users. Adds `light_resolved` / `dark_resolved` fields to each utility entry, populated via the same `resolve_template` helper the other collectors use. Templates display `:light_resolved || :light_value` so plain class strings (e.g. `border-tertiary`, `bg-gray-800 fg-inverse`) and compose cases still fall through correctly.
232 lines
4.2 KiB
CSS
232 lines
4.2 KiB
CSS
@import 'tailwindcss';
|
|
|
|
@import "./sure-design-system.css";
|
|
|
|
@import "./geist-font.css";
|
|
@import "./geist-mono-font.css";
|
|
|
|
@plugin "@tailwindcss/typography";
|
|
@plugin "@tailwindcss/forms";
|
|
|
|
@import "./simonweb_pickr.css";
|
|
|
|
@import "./google-sign-in.css";
|
|
@import "./date-picker-dark-mode.css";
|
|
@import "./print-report.css";
|
|
@import "./privacy-mode.css";
|
|
|
|
@layer components {
|
|
.pcr-app{
|
|
position: static !important;
|
|
background: none !important;
|
|
box-shadow: none !important;
|
|
padding: 0 !important;
|
|
width: 100% !important;
|
|
}
|
|
.pcr-color-palette{
|
|
height: 12em !important;
|
|
}
|
|
.pcr-palette{
|
|
border-radius: 10px !important;
|
|
}
|
|
.pcr-palette:before{
|
|
border-radius: 10px !important;
|
|
}
|
|
.pcr-color-chooser{
|
|
height: 1.5em !important;
|
|
}
|
|
.pcr-picker{
|
|
height: 20px !important;
|
|
width: 20px !important;
|
|
}
|
|
}
|
|
|
|
.combobox {
|
|
.hw-combobox__main__wrapper,
|
|
.hw-combobox__input {
|
|
@apply bg-container text-primary w-full;
|
|
}
|
|
|
|
.hw-combobox__main__wrapper {
|
|
@apply border-0 p-0 focus:border-0 ring-0 focus:ring-0 shadow-none focus:shadow-none focus-within:shadow-none;
|
|
}
|
|
|
|
.hw-combobox__listbox {
|
|
@apply absolute top-[160%] right-0 w-full bg-transparent rounded z-30;
|
|
}
|
|
|
|
.hw-combobox__label {
|
|
@apply block text-xs text-gray-500 peer-disabled:text-gray-400;
|
|
}
|
|
|
|
.hw-combobox__option {
|
|
@apply bg-container hover:bg-container-hover;
|
|
}
|
|
|
|
.hw_combobox__pagination__wrapper {
|
|
@apply h-px;
|
|
|
|
&:only-child {
|
|
@apply bg-transparent;
|
|
}
|
|
}
|
|
|
|
--hw-border-color: rgba(0, 0, 0, 0.2);
|
|
--hw-handle-width: 20px;
|
|
--hw-handle-height: 20px;
|
|
--hw-handle-offset-right: 0px;
|
|
}
|
|
|
|
/* Typography */
|
|
.prose {
|
|
@apply max-w-none text-primary;
|
|
|
|
a {
|
|
@apply text-link;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-xl font-medium text-primary;
|
|
}
|
|
|
|
h3 {
|
|
@apply text-lg font-medium text-primary;
|
|
}
|
|
|
|
li {
|
|
@apply m-0 text-primary;
|
|
}
|
|
|
|
details {
|
|
@apply mb-4 rounded-xl mt-3.5;
|
|
}
|
|
|
|
summary {
|
|
@apply flex items-center gap-1;
|
|
}
|
|
|
|
video {
|
|
@apply m-0 rounded-b-xl;
|
|
}
|
|
}
|
|
|
|
.prose--github-release-notes {
|
|
.octicon {
|
|
@apply inline-block overflow-visible align-text-bottom fill-current;
|
|
}
|
|
|
|
.dropdown-caret {
|
|
@apply content-none border-4 border-b-0 border-transparent border-t-gray-500 size-0 inline-block;
|
|
}
|
|
|
|
.user-mention {
|
|
@apply font-bold;
|
|
}
|
|
}
|
|
|
|
.prose--ai-chat {
|
|
@apply break-words;
|
|
|
|
p, li {
|
|
@apply text-sm text-primary;
|
|
}
|
|
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(156, 163, 175, 0.5);
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
/* Custom scrollbar implementation for Windows browsers */
|
|
.windows {
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #d6d6d6;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #a6a6a6;
|
|
}
|
|
}
|
|
|
|
.scrollbar {
|
|
&::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: #d6d6d6;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
background: #a6a6a6;
|
|
}
|
|
}
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display:none
|
|
}
|
|
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width:none
|
|
}
|
|
|
|
.invite_code [data-clipboard-target="iconDefault"],
|
|
.invite_code [data-clipboard-target="iconSuccess"] {
|
|
transition: opacity 0.2s;
|
|
opacity: 1;
|
|
}
|
|
.invite_code .hidden {
|
|
display: none !important;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
}
|
|
|
|
.turbo-progress-bar {
|
|
margin-top: env(safe-area-inset-top);
|
|
}
|
|
|
|
.table-divider {
|
|
position: relative;
|
|
}
|
|
|
|
.table-divider {
|
|
background-image: linear-gradient(
|
|
to right,
|
|
transparent 1rem,
|
|
var(--color-alpha-black-100) 1rem,
|
|
var(--color-alpha-black-100) calc(100% - 1rem),
|
|
transparent calc(100% - 1rem)
|
|
);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 1px;
|
|
background-position: bottom;
|
|
}
|
|
|
|
[data-theme="dark"] .table-divider {
|
|
background-image: linear-gradient(
|
|
to right,
|
|
transparent 1rem,
|
|
var(--color-alpha-white-200) 1rem,
|
|
var(--color-alpha-white-200) calc(100% - 1rem),
|
|
transparent calc(100% - 1rem)
|
|
);
|
|
} |