treewide: fix various UI bugs; optimize crypto dependencies & format
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If8fe8b38c1d9c4fecd40ff71f88d2ae06a6a6964
This commit is contained in:
parent
764aafa88d
commit
3ccddce7fd
178 changed files with 58342 additions and 54241 deletions
1
crates/pinakes-ui/assets/css/main.css
Normal file
1
crates/pinakes-ui/assets/css/main.css
Normal file
File diff suppressed because one or more lines are too long
493
crates/pinakes-ui/assets/styles/_audit.scss
Normal file
493
crates/pinakes-ui/assets/styles/_audit.scss
Normal file
|
|
@ -0,0 +1,493 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Audit log
|
||||
.audit-controls {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
margin-bottom: $space-6;
|
||||
}
|
||||
|
||||
.filter-select {
|
||||
padding: $space-2 24px $space-2 $space-4;
|
||||
font-size: $font-size-base;
|
||||
background: $bg-2;
|
||||
}
|
||||
|
||||
.action-danger {
|
||||
background: $error-medium;
|
||||
color: $error-text;
|
||||
}
|
||||
|
||||
.action-updated {
|
||||
background: $action-updated-bg;
|
||||
color: $action-updated-text;
|
||||
}
|
||||
|
||||
.action-collection {
|
||||
background: $action-collection-bg;
|
||||
color: $action-collection-text;
|
||||
}
|
||||
|
||||
.action-collection-remove {
|
||||
background: $action-collection-remove-bg;
|
||||
color: $action-collection-remove-text;
|
||||
}
|
||||
|
||||
.action-opened {
|
||||
background: $action-opened-bg;
|
||||
color: $action-opened-text;
|
||||
}
|
||||
|
||||
.action-scanned {
|
||||
background: $action-scanned-bg;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.clickable {
|
||||
cursor: pointer;
|
||||
color: $accent-text;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.clickable-row {
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background: $overlay-light;
|
||||
}
|
||||
}
|
||||
|
||||
// Duplicates
|
||||
.duplicates-view {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.duplicates-header {
|
||||
@include flex-between;
|
||||
margin-bottom: $space-8;
|
||||
|
||||
h3 {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.duplicates-summary {
|
||||
@include flex(row, flex-start, center, $space-6);
|
||||
}
|
||||
|
||||
.duplicate-group {
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
margin-bottom: $space-4;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.duplicate-group-header {
|
||||
@include flex(row, flex-start, center, $space-6);
|
||||
width: 100%;
|
||||
padding: 10px 14px;
|
||||
background: $bg-2;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
color: $text-0;
|
||||
font-size: $font-size-lg;
|
||||
|
||||
&:hover {
|
||||
background: $bg-3;
|
||||
}
|
||||
}
|
||||
|
||||
.expand-icon {
|
||||
font-size: $font-size-sm;
|
||||
width: 14px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.group-name {
|
||||
font-weight: $font-weight-semibold;
|
||||
flex: 1;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.group-badge {
|
||||
background: $accent;
|
||||
color: white;
|
||||
padding: $space-1 $space-4;
|
||||
border-radius: 10px;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.group-size {
|
||||
flex-shrink: 0;
|
||||
font-size: $font-size-md;
|
||||
}
|
||||
|
||||
.group-hash {
|
||||
font-size: $font-size-base;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.duplicate-items {
|
||||
border-top: 1px solid $border;
|
||||
}
|
||||
|
||||
.duplicate-item {
|
||||
@include flex(row, flex-start, center, $space-6);
|
||||
padding: 10px 14px;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
&-keep {
|
||||
background: $green-light;
|
||||
}
|
||||
}
|
||||
|
||||
.dup-thumb {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
flex-shrink: 0;
|
||||
border-radius: $radius-sm;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dup-thumb-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.dup-thumb-placeholder {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@include flex-center;
|
||||
background: $bg-3;
|
||||
font-size: 20px;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.dup-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.dup-filename {
|
||||
font-weight: $font-weight-semibold;
|
||||
font-size: $font-size-lg;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.dup-path {
|
||||
font-size: $font-size-base;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.dup-meta {
|
||||
font-size: $font-size-md;
|
||||
margin-top: $space-1;
|
||||
}
|
||||
|
||||
.dup-actions {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.keep-badge {
|
||||
background: $green-medium;
|
||||
color: $green-text;
|
||||
padding: $space-1 $space-5;
|
||||
border-radius: 10px;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
}
|
||||
|
||||
// Saved searches
|
||||
.saved-searches-list {
|
||||
@include flex(column, flex-start, stretch, $space-2);
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.saved-search-item {
|
||||
@include flex-between;
|
||||
padding: $space-4 $space-6;
|
||||
background: $bg-1;
|
||||
border-radius: $radius-sm;
|
||||
cursor: pointer;
|
||||
transition: background $transition-slow ease;
|
||||
|
||||
&:hover {
|
||||
background: $bg-2;
|
||||
}
|
||||
}
|
||||
|
||||
.saved-search-info {
|
||||
@include flex(column, flex-start, stretch, $space-1);
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.saved-search-name {
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
.saved-search-query {
|
||||
font-size: $font-size-base;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
// Backlinks
|
||||
.backlinks-panel,
|
||||
.outgoing-links-panel {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
margin-top: $space-8;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.backlinks-header,
|
||||
.outgoing-links-header {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
padding: 10px 14px;
|
||||
background: $bg-3;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
transition: background $transition-base;
|
||||
|
||||
&:hover {
|
||||
background: $overlay-medium;
|
||||
}
|
||||
}
|
||||
|
||||
.backlinks-toggle,
|
||||
.outgoing-links-toggle {
|
||||
font-size: $font-size-sm;
|
||||
color: $text-2;
|
||||
width: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.backlinks-title,
|
||||
.outgoing-links-title {
|
||||
font-size: $font-size-md;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.backlinks-count,
|
||||
.outgoing-links-count {
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.backlinks-reindex-btn {
|
||||
@include flex-center;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
padding: 0;
|
||||
margin-left: auto;
|
||||
background: transparent;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-sm;
|
||||
color: $text-2;
|
||||
font-size: $font-size-md;
|
||||
cursor: pointer;
|
||||
transition: background $transition-base, color $transition-base,
|
||||
border-color $transition-base;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: $bg-2;
|
||||
color: $text-0;
|
||||
border-color: $border-strong;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.backlinks-content,
|
||||
.outgoing-links-content {
|
||||
padding: $space-6;
|
||||
border-top: 1px solid $border-subtle;
|
||||
}
|
||||
|
||||
.backlinks-loading,
|
||||
.outgoing-links-loading {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
padding: $space-6;
|
||||
color: $text-2;
|
||||
font-size: $font-size-md;
|
||||
}
|
||||
|
||||
.backlinks-error,
|
||||
.outgoing-links-error {
|
||||
padding: $space-4 $space-6;
|
||||
background: $error-bg;
|
||||
border: 1px solid $error-border;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-md;
|
||||
color: $error;
|
||||
}
|
||||
|
||||
.backlinks-empty,
|
||||
.outgoing-links-empty {
|
||||
padding: $space-8;
|
||||
text-align: center;
|
||||
color: $text-2;
|
||||
font-size: $font-size-md;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.backlinks-list,
|
||||
.outgoing-links-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@include flex(column, flex-start, stretch, 6px);
|
||||
}
|
||||
|
||||
.backlink-item,
|
||||
.outgoing-link-item {
|
||||
padding: $space-5 $space-6;
|
||||
background: $bg-0;
|
||||
border: 1px solid $border-subtle;
|
||||
border-radius: $radius-sm;
|
||||
cursor: pointer;
|
||||
transition: background $transition-base, border-color $transition-base;
|
||||
|
||||
&:hover {
|
||||
background: $bg-1;
|
||||
border-color: $border;
|
||||
}
|
||||
|
||||
&.unresolved {
|
||||
opacity: 0.7;
|
||||
border-style: dashed;
|
||||
}
|
||||
}
|
||||
|
||||
.backlink-source,
|
||||
.outgoing-link-target {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.backlink-title,
|
||||
.outgoing-link-text {
|
||||
font-size: $font-size-lg;
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-0;
|
||||
flex: 1;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.backlink-type-badge,
|
||||
.outgoing-link-type-badge {
|
||||
display: inline-block;
|
||||
padding: 1px $space-3;
|
||||
border-radius: $radius-xl;
|
||||
font-size: 9px;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: $letter-spacing-wide;
|
||||
|
||||
&.backlink-type-wikilink,
|
||||
&.link-type-wikilink {
|
||||
background: $accent-dim;
|
||||
color: $accent-text;
|
||||
}
|
||||
|
||||
&.backlink-type-embed,
|
||||
&.link-type-embed {
|
||||
background: $type-audio-bg;
|
||||
color: $type-audio-text;
|
||||
}
|
||||
|
||||
&.backlink-type-markdown_link,
|
||||
&.link-type-markdown_link {
|
||||
background: $type-document-bg;
|
||||
color: $type-document-text;
|
||||
}
|
||||
}
|
||||
|
||||
.backlink-context {
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
line-height: $line-height-normal;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.backlink-line {
|
||||
color: $text-1;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
|
||||
.unresolved-badge {
|
||||
padding: 1px $space-3;
|
||||
border-radius: $radius-xl;
|
||||
font-size: 9px;
|
||||
font-weight: $font-weight-semibold;
|
||||
background: $warning-light;
|
||||
color: $warning;
|
||||
}
|
||||
|
||||
.outgoing-links-unresolved-badge {
|
||||
margin-left: $space-4;
|
||||
padding: $space-1 $space-4;
|
||||
border-radius: 10px;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-medium;
|
||||
background: $warning-medium;
|
||||
color: $warning;
|
||||
}
|
||||
|
||||
.outgoing-links-global-unresolved {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
margin-top: $space-6;
|
||||
padding: $space-5 $space-6;
|
||||
background: $warning-bg;
|
||||
border: 1px solid $warning-border;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
|
||||
.unresolved-icon {
|
||||
color: $warning;
|
||||
}
|
||||
}
|
||||
|
||||
.backlinks-message {
|
||||
padding: $space-4 $space-5;
|
||||
margin-bottom: 10px;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-base;
|
||||
|
||||
&.success {
|
||||
background: $success-bg;
|
||||
border: 1px solid $success-border;
|
||||
color: $success;
|
||||
}
|
||||
|
||||
&.error {
|
||||
background: $error-bg;
|
||||
border: 1px solid $error-border;
|
||||
color: $error;
|
||||
}
|
||||
}
|
||||
210
crates/pinakes-ui/assets/styles/_base.scss
Normal file
210
crates/pinakes-ui/assets/styles/_base.scss
Normal file
|
|
@ -0,0 +1,210 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Reset & base
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
@include scrollbar;
|
||||
}
|
||||
|
||||
// CSS custom properties
|
||||
:root {
|
||||
// Background
|
||||
--bg-0: #{$bg-0};
|
||||
--bg-1: #{$bg-1};
|
||||
--bg-2: #{$bg-2};
|
||||
--bg-3: #{$bg-3};
|
||||
|
||||
// Border
|
||||
--border-subtle: #{$border-subtle};
|
||||
--border: #{$border};
|
||||
--border-strong: #{$border-strong};
|
||||
|
||||
// Text
|
||||
--text-0: #{$text-0};
|
||||
--text-1: #{$text-1};
|
||||
--text-2: #{$text-2};
|
||||
|
||||
// Accent
|
||||
--accent: #{$accent};
|
||||
--accent-dim: #{$accent-dim};
|
||||
--accent-text: #{$accent-text};
|
||||
|
||||
// Semantic
|
||||
--success: #{$success};
|
||||
--error: #{$error};
|
||||
--warning: #{$warning};
|
||||
|
||||
// Border radius
|
||||
--radius-sm: #{$radius-sm};
|
||||
--radius: #{$radius};
|
||||
--radius-md: #{$radius-md};
|
||||
|
||||
// Shadows
|
||||
--shadow-sm: #{$shadow-sm};
|
||||
--shadow: #{$shadow};
|
||||
--shadow-lg: #{$shadow-lg};
|
||||
}
|
||||
|
||||
// Body
|
||||
body {
|
||||
font-family: $font-family-base;
|
||||
background: var(--bg-0);
|
||||
color: var(--text-0);
|
||||
font-size: $font-size-lg;
|
||||
line-height: $line-height-relaxed;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
// Focus styles
|
||||
:focus-visible {
|
||||
@include focus-outline;
|
||||
}
|
||||
|
||||
// Selection
|
||||
::selection {
|
||||
background: $accent-dim;
|
||||
color: $accent-text;
|
||||
}
|
||||
|
||||
// Links
|
||||
a {
|
||||
color: $accent-text;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
// Code
|
||||
code {
|
||||
padding: 1px 5px;
|
||||
border-radius: $radius-sm;
|
||||
background: $bg-0;
|
||||
color: $accent-text;
|
||||
font-family: $font-family-mono;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
// Lists
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
|
||||
li {
|
||||
padding: 3px 0;
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
}
|
||||
}
|
||||
|
||||
// Utility text
|
||||
.text-muted {
|
||||
color: $text-1;
|
||||
}
|
||||
|
||||
.text-sm {
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.mono {
|
||||
font-family: $font-family-mono;
|
||||
font-size: $font-size-md;
|
||||
}
|
||||
|
||||
// Utility layout
|
||||
.flex-row {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
}
|
||||
|
||||
.flex-between {
|
||||
@include flex-between;
|
||||
}
|
||||
|
||||
.mb-16 {
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.mb-8 {
|
||||
margin-bottom: $space-6;
|
||||
}
|
||||
|
||||
// Animations
|
||||
@keyframes fade-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slide-up {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(8px);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0.3;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes skeleton-pulse {
|
||||
0% {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes indeterminate {
|
||||
0% {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(400%);
|
||||
}
|
||||
}
|
||||
1132
crates/pinakes-ui/assets/styles/_components.scss
Normal file
1132
crates/pinakes-ui/assets/styles/_components.scss
Normal file
File diff suppressed because it is too large
Load diff
310
crates/pinakes-ui/assets/styles/_graph.scss
Normal file
310
crates/pinakes-ui/assets/styles/_graph.scss
Normal file
|
|
@ -0,0 +1,310 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Graph view
|
||||
|
||||
.graph-view {
|
||||
@include flex(column);
|
||||
height: 100%;
|
||||
background: $bg-1;
|
||||
border-radius: $radius;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.graph-toolbar {
|
||||
@include flex(row, flex-start, center, $space-8);
|
||||
padding: $space-6 $space-8;
|
||||
background: $bg-2;
|
||||
border-bottom: 1px solid $border;
|
||||
}
|
||||
|
||||
.graph-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
.graph-controls {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
|
||||
select {
|
||||
padding: $space-2 20px $space-2 $space-4;
|
||||
font-size: $font-size-base;
|
||||
background: $bg-3;
|
||||
}
|
||||
}
|
||||
|
||||
.graph-stats {
|
||||
margin-left: auto;
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.graph-container {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
@include flex-center;
|
||||
overflow: hidden;
|
||||
background: $bg-0;
|
||||
}
|
||||
|
||||
.graph-loading,
|
||||
.graph-error,
|
||||
.graph-empty {
|
||||
@include flex(column, center, center, $space-5);
|
||||
padding: 48px;
|
||||
color: $text-2;
|
||||
font-size: $font-size-lg;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.graph-svg {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.graph-svg-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.graph-zoom-controls {
|
||||
position: absolute;
|
||||
top: $space-8;
|
||||
left: $space-8;
|
||||
@include flex(column, flex-start, stretch, $space-4);
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.zoom-btn {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 6px;
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
color: $text-0;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
@include flex-center;
|
||||
cursor: pointer;
|
||||
transition: all $transition-slow;
|
||||
box-shadow: $shadow-sm;
|
||||
|
||||
&:hover {
|
||||
background: $bg-3;
|
||||
border-color: $border-strong;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
}
|
||||
|
||||
// Graph elements
|
||||
|
||||
.graph-edges line {
|
||||
stroke: $border-strong;
|
||||
stroke-width: 1;
|
||||
opacity: 0.6;
|
||||
|
||||
&.edge-type-wikilink {
|
||||
stroke: $accent;
|
||||
}
|
||||
|
||||
&.edge-type-embed {
|
||||
stroke: $graph-edge-embed;
|
||||
stroke-dasharray: 4 2;
|
||||
}
|
||||
}
|
||||
|
||||
.graph-nodes {
|
||||
.graph-node {
|
||||
cursor: pointer;
|
||||
|
||||
circle {
|
||||
fill: $graph-node-fill;
|
||||
stroke: $graph-node-stroke;
|
||||
stroke-width: 2;
|
||||
transition: fill $transition-slow, stroke $transition-slow;
|
||||
}
|
||||
|
||||
&:hover circle {
|
||||
fill: $graph-node-hover;
|
||||
}
|
||||
|
||||
&.selected circle {
|
||||
fill: $accent;
|
||||
stroke: $graph-node-selected;
|
||||
}
|
||||
|
||||
text {
|
||||
fill: $text-1;
|
||||
font-size: 11px;
|
||||
pointer-events: none;
|
||||
text-anchor: middle;
|
||||
dominant-baseline: central;
|
||||
transform: translateY(16px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Node details panel
|
||||
|
||||
.node-details-panel {
|
||||
position: absolute;
|
||||
top: $space-8;
|
||||
right: $space-8;
|
||||
width: 280px;
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
box-shadow: $shadow;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.node-details-header {
|
||||
@include flex-between;
|
||||
padding: $space-5 14px;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
|
||||
h3 {
|
||||
font-size: $font-size-lg;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
margin: 0;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
color: $text-2;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
padding: $space-1 $space-3;
|
||||
line-height: 1;
|
||||
|
||||
&:hover {
|
||||
color: $text-0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.node-details-content {
|
||||
padding: 14px;
|
||||
|
||||
.node-title {
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
margin-bottom: $space-6;
|
||||
}
|
||||
}
|
||||
|
||||
.node-stats {
|
||||
display: flex;
|
||||
gap: $space-8;
|
||||
margin-bottom: $space-6;
|
||||
|
||||
.stat {
|
||||
font-size: $font-size-md;
|
||||
color: $text-2;
|
||||
|
||||
strong {
|
||||
color: $text-0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Physics controls
|
||||
|
||||
.physics-controls-panel {
|
||||
position: absolute;
|
||||
top: $space-8;
|
||||
right: $space-8;
|
||||
width: 300px;
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
box-shadow: $shadow;
|
||||
padding: $space-8;
|
||||
z-index: 10;
|
||||
|
||||
h4 {
|
||||
font-size: $font-size-lg;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
margin: 0 0 $space-8 0;
|
||||
padding-bottom: $space-4;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
}
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
margin-top: $space-4;
|
||||
}
|
||||
}
|
||||
|
||||
.control-group {
|
||||
margin-bottom: 14px;
|
||||
|
||||
label {
|
||||
display: block;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-1;
|
||||
margin-bottom: 6px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: $letter-spacing-uppercase;
|
||||
}
|
||||
|
||||
input[type='range'] {
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
border-radius: $space-2;
|
||||
background: $bg-3;
|
||||
outline: none;
|
||||
-webkit-appearance: none;
|
||||
|
||||
&::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
background: $accent;
|
||||
cursor: pointer;
|
||||
transition: transform $transition-base;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.15);
|
||||
}
|
||||
}
|
||||
|
||||
&::-moz-range-thumb {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
background: $accent;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: transform $transition-base;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.15);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.control-value {
|
||||
display: inline-block;
|
||||
margin-top: $space-1;
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
font-family: $font-family-mono;
|
||||
}
|
||||
344
crates/pinakes-ui/assets/styles/_layout.scss
Normal file
344
crates/pinakes-ui/assets/styles/_layout.scss
Normal file
|
|
@ -0,0 +1,344 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// App layout
|
||||
|
||||
.app {
|
||||
@include flex(row, flex-start, stretch);
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
// Sidebar
|
||||
|
||||
.sidebar {
|
||||
width: $sidebar-width;
|
||||
min-width: $sidebar-width;
|
||||
max-width: $sidebar-width;
|
||||
background: $bg-1;
|
||||
border-right: 1px solid $border;
|
||||
@include flex(column);
|
||||
flex-shrink: 0;
|
||||
user-select: none;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
z-index: $z-dropdown;
|
||||
transition: width $transition-slow, min-width $transition-slow,
|
||||
max-width $transition-slow;
|
||||
|
||||
&.collapsed {
|
||||
width: $sidebar-collapsed-width;
|
||||
min-width: $sidebar-collapsed-width;
|
||||
max-width: $sidebar-collapsed-width;
|
||||
|
||||
.nav-label,
|
||||
.sidebar-header .logo,
|
||||
.sidebar-header .version,
|
||||
.nav-badge,
|
||||
.nav-item-text,
|
||||
.sidebar-footer .status-text,
|
||||
.user-name,
|
||||
.role-badge,
|
||||
.user-info .btn,
|
||||
.sidebar-import-header span,
|
||||
.sidebar-import-file {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
justify-content: center;
|
||||
padding: $space-4;
|
||||
border-left: none;
|
||||
border-radius: $radius-sm;
|
||||
|
||||
&.active {
|
||||
border-left: none;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-icon {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding: 12px $space-4;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nav-section {
|
||||
padding: 0 $space-2;
|
||||
}
|
||||
|
||||
.sidebar-footer {
|
||||
padding: $space-4;
|
||||
|
||||
.user-info {
|
||||
justify-content: center;
|
||||
padding: $space-2;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-import-progress {
|
||||
padding: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-header {
|
||||
padding: $space-8 $space-8 20px;
|
||||
@include flex(row, flex-start, baseline, $space-4);
|
||||
|
||||
.logo {
|
||||
font-size: $font-size-2xl;
|
||||
font-weight: $font-weight-bold;
|
||||
letter-spacing: $letter-spacing-tight;
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
.version {
|
||||
font-size: $font-size-sm;
|
||||
color: $text-2;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-toggle {
|
||||
@include button-ghost;
|
||||
color: $text-2;
|
||||
padding: $space-4;
|
||||
font-size: $font-size-4xl;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
|
||||
&:hover {
|
||||
color: $text-0;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-spacer {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar-footer {
|
||||
padding: $space-6;
|
||||
border-top: 1px solid $border-subtle;
|
||||
overflow: visible;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
// Navigation
|
||||
|
||||
.nav-section {
|
||||
padding: 0 $space-4;
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.nav-label {
|
||||
padding: $space-4 $space-4 $space-2;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
@include text-uppercase;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
padding: 6px $space-4;
|
||||
border-radius: $radius-sm;
|
||||
cursor: pointer;
|
||||
color: $text-1;
|
||||
font-size: $font-size-lg;
|
||||
font-weight: 450;
|
||||
transition: color $transition-base, background $transition-base;
|
||||
border: none;
|
||||
background: none;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
border-left: 2px solid transparent;
|
||||
margin-left: 0;
|
||||
|
||||
&:hover {
|
||||
color: $text-0;
|
||||
background: $overlay-light;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $accent-text;
|
||||
border-left-color: $accent;
|
||||
background: $accent-dim;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-item-text {
|
||||
flex: 1;
|
||||
@include text-truncate;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sidebar:not(.collapsed) .nav-item-text {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.nav-icon {
|
||||
width: 18px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.nav-badge {
|
||||
margin-left: auto;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-2;
|
||||
background: $bg-3;
|
||||
padding: 1px $space-3;
|
||||
border-radius: $radius-xl;
|
||||
min-width: 20px;
|
||||
text-align: center;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
// Status indicator
|
||||
|
||||
.status-indicator {
|
||||
@include flex(row, center, center, 6px);
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-medium;
|
||||
min-width: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.sidebar:not(.collapsed) .status-indicator {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
@include status-dot;
|
||||
|
||||
&.connected {
|
||||
background: $success;
|
||||
}
|
||||
|
||||
&.disconnected {
|
||||
background: $error;
|
||||
}
|
||||
|
||||
&.checking {
|
||||
background: $warning;
|
||||
@include pulse;
|
||||
}
|
||||
}
|
||||
|
||||
.status-text {
|
||||
color: $text-2;
|
||||
@include text-truncate;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.sidebar:not(.collapsed) .status-text {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
// Main content
|
||||
|
||||
.main {
|
||||
flex: 1;
|
||||
@include flex(column);
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
height: $header-height;
|
||||
min-height: $header-height;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
@include flex(row, flex-start, center, 12px);
|
||||
padding: 0 20px;
|
||||
background: $bg-1;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
.header-spacer {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 20px;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: $overlay-strong transparent;
|
||||
}
|
||||
|
||||
// Import progress
|
||||
|
||||
.sidebar-import-progress {
|
||||
padding: $space-5 $space-6;
|
||||
background: $bg-2;
|
||||
border-top: 1px solid $border-subtle;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.sidebar-import-header {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
margin-bottom: $space-2;
|
||||
color: $text-1;
|
||||
}
|
||||
|
||||
.sidebar-import-file {
|
||||
color: $text-2;
|
||||
font-size: $font-size-sm;
|
||||
@include text-truncate;
|
||||
margin-bottom: $space-2;
|
||||
}
|
||||
|
||||
.sidebar-import-progress .progress-bar {
|
||||
height: 3px;
|
||||
}
|
||||
|
||||
// User info
|
||||
|
||||
.user-info {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
font-size: $font-size-md;
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.user-name {
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-0;
|
||||
@include text-truncate;
|
||||
max-width: 90px;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
.role-badge {
|
||||
display: inline-block;
|
||||
padding: 1px $space-3;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-transform: uppercase;
|
||||
|
||||
&.role-admin {
|
||||
background: $role-admin-bg;
|
||||
color: $role-admin-text;
|
||||
}
|
||||
|
||||
&.role-editor {
|
||||
background: $role-editor-bg;
|
||||
color: $role-editor-text;
|
||||
}
|
||||
|
||||
&.role-viewer {
|
||||
background: $role-viewer-bg;
|
||||
color: $role-viewer-text;
|
||||
}
|
||||
}
|
||||
715
crates/pinakes-ui/assets/styles/_media.scss
Normal file
715
crates/pinakes-ui/assets/styles/_media.scss
Normal file
|
|
@ -0,0 +1,715 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Media cards & grid
|
||||
|
||||
.media-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
||||
gap: $space-6;
|
||||
}
|
||||
|
||||
.media-card {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
transition: border-color 0.12s, box-shadow 0.12s;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
border-color: $border-strong;
|
||||
box-shadow: $shadow-sm;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
border-color: $accent;
|
||||
box-shadow: 0 0 0 1px $accent;
|
||||
}
|
||||
}
|
||||
|
||||
.card-checkbox {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
z-index: 2;
|
||||
opacity: 0;
|
||||
transition: opacity $transition-base;
|
||||
|
||||
input[type='checkbox'] {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
cursor: pointer;
|
||||
filter: drop-shadow(0 1px 2px $drop-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
.media-card:hover .card-checkbox,
|
||||
.media-card.selected .card-checkbox {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.card-thumbnail {
|
||||
width: 100%;
|
||||
aspect-ratio: 1;
|
||||
background: $bg-0;
|
||||
@include flex-center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
img,
|
||||
.card-thumb-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.card-type-icon {
|
||||
font-size: 32px;
|
||||
opacity: 0.4;
|
||||
@include flex-center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.card-info {
|
||||
padding: $space-4 $space-5;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
font-size: $font-size-md;
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-0;
|
||||
@include text-truncate;
|
||||
margin-bottom: $space-2;
|
||||
}
|
||||
|
||||
.card-title,
|
||||
.card-artist {
|
||||
font-size: $font-size-sm;
|
||||
@include text-truncate;
|
||||
line-height: $line-height-base;
|
||||
}
|
||||
|
||||
.card-meta {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.card-size {
|
||||
color: $text-2;
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
// Table thumbnails
|
||||
|
||||
.table-thumb-cell {
|
||||
width: 36px;
|
||||
padding: $space-2 6px !important;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.table-thumb {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
object-fit: cover;
|
||||
border-radius: 3px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.table-thumb-overlay {
|
||||
position: absolute;
|
||||
top: $space-2;
|
||||
left: 6px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.table-type-icon {
|
||||
@include flex-center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
font-size: 14px;
|
||||
opacity: 0.5;
|
||||
border-radius: 3px;
|
||||
background: $bg-0;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
// Type badges
|
||||
|
||||
.type-badge {
|
||||
display: inline-block;
|
||||
padding: 1px $space-3;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
@include text-uppercase;
|
||||
|
||||
&.type-audio {
|
||||
background: $type-audio-bg;
|
||||
color: $type-audio-text;
|
||||
}
|
||||
|
||||
&.type-video {
|
||||
background: $type-video-bg;
|
||||
color: $type-video-text;
|
||||
}
|
||||
|
||||
&.type-image {
|
||||
background: $type-image-bg;
|
||||
color: $type-image-text;
|
||||
}
|
||||
|
||||
&.type-document {
|
||||
background: $type-document-bg;
|
||||
color: $type-document-text;
|
||||
}
|
||||
|
||||
&.type-text {
|
||||
background: $type-text-bg;
|
||||
color: $type-text-text;
|
||||
}
|
||||
|
||||
&.type-other {
|
||||
background: $type-other-bg;
|
||||
color: $text-2;
|
||||
}
|
||||
}
|
||||
|
||||
// Tag badges
|
||||
|
||||
.tag-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: $space-2;
|
||||
}
|
||||
|
||||
.tag-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: $space-2;
|
||||
padding: $space-1 $space-5;
|
||||
background: $accent-dim;
|
||||
color: $accent-text;
|
||||
border-radius: 12px;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-medium;
|
||||
|
||||
&.selected {
|
||||
background: $accent;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&:not(.selected) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tag-remove {
|
||||
cursor: pointer;
|
||||
opacity: 0.4;
|
||||
font-size: $font-size-lg;
|
||||
line-height: 1;
|
||||
transition: opacity $transition-base;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Tag hierarchy
|
||||
|
||||
.tag-group {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.tag-children {
|
||||
margin-left: $space-8;
|
||||
margin-top: $space-2;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: $space-2;
|
||||
}
|
||||
|
||||
.tag-confirm-delete {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: $space-2;
|
||||
font-size: $font-size-sm;
|
||||
color: $text-1;
|
||||
}
|
||||
|
||||
.tag-confirm-yes {
|
||||
cursor: pointer;
|
||||
color: $error;
|
||||
font-weight: $font-weight-semibold;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.tag-confirm-no {
|
||||
cursor: pointer;
|
||||
color: $text-2;
|
||||
font-weight: $font-weight-medium;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
// Detail view
|
||||
|
||||
.detail-actions {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.detail-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: $space-4;
|
||||
}
|
||||
|
||||
.detail-field {
|
||||
padding: $space-5 $space-6;
|
||||
background: $bg-0;
|
||||
border-radius: $radius-sm;
|
||||
border: 1px solid $border-subtle;
|
||||
|
||||
&.full-width {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
input[type='text'],
|
||||
textarea,
|
||||
select {
|
||||
width: 100%;
|
||||
margin-top: $space-2;
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-height: 64px;
|
||||
resize: vertical;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-label {
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-2;
|
||||
@include text-uppercase($letter-spacing-wider);
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.detail-value {
|
||||
font-size: $font-size-lg;
|
||||
color: $text-0;
|
||||
word-break: break-all;
|
||||
|
||||
&.mono {
|
||||
font-family: $font-family-mono;
|
||||
font-size: $font-size-base;
|
||||
color: $text-1;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-preview {
|
||||
margin-bottom: $space-8;
|
||||
background: $bg-0;
|
||||
border: 1px solid $border-subtle;
|
||||
border-radius: $radius;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
|
||||
&:has(.markdown-viewer) {
|
||||
max-height: none;
|
||||
overflow-y: auto;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&:not(:has(.markdown-viewer)) {
|
||||
max-height: 450px;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 400px;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
audio {
|
||||
width: 100%;
|
||||
padding: $space-8;
|
||||
}
|
||||
|
||||
video {
|
||||
max-width: 100%;
|
||||
max-height: 400px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-no-preview {
|
||||
padding: $space-8 $space-8;
|
||||
text-align: center;
|
||||
@include flex(column, center, center, $space-5);
|
||||
}
|
||||
|
||||
// Frontmatter
|
||||
|
||||
.frontmatter-card {
|
||||
max-width: 800px;
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
padding: $space-6 $space-8;
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.frontmatter-fields {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: $space-2 $space-6;
|
||||
margin: 0;
|
||||
|
||||
dt {
|
||||
font-weight: $font-weight-semibold;
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
dd {
|
||||
font-size: $font-size-lg;
|
||||
color: $text-0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Empty state
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 48px $space-6;
|
||||
color: $text-2;
|
||||
|
||||
.empty-icon {
|
||||
font-size: $font-size-7xl;
|
||||
margin-bottom: $space-6;
|
||||
opacity: 0.3;
|
||||
}
|
||||
}
|
||||
|
||||
.empty-title {
|
||||
font-size: $font-size-2xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-1;
|
||||
margin-bottom: $space-2;
|
||||
}
|
||||
|
||||
.empty-subtitle {
|
||||
font-size: $font-size-md;
|
||||
max-width: 320px;
|
||||
margin: 0 auto;
|
||||
line-height: $line-height-relaxed;
|
||||
}
|
||||
|
||||
// Toast
|
||||
|
||||
.toast-container {
|
||||
position: fixed;
|
||||
bottom: $space-8;
|
||||
right: $space-8;
|
||||
z-index: $z-toast;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
gap: 6px;
|
||||
align-items: flex-end;
|
||||
|
||||
.toast {
|
||||
position: static;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.toast {
|
||||
position: fixed;
|
||||
bottom: $space-8;
|
||||
right: $space-8;
|
||||
padding: $space-5 $space-8;
|
||||
border-radius: $radius;
|
||||
background: $bg-3;
|
||||
border: 1px solid $border;
|
||||
color: $text-0;
|
||||
font-size: $font-size-md;
|
||||
box-shadow: $shadow;
|
||||
z-index: $z-toast;
|
||||
animation: slide-up 0.15s ease-out;
|
||||
max-width: 420px;
|
||||
|
||||
&.success {
|
||||
border-left: 3px solid $success;
|
||||
}
|
||||
|
||||
&.error {
|
||||
border-left: 3px solid $error;
|
||||
}
|
||||
}
|
||||
|
||||
// Banners
|
||||
|
||||
.offline-banner,
|
||||
.error-banner {
|
||||
background: $error-bg;
|
||||
border: 1px solid $error-border;
|
||||
border-radius: $radius-sm;
|
||||
padding: $space-5 $space-6;
|
||||
margin-bottom: $space-6;
|
||||
font-size: $font-size-md;
|
||||
color: $error-text;
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
|
||||
.offline-icon,
|
||||
.error-icon {
|
||||
font-size: 14px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.error-banner {
|
||||
padding: 10px 14px;
|
||||
}
|
||||
|
||||
.readonly-banner {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
padding: $space-5 $space-6;
|
||||
background: $warning-bg;
|
||||
border: 1px solid $warning-border;
|
||||
border-radius: $radius-sm;
|
||||
margin-bottom: $space-8;
|
||||
font-size: $font-size-md;
|
||||
color: $warning;
|
||||
}
|
||||
|
||||
.batch-actions {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
padding: $space-4 $space-5;
|
||||
background: $accent-dim;
|
||||
border: 1px solid $accent-border;
|
||||
border-radius: $radius-sm;
|
||||
margin-bottom: $space-6;
|
||||
font-size: $font-size-md;
|
||||
font-weight: $font-weight-medium;
|
||||
color: $accent-text;
|
||||
}
|
||||
|
||||
.select-all-banner {
|
||||
@include flex(row, center, center, $space-4);
|
||||
padding: $space-5 $space-8;
|
||||
background: $info-bg;
|
||||
border-radius: 6px;
|
||||
margin-bottom: $space-4;
|
||||
font-size: 0.85rem;
|
||||
color: $text-1;
|
||||
|
||||
button {
|
||||
background: none;
|
||||
border: none;
|
||||
color: $accent;
|
||||
cursor: pointer;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-decoration: underline;
|
||||
font-size: 0.85rem;
|
||||
padding: 0;
|
||||
|
||||
&:hover {
|
||||
color: $text-0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Import status
|
||||
|
||||
.import-status-panel {
|
||||
background: $bg-2;
|
||||
border: 1px solid $accent;
|
||||
border-radius: $radius;
|
||||
padding: $space-6 $space-8;
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.import-status-header {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
margin-bottom: $space-4;
|
||||
font-size: $font-size-lg;
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
.import-current-file {
|
||||
@include flex(row, flex-start, center, $space-1);
|
||||
margin-bottom: 6px;
|
||||
font-size: $font-size-md;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.import-file-label {
|
||||
color: $text-2;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.import-file-name {
|
||||
color: $text-0;
|
||||
@include text-truncate;
|
||||
font-family: monospace;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.import-queue-indicator {
|
||||
@include flex(row, flex-start, center, $space-1);
|
||||
margin-bottom: $space-4;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.import-queue-badge {
|
||||
@include flex-center;
|
||||
min-width: 18px;
|
||||
height: 18px;
|
||||
padding: 0 6px;
|
||||
background: $accent-dim;
|
||||
color: $accent-text;
|
||||
border-radius: 9px;
|
||||
font-weight: $font-weight-semibold;
|
||||
font-size: $font-size-sm;
|
||||
}
|
||||
|
||||
.import-queue-text {
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.import-tabs {
|
||||
display: flex;
|
||||
gap: 0;
|
||||
margin-bottom: $space-8;
|
||||
border-bottom: 1px solid $border;
|
||||
}
|
||||
|
||||
.import-tab {
|
||||
padding: $space-5 $space-8;
|
||||
background: none;
|
||||
border: none;
|
||||
border-bottom: 2px solid transparent;
|
||||
color: $text-2;
|
||||
font-size: $font-size-md;
|
||||
font-weight: $font-weight-medium;
|
||||
cursor: pointer;
|
||||
transition: color $transition-base, border-color $transition-base;
|
||||
|
||||
&:hover {
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $accent-text;
|
||||
border-bottom-color: $accent;
|
||||
}
|
||||
}
|
||||
|
||||
// Queue panel
|
||||
|
||||
.queue-panel {
|
||||
@include flex(column);
|
||||
border-left: 1px solid $border;
|
||||
background: $bg-1;
|
||||
min-width: 280px;
|
||||
max-width: 320px;
|
||||
}
|
||||
|
||||
.queue-header {
|
||||
@include flex-between;
|
||||
padding: $space-6 $space-8;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
|
||||
h3 {
|
||||
margin: 0;
|
||||
font-size: 0.9rem;
|
||||
color: $text-0;
|
||||
}
|
||||
}
|
||||
|
||||
.queue-controls {
|
||||
display: flex;
|
||||
gap: $space-1;
|
||||
}
|
||||
|
||||
.queue-list {
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.queue-item {
|
||||
@include flex(row, flex-start, center);
|
||||
padding: $space-4 $space-8;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
transition: background $transition-slow;
|
||||
|
||||
&:hover {
|
||||
background: $bg-2;
|
||||
|
||||
.queue-item-remove {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&-active {
|
||||
background: $accent-dim;
|
||||
border-left: 3px solid $accent;
|
||||
}
|
||||
}
|
||||
|
||||
.queue-item-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.queue-item-title {
|
||||
display: block;
|
||||
font-size: 0.85rem;
|
||||
color: $text-0;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.queue-item-artist {
|
||||
display: block;
|
||||
font-size: 0.75rem;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.queue-item-remove {
|
||||
opacity: 0;
|
||||
transition: opacity $transition-slow;
|
||||
}
|
||||
|
||||
.queue-empty {
|
||||
padding: $space-8 $space-8;
|
||||
text-align: center;
|
||||
color: $text-2;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
300
crates/pinakes-ui/assets/styles/_mixins.scss
Normal file
300
crates/pinakes-ui/assets/styles/_mixins.scss
Normal file
|
|
@ -0,0 +1,300 @@
|
|||
@use 'variables' as *;
|
||||
|
||||
// Utility mixins
|
||||
|
||||
@mixin flex($direction: row, $justify: flex-start, $align: stretch, $gap: 0) {
|
||||
display: flex;
|
||||
flex-direction: $direction;
|
||||
justify-content: $justify;
|
||||
align-items: $align;
|
||||
@if $gap != 0 {
|
||||
gap: $gap;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin flex-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@mixin flex-between {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
// Text mixins
|
||||
|
||||
@mixin text-truncate {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@mixin text-uppercase($letter-spacing: $letter-spacing-wider) {
|
||||
text-transform: uppercase;
|
||||
letter-spacing: $letter-spacing;
|
||||
}
|
||||
|
||||
@mixin font-mono($size: $font-size-md) {
|
||||
font-family: $font-family-mono;
|
||||
font-size: $size;
|
||||
}
|
||||
|
||||
// Button mixins
|
||||
|
||||
@mixin button-base {
|
||||
padding: 5px 12px;
|
||||
border-radius: $radius-sm;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: $font-size-md;
|
||||
font-weight: $font-weight-medium;
|
||||
transition: all $transition-base;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
white-space: nowrap;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
@mixin button-variant($bg, $color, $border: null, $hover-bg: null) {
|
||||
background: $bg;
|
||||
color: $color;
|
||||
@if $border {
|
||||
border: 1px solid $border;
|
||||
}
|
||||
@if $hover-bg {
|
||||
&:hover {
|
||||
background: $hover-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin button-ghost {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
// Card mixins
|
||||
|
||||
@mixin card($padding: $space-8) {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
padding: $padding;
|
||||
}
|
||||
|
||||
@mixin card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: $space-6;
|
||||
}
|
||||
|
||||
// Form mixins
|
||||
|
||||
@mixin input-base {
|
||||
padding: 6px 10px;
|
||||
border-radius: $radius-sm;
|
||||
border: 1px solid $border;
|
||||
background: $bg-0;
|
||||
color: $text-0;
|
||||
font-size: $font-size-lg;
|
||||
outline: none;
|
||||
transition: border-color $transition-slow;
|
||||
font-family: inherit;
|
||||
|
||||
&::placeholder {
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-color: $accent;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin form-label {
|
||||
display: block;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-1;
|
||||
margin-bottom: $space-2;
|
||||
@include text-uppercase($letter-spacing-wide);
|
||||
}
|
||||
|
||||
// Scrollbar mixins
|
||||
|
||||
@mixin scrollbar($width: 5px, $thumb-color: $overlay-strong, $track-color: transparent) {
|
||||
&::-webkit-scrollbar {
|
||||
width: $width;
|
||||
height: $width;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background: $track-color;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background: $thumb-color;
|
||||
border-radius: 3px;
|
||||
|
||||
&:hover {
|
||||
background: $border-strong;
|
||||
}
|
||||
}
|
||||
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: $thumb-color $track-color;
|
||||
}
|
||||
|
||||
// Status/state mixins
|
||||
|
||||
@mixin status-dot($size: 6px) {
|
||||
width: $size;
|
||||
height: $size;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
@mixin disabled-state($opacity: 0.4) {
|
||||
opacity: $opacity;
|
||||
cursor: not-allowed;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@mixin focus-outline($color: $accent, $width: 2px, $offset: 2px) {
|
||||
&:focus-visible {
|
||||
outline: $width solid $color;
|
||||
outline-offset: $offset;
|
||||
}
|
||||
}
|
||||
|
||||
// Animation mixins
|
||||
|
||||
@mixin animation($name, $duration: 0.7s, $timing: linear, $iteration: infinite) {
|
||||
animation: $name $duration $timing $iteration;
|
||||
}
|
||||
|
||||
@mixin fade-in($duration: 0.1s) {
|
||||
animation: fade-in $duration ease-out;
|
||||
}
|
||||
|
||||
@mixin slide-up($duration: 0.15s, $distance: 8px) {
|
||||
animation: slide-up $duration ease-out;
|
||||
|
||||
@keyframes slide-up {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY($distance);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin pulse($duration: 1.5s) {
|
||||
animation: pulse $duration infinite;
|
||||
}
|
||||
|
||||
@mixin skeleton-pulse {
|
||||
animation: skeleton-pulse 1.5s ease-in-out infinite;
|
||||
background: $bg-3;
|
||||
}
|
||||
|
||||
// Badge mixins
|
||||
|
||||
@mixin badge-base {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: $space-2;
|
||||
padding: $space-1 $space-3;
|
||||
border-radius: $radius-xl;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
|
||||
@mixin badge-variant($bg, $color) {
|
||||
background: $bg;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
// Tooltip mixins
|
||||
|
||||
@mixin tooltip-trigger {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
border-radius: 50%;
|
||||
background: $bg-3;
|
||||
color: $text-2;
|
||||
font-size: $font-size-xs;
|
||||
font-weight: $font-weight-bold;
|
||||
cursor: help;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
margin-left: $space-2;
|
||||
|
||||
&:hover {
|
||||
background: $accent-dim;
|
||||
color: $accent-text;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin tooltip-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
bottom: calc(100% + 6px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 6px 10px;
|
||||
background: $bg-3;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-sm;
|
||||
color: $text-0;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-normal;
|
||||
line-height: $line-height-normal;
|
||||
white-space: normal;
|
||||
width: 220px;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
box-shadow: $shadow;
|
||||
z-index: 100;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
// Media queries
|
||||
|
||||
@mixin mobile {
|
||||
@media (max-width: 768px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin tablet {
|
||||
@media (min-width: 769px) and (max-width: 1024px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin desktop {
|
||||
@media (min-width: 1025px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Reduced motion
|
||||
|
||||
@mixin respect-reduced-motion {
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
}
|
||||
508
crates/pinakes-ui/assets/styles/_sections.scss
Normal file
508
crates/pinakes-ui/assets/styles/_sections.scss
Normal file
|
|
@ -0,0 +1,508 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Statistics
|
||||
|
||||
.statistics-page {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.stats-overview,
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: $space-8;
|
||||
margin-bottom: $space-12;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
padding: 20px;
|
||||
@include flex(row, flex-start, center, $space-8);
|
||||
|
||||
&.stat-primary {
|
||||
border-left: 3px solid $accent;
|
||||
}
|
||||
|
||||
&.stat-success {
|
||||
border-left: 3px solid $success;
|
||||
}
|
||||
|
||||
&.stat-info {
|
||||
border-left: 3px solid $type-document-text;
|
||||
}
|
||||
|
||||
&.stat-warning {
|
||||
border-left: 3px solid $warning;
|
||||
}
|
||||
|
||||
&.stat-purple {
|
||||
border-left: 3px solid $type-audio-text;
|
||||
}
|
||||
|
||||
&.stat-danger {
|
||||
border-left: 3px solid $error;
|
||||
}
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
flex-shrink: 0;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.stat-content {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: $font-size-6xl;
|
||||
font-weight: $font-weight-bold;
|
||||
color: $text-0;
|
||||
line-height: $line-height-tight;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: $font-size-md;
|
||||
color: $text-2;
|
||||
margin-top: $space-2;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
|
||||
.stats-section {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
padding: $space-8;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: $font-size-3xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
margin-bottom: 20px;
|
||||
|
||||
// Alternative smaller size used in some places
|
||||
&.small {
|
||||
font-size: $font-size-xl;
|
||||
margin-bottom: $space-6;
|
||||
padding-bottom: 6px;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
}
|
||||
}
|
||||
|
||||
// Chart bars
|
||||
|
||||
.chart-bars {
|
||||
@include flex(column, flex-start, stretch, $space-8);
|
||||
}
|
||||
|
||||
.bar-item {
|
||||
display: grid;
|
||||
grid-template-columns: 120px 1fr 80px;
|
||||
align-items: center;
|
||||
gap: $space-8;
|
||||
}
|
||||
|
||||
.bar-label {
|
||||
font-size: $font-size-lg;
|
||||
font-weight: $font-weight-medium;
|
||||
color: $text-1;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.bar-track {
|
||||
height: 28px;
|
||||
background: $bg-3;
|
||||
border-radius: $radius-sm;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.bar-fill {
|
||||
height: 100%;
|
||||
transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
border-radius: $radius-sm;
|
||||
|
||||
&.bar-primary {
|
||||
background: linear-gradient(90deg, $accent 0%, $gradient-accent-end 100%);
|
||||
}
|
||||
|
||||
&.bar-success {
|
||||
background: linear-gradient(90deg, $success 0%, $gradient-success-end 100%);
|
||||
}
|
||||
}
|
||||
|
||||
.bar-value {
|
||||
font-size: $font-size-lg;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-1;
|
||||
text-align: right;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
// Settings
|
||||
|
||||
.settings-section {
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.settings-card {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-md;
|
||||
padding: 20px;
|
||||
margin-bottom: $space-8;
|
||||
|
||||
&.danger-card {
|
||||
border: 1px solid $error-border-light;
|
||||
}
|
||||
}
|
||||
|
||||
.settings-card-header {
|
||||
@include flex-between;
|
||||
margin-bottom: $space-8;
|
||||
padding-bottom: $space-6;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
}
|
||||
|
||||
.settings-card-title {
|
||||
font-size: $font-size-xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
}
|
||||
|
||||
.settings-card-body {
|
||||
padding-top: $space-1;
|
||||
}
|
||||
|
||||
.settings-field {
|
||||
@include flex-between;
|
||||
padding: $space-4 0;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
select {
|
||||
min-width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
// Config status
|
||||
|
||||
.config-path {
|
||||
font-size: $font-size-base;
|
||||
color: $text-2;
|
||||
margin-bottom: $space-6;
|
||||
font-family: $font-family-mono;
|
||||
padding: 6px $space-5;
|
||||
background: $bg-0;
|
||||
border-radius: $radius-sm;
|
||||
border: 1px solid $border-subtle;
|
||||
}
|
||||
|
||||
.config-status {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
padding: 3px $space-5;
|
||||
border-radius: 12px;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semibold;
|
||||
|
||||
&.writable {
|
||||
background: $success-light;
|
||||
color: $success;
|
||||
}
|
||||
|
||||
&.readonly {
|
||||
background: $error-medium;
|
||||
color: $error;
|
||||
}
|
||||
}
|
||||
|
||||
// Root list
|
||||
|
||||
.root-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.root-item {
|
||||
@include flex-between;
|
||||
padding: $space-4 $space-6;
|
||||
background: $bg-0;
|
||||
border: 1px solid $border-subtle;
|
||||
border-radius: $radius-sm;
|
||||
margin-bottom: $space-2;
|
||||
font-family: $font-family-mono;
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
}
|
||||
|
||||
// Info row
|
||||
|
||||
.info-row {
|
||||
@include flex-between;
|
||||
padding: 6px 0;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
font-size: $font-size-lg;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
|
||||
.info-label {
|
||||
color: $text-1;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
|
||||
.info-value {
|
||||
color: $text-0;
|
||||
}
|
||||
|
||||
// Tasks
|
||||
|
||||
.tasks-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
|
||||
gap: $space-8;
|
||||
padding: $space-6;
|
||||
}
|
||||
|
||||
.task-card {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius;
|
||||
overflow: hidden;
|
||||
transition: all $transition-slower;
|
||||
|
||||
&:hover {
|
||||
border-color: $border-strong;
|
||||
box-shadow: $shadow-card-hover;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
&-enabled {
|
||||
border-left: 3px solid $success;
|
||||
}
|
||||
|
||||
&-disabled {
|
||||
border-left: 3px solid $text-3;
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
.task-card-header {
|
||||
@include flex-between;
|
||||
align-items: flex-start;
|
||||
padding: $space-8;
|
||||
border-bottom: 1px solid $border-subtle;
|
||||
}
|
||||
|
||||
.task-header-left {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.task-name {
|
||||
font-size: $font-size-3xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.task-schedule {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
font-size: $font-size-md;
|
||||
color: $text-2;
|
||||
font-family: $font-family-mono-alt;
|
||||
}
|
||||
|
||||
.schedule-icon {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.task-status-badge {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
padding: $space-1 10px;
|
||||
border-radius: $radius-sm;
|
||||
font-size: $font-size-sm;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: $letter-spacing-wide;
|
||||
|
||||
&.status-enabled {
|
||||
background: $green-medium;
|
||||
color: $success;
|
||||
|
||||
.status-dot {
|
||||
animation: pulse 1.5s infinite;
|
||||
}
|
||||
}
|
||||
|
||||
&.status-disabled {
|
||||
background: $bg-3;
|
||||
color: $text-2;
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
@include status-dot;
|
||||
background: currentColor;
|
||||
}
|
||||
}
|
||||
|
||||
.task-info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
||||
gap: $space-6;
|
||||
padding: $space-8;
|
||||
}
|
||||
|
||||
.task-info-item {
|
||||
@include flex(row, flex-start, flex-start, 10px);
|
||||
}
|
||||
|
||||
.task-info-icon {
|
||||
font-size: 18px;
|
||||
color: $text-2;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.task-info-content {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.task-info-label {
|
||||
font-size: $font-size-sm;
|
||||
color: $text-2;
|
||||
font-weight: $font-weight-semibold;
|
||||
@include text-uppercase($letter-spacing-wide);
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.task-info-value {
|
||||
font-size: $font-size-md;
|
||||
color: $text-1;
|
||||
font-weight: $font-weight-medium;
|
||||
@include text-truncate;
|
||||
}
|
||||
|
||||
.task-card-actions {
|
||||
display: flex;
|
||||
gap: $space-4;
|
||||
padding: $space-5 $space-8;
|
||||
background: $bg-1;
|
||||
border-top: 1px solid $border-subtle;
|
||||
|
||||
button {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Database actions
|
||||
|
||||
.db-actions {
|
||||
@include flex(column, flex-start, stretch, $space-8);
|
||||
padding: $space-5;
|
||||
}
|
||||
|
||||
.db-action-row {
|
||||
@include flex(row, space-between, center, $space-8);
|
||||
padding: $space-5;
|
||||
border-radius: 6px;
|
||||
background: $overlay-inverse-light;
|
||||
}
|
||||
|
||||
.db-action-info {
|
||||
flex: 1;
|
||||
|
||||
h4 {
|
||||
font-size: 0.95rem;
|
||||
font-weight: $font-weight-semibold;
|
||||
color: $text-0;
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
}
|
||||
|
||||
.db-action-confirm {
|
||||
@include flex(row, flex-start, center, $space-4);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
// Library page
|
||||
|
||||
.library-toolbar {
|
||||
@include flex-between;
|
||||
padding: $space-4 0;
|
||||
margin-bottom: $space-6;
|
||||
gap: $space-6;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.toolbar-left {
|
||||
@include flex(row, flex-start, center, $space-5);
|
||||
}
|
||||
|
||||
.toolbar-right {
|
||||
@include flex(row, flex-start, center, $space-5);
|
||||
}
|
||||
|
||||
.sort-control,
|
||||
.page-size-control {
|
||||
select {
|
||||
padding: $space-2 24px $space-2 $space-4;
|
||||
font-size: $font-size-base;
|
||||
background: $bg-2;
|
||||
}
|
||||
}
|
||||
|
||||
.page-size-control {
|
||||
@include flex(row, flex-start, center, $space-2);
|
||||
}
|
||||
|
||||
.library-stats {
|
||||
@include flex-between;
|
||||
padding: $space-1 0 6px 0;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
|
||||
.type-filter-row {
|
||||
@include flex(row, flex-start, center, 6px);
|
||||
padding: $space-2 0;
|
||||
margin-bottom: 6px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
// Pagination
|
||||
|
||||
.pagination {
|
||||
@include flex-center;
|
||||
gap: $space-2;
|
||||
margin-top: $space-8;
|
||||
padding: $space-4 0;
|
||||
}
|
||||
|
||||
.page-btn {
|
||||
min-width: 28px;
|
||||
text-align: center;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.page-ellipsis {
|
||||
color: $text-2;
|
||||
padding: 0 $space-2;
|
||||
font-size: $font-size-md;
|
||||
user-select: none;
|
||||
}
|
||||
281
crates/pinakes-ui/assets/styles/_themes.scss
Normal file
281
crates/pinakes-ui/assets/styles/_themes.scss
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
|
||||
// Light theme
|
||||
|
||||
.theme-light {
|
||||
// Background
|
||||
--bg-0: #{$light-bg-0};
|
||||
--bg-1: #{$light-bg-1};
|
||||
--bg-2: #{$light-bg-2};
|
||||
--bg-3: #{$light-bg-3};
|
||||
|
||||
// Border
|
||||
--border-subtle: #{$light-border-subtle};
|
||||
--border: #{$light-border};
|
||||
--border-strong: #{$light-border-strong};
|
||||
|
||||
// Text
|
||||
--text-0: #{$light-text-0};
|
||||
--text-1: #{$light-text-1};
|
||||
--text-2: #{$light-text-2};
|
||||
|
||||
// Accent
|
||||
--accent: #{$light-accent};
|
||||
--accent-dim: #{$light-accent-dim};
|
||||
--accent-text: #{$light-accent-text};
|
||||
|
||||
// Shadows
|
||||
--shadow-sm: #{$light-shadow-sm};
|
||||
--shadow: #{$light-shadow};
|
||||
--shadow-lg: #{$light-shadow-lg};
|
||||
|
||||
// Scrollbar
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: $overlay-inverse-strong;
|
||||
|
||||
&:hover {
|
||||
background: $overlay-inverse-medium;
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: $overlay-inverse-light;
|
||||
}
|
||||
|
||||
// Graph
|
||||
.graph-nodes .graph-node text {
|
||||
fill: $light-text-0;
|
||||
}
|
||||
|
||||
.graph-edges line {
|
||||
stroke: $overlay-inverse-strong;
|
||||
}
|
||||
|
||||
// PDF
|
||||
.pdf-container {
|
||||
background: $light-bg-3;
|
||||
}
|
||||
}
|
||||
|
||||
// Skeleton
|
||||
|
||||
.skeleton-pulse {
|
||||
@include skeleton-pulse;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.skeleton-card {
|
||||
@include flex(column, flex-start, stretch, $space-4);
|
||||
padding: $space-4;
|
||||
}
|
||||
|
||||
.skeleton-thumb {
|
||||
width: 100%;
|
||||
aspect-ratio: 1;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.skeleton-text {
|
||||
height: 14px;
|
||||
width: 80%;
|
||||
|
||||
&-short {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.skeleton-row {
|
||||
display: flex;
|
||||
gap: $space-6;
|
||||
padding: 10px $space-8;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.skeleton-cell {
|
||||
height: 14px;
|
||||
flex: 1;
|
||||
border-radius: 4px;
|
||||
|
||||
&-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
flex: none;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
&-wide {
|
||||
flex: 3;
|
||||
}
|
||||
}
|
||||
|
||||
.loading-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
@include flex(column, center, center, $space-5);
|
||||
background: $media-overlay-light;
|
||||
z-index: 100;
|
||||
border-radius: $radius-lg;
|
||||
}
|
||||
|
||||
.loading-spinner {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 3px solid $border;
|
||||
border-top-color: $accent;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
.loading-message {
|
||||
color: $text-1;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
// Login
|
||||
|
||||
.login-container {
|
||||
@include flex-center;
|
||||
height: 100vh;
|
||||
background: $bg-0;
|
||||
}
|
||||
|
||||
.login-card {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-md;
|
||||
padding: $space-12;
|
||||
width: 360px;
|
||||
box-shadow: $shadow-lg;
|
||||
}
|
||||
|
||||
.login-title {
|
||||
font-size: 20px;
|
||||
font-weight: $font-weight-bold;
|
||||
color: $text-0;
|
||||
text-align: center;
|
||||
margin-bottom: $space-1;
|
||||
}
|
||||
|
||||
.login-subtitle {
|
||||
font-size: $font-size-lg;
|
||||
color: $text-2;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.login-error {
|
||||
background: $error-light;
|
||||
border: 1px solid $error-border;
|
||||
border-radius: $radius-sm;
|
||||
padding: $space-4 $space-6;
|
||||
margin-bottom: $space-6;
|
||||
font-size: $font-size-md;
|
||||
color: $error;
|
||||
}
|
||||
|
||||
.login-form {
|
||||
input[type='text'],
|
||||
input[type='password'] {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.login-btn {
|
||||
width: 100%;
|
||||
padding: $space-4 $space-8;
|
||||
font-size: $font-size-lg;
|
||||
margin-top: $space-1;
|
||||
}
|
||||
|
||||
// Pagination
|
||||
|
||||
.pagination {
|
||||
@include flex(row, center, center, $space-1);
|
||||
margin-top: $space-8;
|
||||
padding: $space-4 0;
|
||||
}
|
||||
|
||||
.page-btn {
|
||||
min-width: 28px;
|
||||
text-align: center;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.page-ellipsis {
|
||||
color: $text-2;
|
||||
padding: 0 $space-2;
|
||||
font-size: $font-size-md;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
// Help overlay
|
||||
|
||||
.help-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: $media-overlay-medium;
|
||||
@include flex-center;
|
||||
z-index: 200;
|
||||
animation: fade-in 0.1s ease-out;
|
||||
}
|
||||
|
||||
.help-dialog {
|
||||
background: $bg-2;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-md;
|
||||
padding: $space-8;
|
||||
min-width: 300px;
|
||||
max-width: 400px;
|
||||
box-shadow: $shadow-lg;
|
||||
|
||||
h3 {
|
||||
font-size: $font-size-3xl;
|
||||
font-weight: $font-weight-semibold;
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
}
|
||||
|
||||
.help-shortcuts {
|
||||
@include flex(column, flex-start, stretch, $space-4);
|
||||
margin-bottom: $space-8;
|
||||
}
|
||||
|
||||
.shortcut-row {
|
||||
@include flex(row, flex-start, center, $space-6);
|
||||
|
||||
kbd {
|
||||
display: inline-block;
|
||||
padding: $space-1 $space-4;
|
||||
background: $bg-0;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-sm;
|
||||
font-family: $font-family-mono;
|
||||
font-size: $font-size-base;
|
||||
color: $text-0;
|
||||
min-width: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: $font-size-lg;
|
||||
color: $text-1;
|
||||
}
|
||||
}
|
||||
|
||||
.help-close {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 6px $space-6;
|
||||
background: $bg-3;
|
||||
border: 1px solid $border;
|
||||
border-radius: $radius-sm;
|
||||
color: $text-0;
|
||||
font-size: $font-size-md;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
|
||||
&:hover {
|
||||
background: $overlay-strong;
|
||||
}
|
||||
}
|
||||
256
crates/pinakes-ui/assets/styles/_variables.scss
Normal file
256
crates/pinakes-ui/assets/styles/_variables.scss
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
// Background colors
|
||||
$bg-0: #111118;
|
||||
$bg-1: #18181f;
|
||||
$bg-2: #1f1f28;
|
||||
$bg-3: #26263a;
|
||||
|
||||
// Border colors
|
||||
$border-subtle: rgba(255, 255, 255, 0.06);
|
||||
$border: rgba(255, 255, 255, 0.09);
|
||||
$border-strong: rgba(255, 255, 255, 0.14);
|
||||
|
||||
// Text colors
|
||||
$text-0: #dcdce4;
|
||||
$text-1: #a0a0b8;
|
||||
$text-2: #6c6c84;
|
||||
$text-3: #4a4a5e;
|
||||
|
||||
// Accent colors
|
||||
$accent: #7c7ef5;
|
||||
$accent-dim: rgba(124, 126, 245, 0.15);
|
||||
$accent-text: #9698f7;
|
||||
$accent-hover: #8b8df7;
|
||||
|
||||
// Semantic colors
|
||||
$success: #3ec97a;
|
||||
$error: #e45858;
|
||||
$warning: #d4a037;
|
||||
|
||||
// Derived semantic colors with transparency
|
||||
$error-bg: rgba(228, 88, 88, 0.06);
|
||||
$error-border: rgba(228, 88, 88, 0.2);
|
||||
$error-text: #d47070;
|
||||
|
||||
$success-bg: rgba(62, 201, 122, 0.08);
|
||||
$success-border: rgba(62, 201, 122, 0.2);
|
||||
|
||||
$warning-bg: rgba(212, 160, 55, 0.06);
|
||||
$warning-border: rgba(212, 160, 55, 0.15);
|
||||
|
||||
// Type badge colors
|
||||
$type-audio-bg: rgba(139, 92, 246, 0.1);
|
||||
$type-audio-text: #9d8be0;
|
||||
|
||||
$type-video-bg: rgba(200, 72, 130, 0.1);
|
||||
$type-video-text: #d07eaa;
|
||||
|
||||
$type-image-bg: rgba(34, 160, 80, 0.1);
|
||||
$type-image-text: #5cb97a;
|
||||
|
||||
$type-document-bg: rgba(59, 120, 200, 0.1);
|
||||
$type-document-text: #6ca0d4;
|
||||
|
||||
$type-text-bg: rgba(200, 160, 36, 0.1);
|
||||
$type-text-text: #c4a840;
|
||||
|
||||
$type-other-bg: rgba(128, 128, 160, 0.08);
|
||||
|
||||
// Action badge colors (audit)
|
||||
$action-updated-bg: rgba(59, 120, 200, 0.1);
|
||||
$action-updated-text: #6ca0d4;
|
||||
|
||||
$action-collection-bg: rgba(34, 160, 80, 0.1);
|
||||
$action-collection-text: #5cb97a;
|
||||
|
||||
$action-collection-remove-bg: rgba(212, 160, 55, 0.1);
|
||||
$action-collection-remove-text: #c4a840;
|
||||
|
||||
$action-opened-bg: rgba(139, 92, 246, 0.1);
|
||||
$action-opened-text: #9d8be0;
|
||||
|
||||
$action-scanned-bg: rgba(128, 128, 160, 0.08);
|
||||
|
||||
// Role badge colors
|
||||
$role-admin-bg: rgba(139, 92, 246, 0.1);
|
||||
$role-admin-text: #9d8be0;
|
||||
|
||||
$role-editor-bg: rgba(34, 160, 80, 0.1);
|
||||
$role-editor-text: #5cb97a;
|
||||
|
||||
$role-viewer-bg: rgba(59, 120, 200, 0.1);
|
||||
$role-viewer-text: #6ca0d4;
|
||||
|
||||
// Graph colors
|
||||
$graph-node-fill: #4caf50;
|
||||
$graph-node-stroke: #388e3c;
|
||||
$graph-node-hover: #66bb6a;
|
||||
$graph-node-selected: #5456d6;
|
||||
$graph-edge-embed: #9d8be0;
|
||||
|
||||
// Overlay backgrounds
|
||||
$overlay-light: rgba(255, 255, 255, 0.03);
|
||||
$overlay-medium: rgba(255, 255, 255, 0.04);
|
||||
$overlay-strong: rgba(255, 255, 255, 0.06);
|
||||
$overlay-subtle: rgba(255, 255, 255, 0.02);
|
||||
|
||||
// Inverse overlays (for light backgrounds)
|
||||
$overlay-inverse-light: rgba(0, 0, 0, 0.06);
|
||||
$overlay-inverse-medium: rgba(0, 0, 0, 0.08);
|
||||
$overlay-inverse-strong: rgba(0, 0, 0, 0.12);
|
||||
|
||||
// Semantic variants
|
||||
$error-light: rgba(228, 88, 88, 0.08);
|
||||
$error-medium: rgba(228, 88, 88, 0.1);
|
||||
$error-border-light: rgba(228, 88, 88, 0.25);
|
||||
|
||||
$success-light: rgba(62, 201, 122, 0.1);
|
||||
|
||||
$info-bg: rgba(99, 102, 241, 0.08);
|
||||
$info-bg-light: rgba(99, 102, 241, 0.12);
|
||||
$accent-border: rgba(124, 126, 245, 0.2);
|
||||
|
||||
$purple-bg: rgba(124, 126, 245, 0.04);
|
||||
$purple-light: rgba(139, 92, 246, 0.08);
|
||||
$purple-border: rgba(139, 92, 246, 0.3);
|
||||
|
||||
$warning-light: rgba(212, 160, 55, 0.1);
|
||||
$warning-medium: rgba(212, 160, 55, 0.12);
|
||||
|
||||
$green-light: rgba(76, 175, 80, 0.06);
|
||||
$green-medium: rgba(76, 175, 80, 0.12);
|
||||
$green-text: #4caf50;
|
||||
|
||||
// UI element backgrounds
|
||||
$btn-danger-hover: rgba(228, 88, 88, 0.08);
|
||||
$btn-ghost-hover: rgba(255, 255, 255, 0.04);
|
||||
$btn-secondary-hover: rgba(255, 255, 255, 0.06);
|
||||
|
||||
// Media viewer overlays
|
||||
$media-overlay-bg: rgba(0, 0, 0, 0.92);
|
||||
$media-overlay-medium: rgba(0, 0, 0, 0.5);
|
||||
$media-overlay-light: rgba(0, 0, 0, 0.3);
|
||||
$media-controls-bg: rgba(0, 0, 0, 0.7);
|
||||
|
||||
// Image viewer
|
||||
$image-viewer-toolbar-bg: rgba(0, 0, 0, 0.5);
|
||||
$image-viewer-border: rgba(255, 255, 255, 0.08);
|
||||
$image-viewer-btn-bg: rgba(255, 255, 255, 0.06);
|
||||
$image-viewer-btn-border: rgba(255, 255, 255, 0.1);
|
||||
$image-viewer-btn-hover: rgba(255, 255, 255, 0.12);
|
||||
|
||||
// Shadows
|
||||
$drop-shadow: rgba(0, 0, 0, 0.5);
|
||||
|
||||
// Gradients
|
||||
$gradient-accent-end: #7c7ef3;
|
||||
$gradient-success-end: #66bb6a;
|
||||
|
||||
// Light theme
|
||||
$light-bg-0: #f5f5f7;
|
||||
$light-bg-1: #eeeef0;
|
||||
$light-bg-2: #ffffff;
|
||||
$light-bg-3: #e8e8ec;
|
||||
|
||||
$light-border-subtle: rgba(0, 0, 0, 0.06);
|
||||
$light-border: rgba(0, 0, 0, 0.1);
|
||||
$light-border-strong: rgba(0, 0, 0, 0.16);
|
||||
|
||||
$light-text-0: #1a1a2e;
|
||||
$light-text-1: #555570;
|
||||
$light-text-2: #8888a0;
|
||||
|
||||
$light-accent: #6366f1;
|
||||
$light-accent-dim: rgba(99, 102, 241, 0.1);
|
||||
$light-accent-text: #4f52e8;
|
||||
|
||||
// Spacing
|
||||
$space-1: 2px;
|
||||
$space-2: 4px;
|
||||
$space-3: 6px;
|
||||
$space-4: 8px;
|
||||
$space-5: 10px;
|
||||
$space-6: 12px;
|
||||
$space-7: 14px;
|
||||
$space-8: 16px;
|
||||
$space-10: 20px;
|
||||
$space-12: 24px;
|
||||
$space-16: 32px;
|
||||
$space-20: 40px;
|
||||
$space-24: 48px;
|
||||
|
||||
// Border radius
|
||||
$radius-sm: 3px;
|
||||
$radius: 5px;
|
||||
$radius-md: 7px;
|
||||
$radius-lg: 8px;
|
||||
$radius-xl: 12px;
|
||||
$radius-full: 50%;
|
||||
|
||||
// Shadows
|
||||
$shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
$shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
|
||||
$shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.45);
|
||||
$shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
|
||||
|
||||
$light-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
|
||||
$light-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
$light-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
|
||||
|
||||
// Typography
|
||||
$font-family-base: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
|
||||
$font-family-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
|
||||
$font-family-mono-alt: 'Menlo', 'Monaco', 'Courier New', monospace;
|
||||
|
||||
$font-size-xs: 9px;
|
||||
$font-size-sm: 10px;
|
||||
$font-size-base: 11px;
|
||||
$font-size-md: 12px;
|
||||
$font-size-lg: 13px;
|
||||
$font-size-xl: 14px;
|
||||
$font-size-2xl: 15px;
|
||||
$font-size-3xl: 16px;
|
||||
$font-size-4xl: 18px;
|
||||
$font-size-5xl: 20px;
|
||||
$font-size-6xl: 28px;
|
||||
$font-size-7xl: 32px;
|
||||
$font-size-8xl: 48px;
|
||||
|
||||
$font-weight-normal: 400;
|
||||
$font-weight-medium: 500;
|
||||
$font-weight-semibold: 600;
|
||||
$font-weight-bold: 700;
|
||||
|
||||
$line-height-tight: 1.2;
|
||||
$line-height-base: 1.3;
|
||||
$line-height-normal: 1.4;
|
||||
$line-height-relaxed: 1.5;
|
||||
$line-height-loose: 1.7;
|
||||
|
||||
$letter-spacing-tight: -0.4px;
|
||||
$letter-spacing-normal: 0;
|
||||
$letter-spacing-wide: 0.03em;
|
||||
$letter-spacing-wider: 0.04em;
|
||||
$letter-spacing-widest: 0.06em;
|
||||
$letter-spacing-uppercase: 0.5px;
|
||||
|
||||
// Layout dimensions
|
||||
$sidebar-width: 220px;
|
||||
$sidebar-collapsed-width: 48px;
|
||||
$header-height: 48px;
|
||||
|
||||
// Z-index scale
|
||||
$z-base: 0;
|
||||
$z-dropdown: 10;
|
||||
$z-sticky: 20;
|
||||
$z-fixed: 30;
|
||||
$z-modal-backdrop: 100;
|
||||
$z-modal: 200;
|
||||
$z-toast: 300;
|
||||
|
||||
// Transitions
|
||||
$transition-fast: 0.08s;
|
||||
$transition-base: 0.1s;
|
||||
$transition-slow: 0.15s;
|
||||
$transition-slower: 0.2s;
|
||||
$transition-timing-default: ease;
|
||||
$transition-timing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
|
||||
13
crates/pinakes-ui/assets/styles/main.scss
Normal file
13
crates/pinakes-ui/assets/styles/main.scss
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// Main stylesheet entry point
|
||||
// Imports all partials in order
|
||||
|
||||
@use 'variables' as *;
|
||||
@use 'mixins' as *;
|
||||
@use 'base';
|
||||
@use 'layout';
|
||||
@use 'components';
|
||||
@use 'media';
|
||||
@use 'sections';
|
||||
@use 'audit';
|
||||
@use 'graph';
|
||||
@use 'themes';
|
||||
Loading…
Add table
Add a link
Reference in a new issue