@necrolab/dashboard 0.5.15 → 0.5.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/api.js +2 -3
- package/eslint.config.js +46 -0
- package/index.html +2 -1
- package/package.json +5 -2
- package/src/App.vue +70 -566
- package/src/assets/css/base/mixins.scss +72 -0
- package/src/assets/css/base/reset.scss +0 -2
- package/src/assets/css/base/scroll.scss +43 -36
- package/src/assets/css/base/typography.scss +9 -10
- package/src/assets/css/base/variables.scss +43 -0
- package/src/assets/css/components/accessibility.scss +37 -0
- package/src/assets/css/components/buttons.scss +61 -74
- package/src/assets/css/components/forms.scss +31 -32
- package/src/assets/css/components/headers.scss +13 -21
- package/src/assets/css/components/modals.scss +2 -2
- package/src/assets/css/components/search-groups.scss +28 -22
- package/src/assets/css/components/tables.scss +5 -7
- package/src/assets/css/components/toasts.scss +7 -7
- package/src/assets/css/components/utilities.scss +295 -0
- package/src/assets/css/main.scss +55 -139
- package/src/components/Auth/LoginForm.vue +7 -86
- package/src/components/Console/ConsoleToolbar.vue +123 -0
- package/src/components/Editors/Account/Account.vue +12 -12
- package/src/components/Editors/Account/AccountView.vue +38 -111
- package/src/components/Editors/Account/CreateAccount.vue +11 -61
- package/src/components/Editors/Account/{AccountCreator.vue → CreateAccountBatch.vue} +28 -59
- package/src/components/Editors/AdminFileEditor.vue +179 -0
- package/src/components/Editors/Profile/CreateProfile.vue +77 -150
- package/src/components/Editors/Profile/Profile.vue +20 -21
- package/src/components/Editors/Profile/ProfileCountryChooser.vue +16 -60
- package/src/components/Editors/Profile/ProfileView.vue +41 -116
- package/src/components/Editors/ProxyFileEditor.vue +86 -0
- package/src/components/Editors/TagLabel.vue +16 -55
- package/src/components/Editors/TagToggle.vue +20 -8
- package/src/components/Filter/Filter.vue +66 -79
- package/src/components/Filter/FilterPreview.vue +153 -135
- package/src/components/Filter/PriceSortToggle.vue +36 -43
- package/src/components/Table/Header.vue +1 -1
- package/src/components/Table/Table.vue +45 -51
- package/src/components/Tasks/CheckStock.vue +7 -16
- package/src/components/Tasks/Controls/DesktopControls.vue +15 -60
- package/src/components/Tasks/Controls/MobileControls.vue +5 -20
- package/src/components/Tasks/CreateTaskAXS.vue +20 -118
- package/src/components/Tasks/CreateTaskTM.vue +33 -189
- package/src/components/Tasks/EventDetailRow.vue +21 -0
- package/src/components/Tasks/MassEdit.vue +6 -16
- package/src/components/Tasks/QuickSettings.vue +140 -216
- package/src/components/Tasks/ScrapeVenue.vue +4 -13
- package/src/components/Tasks/Stats.vue +20 -39
- package/src/components/Tasks/Task.vue +64 -270
- package/src/components/Tasks/TaskLabel.vue +9 -3
- package/src/components/Tasks/TaskView.vue +45 -64
- package/src/components/Tasks/Utilities.vue +10 -44
- package/src/components/Tasks/ViewTask.vue +23 -107
- package/src/components/icons/Close.vue +2 -8
- package/src/components/icons/Gear.vue +8 -8
- package/src/components/icons/Hash.vue +5 -0
- package/src/components/icons/Key.vue +2 -8
- package/src/components/icons/Pencil.vue +2 -8
- package/src/components/icons/Profile.vue +2 -8
- package/src/components/icons/Sell.vue +2 -8
- package/src/components/icons/Spinner.vue +4 -7
- package/src/components/icons/Wildcard.vue +2 -8
- package/src/components/icons/index.js +3 -5
- package/src/components/ui/ActionButtonGroup.vue +113 -52
- package/src/components/ui/BalanceIndicator.vue +60 -0
- package/src/components/ui/EmptyState.vue +24 -0
- package/src/components/ui/EnableDisableToggle.vue +23 -0
- package/src/components/ui/FormField.vue +49 -49
- package/src/components/ui/IconLabel.vue +23 -0
- package/src/components/ui/InfoRow.vue +21 -54
- package/src/components/ui/Modal.vue +161 -54
- package/src/components/ui/Navbar.vue +63 -44
- package/src/components/ui/ReadonlyFieldsSection.vue +31 -0
- package/src/components/ui/ReconnectIndicator.vue +111 -124
- package/src/components/ui/SectionCard.vue +6 -14
- package/src/components/ui/Splash.vue +2 -10
- package/src/components/ui/StatusBadge.vue +26 -28
- package/src/components/ui/TaskToggle.vue +54 -0
- package/src/components/ui/controls/CountryChooser.vue +29 -66
- package/src/components/ui/controls/EyeToggle.vue +1 -1
- package/src/components/ui/controls/atomic/Checkbox.vue +40 -121
- package/src/components/ui/controls/atomic/Dropdown.vue +103 -139
- package/src/components/ui/controls/atomic/MultiDropdown.vue +72 -120
- package/src/components/ui/controls/atomic/Switch.vue +21 -84
- package/src/composables/useCodeEditor.js +117 -0
- package/src/composables/useColorMapping.js +15 -0
- package/src/composables/useCopyToClipboard.js +1 -1
- package/src/composables/useDateFormatting.js +21 -0
- package/src/composables/useDeviceDetection.js +14 -0
- package/src/composables/useDropdownPosition.js +1 -4
- package/src/composables/useDynamicTableHeight.js +31 -0
- package/src/composables/useEnableDisable.js +6 -0
- package/src/composables/useFilterCSS.js +71 -0
- package/src/composables/useFormValidation.js +92 -0
- package/src/composables/useGetAllTags.js +9 -0
- package/src/composables/useIOSViewportHandling.js +76 -0
- package/src/composables/useNotchHandling.js +306 -0
- package/src/composables/useRowSelection.js +0 -3
- package/src/composables/useTableRender.js +23 -0
- package/src/composables/useTicketPricing.js +16 -0
- package/src/composables/useWindowDimensions.js +21 -0
- package/src/composables/useZoomPrevention.js +96 -0
- package/src/constants/tableLayout.js +14 -0
- package/src/libs/Filter.js +14 -20
- package/src/libs/panzoom.js +1 -5
- package/src/libs/utils/array.js +58 -0
- package/src/{stores/utils.js → libs/utils/dataGeneration.js} +2 -250
- package/src/libs/utils/eventUrl.js +40 -0
- package/src/libs/utils/string.js +3 -0
- package/src/libs/utils/time.js +20 -0
- package/src/libs/utils/validation.js +64 -0
- package/src/main.js +0 -2
- package/src/stores/connection.js +1 -29
- package/src/stores/logger.js +6 -12
- package/src/stores/sampleData.js +1 -2
- package/src/stores/ui.js +80 -71
- package/src/utils/tableHelpers.js +1 -0
- package/src/views/Accounts.vue +19 -38
- package/src/views/Console.vue +74 -253
- package/src/views/Editor.vue +47 -1114
- package/src/views/FilterBuilder.vue +190 -461
- package/src/views/Login.vue +3 -28
- package/src/views/Profiles.vue +17 -32
- package/src/views/Tasks.vue +51 -38
- package/tailwind.config.js +82 -71
- package/workbox-config.cjs +47 -5
- package/docs/plans/2026-02-08-tailwind-consolidation.md +0 -2438
- package/exit +0 -209
- package/run +0 -177
- package/src/assets/css/base/color-fallbacks.scss +0 -10
- package/src/assets/img/background.svg.backup +0 -11
- package/src/components/icons/SquareCheck.vue +0 -18
- package/src/components/icons/SquareUncheck.vue +0 -18
- package/src/components/ui/controls/atomic/LoadingButton.vue +0 -45
- package/switch-branch.sh +0 -41
- /package/public/{reconnect-logo.png → img/reconnect-logo.png} +0 -0
|
@@ -4,33 +4,32 @@
|
|
|
4
4
|
|
|
5
5
|
.input-default {
|
|
6
6
|
@apply relative box-border flex h-10 items-center border-2 bg-clip-padding px-3 py-2;
|
|
7
|
-
background:
|
|
8
|
-
border-color:
|
|
7
|
+
background: var(--color-bg-input);
|
|
8
|
+
border-color: var(--color-border);
|
|
9
9
|
border-radius: 0.5rem;
|
|
10
10
|
transition: border-color 0.15s ease;
|
|
11
11
|
|
|
12
12
|
&:hover {
|
|
13
|
-
border-
|
|
13
|
+
@apply border-dark-650;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&:focus-within {
|
|
17
|
-
border-color:
|
|
17
|
+
border-color: var(--color-primary);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
input {
|
|
21
21
|
@apply h-full w-full text-sm;
|
|
22
22
|
background: transparent;
|
|
23
|
-
color:
|
|
23
|
+
color: var(--color-text-vivid);
|
|
24
24
|
|
|
25
25
|
&:focus {
|
|
26
26
|
outline: none;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&::placeholder {
|
|
30
|
-
color:
|
|
30
|
+
color: var(--color-text-muted);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
// Hide default number input spinners - use custom .input-incrementer instead
|
|
34
33
|
&[type="number"]::-webkit-inner-spin-button,
|
|
35
34
|
&[type="number"]::-webkit-outer-spin-button {
|
|
36
35
|
-webkit-appearance: none;
|
|
@@ -48,21 +47,21 @@
|
|
|
48
47
|
|
|
49
48
|
button {
|
|
50
49
|
@apply w-6 h-4 flex items-center justify-center text-white transition-all duration-200 rounded-sm;
|
|
51
|
-
background: linear-gradient(135deg,
|
|
52
|
-
border: 1px solid
|
|
53
|
-
|
|
50
|
+
background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-darker-alt) 100%);
|
|
51
|
+
border: 1px solid var(--color-gradient-start);
|
|
52
|
+
@apply shadow-button;
|
|
54
53
|
|
|
55
54
|
&:hover {
|
|
56
|
-
background: linear-gradient(135deg,
|
|
57
|
-
border-color:
|
|
58
|
-
|
|
55
|
+
background: linear-gradient(135deg, var(--color-bg-darker-alt) 0%, var(--color-gradient-mid) 100%);
|
|
56
|
+
border-color: var(--color-border-light);
|
|
57
|
+
@apply shadow-md;
|
|
59
58
|
transform: translateY(-0.5px);
|
|
60
59
|
}
|
|
61
60
|
|
|
62
61
|
&:active {
|
|
63
|
-
background: linear-gradient(135deg,
|
|
64
|
-
border-color:
|
|
65
|
-
|
|
62
|
+
background: linear-gradient(135deg, var(--color-bg-modal) 0%, var(--color-gradient-blue-tint) 100%);
|
|
63
|
+
border-color: var(--color-border);
|
|
64
|
+
@apply shadow-input-inset;
|
|
66
65
|
transform: translateY(0);
|
|
67
66
|
}
|
|
68
67
|
|
|
@@ -87,27 +86,27 @@
|
|
|
87
86
|
========================================================================== */
|
|
88
87
|
|
|
89
88
|
.ant-select-dropdown {
|
|
90
|
-
z-index:
|
|
89
|
+
z-index: var(--z-modal) !important;
|
|
91
90
|
position: relative;
|
|
92
|
-
background:
|
|
91
|
+
background: var(--color-bg-modal) !important;
|
|
93
92
|
border-radius: 0.5rem !important;
|
|
94
93
|
}
|
|
95
94
|
|
|
96
95
|
.ant-select {
|
|
97
96
|
@apply relative box-border flex h-10 items-center border-2 bg-clip-padding px-1 py-1 !important;
|
|
98
|
-
background:
|
|
99
|
-
border-color:
|
|
100
|
-
border-radius: 0.375rem;
|
|
97
|
+
background: var(--color-bg-input);
|
|
98
|
+
border-color: var(--color-border);
|
|
99
|
+
border-radius: 0.375rem;
|
|
101
100
|
height: fit-content;
|
|
102
101
|
transition: border-color 0.15s ease;
|
|
103
102
|
|
|
104
103
|
&:hover {
|
|
105
|
-
border-
|
|
104
|
+
@apply border-dark-650;
|
|
106
105
|
}
|
|
107
106
|
|
|
108
107
|
&.ant-select-focused {
|
|
109
|
-
border-color:
|
|
110
|
-
outline: 1px solid
|
|
108
|
+
border-color: var(--color-primary) !important;
|
|
109
|
+
outline: 1px solid var(--color-primary) !important;
|
|
111
110
|
outline-offset: 0 !important;
|
|
112
111
|
}
|
|
113
112
|
|
|
@@ -125,7 +124,7 @@
|
|
|
125
124
|
&:before {
|
|
126
125
|
content: "";
|
|
127
126
|
position: absolute;
|
|
128
|
-
background:
|
|
127
|
+
background: var(--color-text-secondary);
|
|
129
128
|
height: 0.25rem;
|
|
130
129
|
width: 0.25rem;
|
|
131
130
|
right: 0.25rem;
|
|
@@ -136,13 +135,13 @@
|
|
|
136
135
|
|
|
137
136
|
.ant-select-multiple .ant-select-selection-item {
|
|
138
137
|
@apply items-center gap-x-4 !important;
|
|
139
|
-
background:
|
|
138
|
+
background: var(--color-bg-modal);
|
|
140
139
|
padding-inline-end: 15px;
|
|
141
140
|
padding-inline-start: 15px;
|
|
142
141
|
border-radius: 10px;
|
|
143
142
|
height: 40px;
|
|
144
143
|
border: 0;
|
|
145
|
-
color:
|
|
144
|
+
color: var(--color-text-almost-white);
|
|
146
145
|
|
|
147
146
|
&-remove > .anticon {
|
|
148
147
|
vertical-align: 0.05rem;
|
|
@@ -150,7 +149,7 @@
|
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
.ant-select-selection-item-remove > .anticon svg {
|
|
153
|
-
color:
|
|
152
|
+
color: var(--color-text-almost-white);
|
|
154
153
|
|
|
155
154
|
path {
|
|
156
155
|
fill: currentColor;
|
|
@@ -160,10 +159,10 @@
|
|
|
160
159
|
.ant-select-item-option {
|
|
161
160
|
&-selected:not(.ant-select-item-option-disabled) {
|
|
162
161
|
@apply text-white !important;
|
|
163
|
-
background: oklch(
|
|
162
|
+
background: oklch(from var(--color-primary) l c h / 0.15) !important;
|
|
164
163
|
|
|
165
164
|
.ant-select-item-option-state {
|
|
166
|
-
color:
|
|
165
|
+
color: var(--color-primary) !important;
|
|
167
166
|
|
|
168
167
|
svg {
|
|
169
168
|
margin-top: -1.5px;
|
|
@@ -172,11 +171,11 @@
|
|
|
172
171
|
}
|
|
173
172
|
|
|
174
173
|
&-active:not(.ant-select-item-option-disabled) {
|
|
175
|
-
background:
|
|
174
|
+
background: var(--color-bg-input);
|
|
176
175
|
}
|
|
177
176
|
|
|
178
177
|
&-content {
|
|
179
|
-
color:
|
|
178
|
+
color: var(--color-text-almost-white) !important;
|
|
180
179
|
}
|
|
181
180
|
}
|
|
182
181
|
|
|
@@ -8,22 +8,19 @@
|
|
|
8
8
|
padding-top: 1.5rem;
|
|
9
9
|
padding-bottom: 0.5rem;
|
|
10
10
|
|
|
11
|
-
/* Header card container */
|
|
12
11
|
.page-header-card {
|
|
13
12
|
@apply flex items-center gap-2.5 rounded-lg;
|
|
14
13
|
padding: 0.375rem 0.75rem;
|
|
15
|
-
background: linear-gradient(135deg,
|
|
16
|
-
border: 1px solid
|
|
14
|
+
background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
|
|
15
|
+
border: 1px solid var(--color-border-light);
|
|
17
16
|
|
|
18
|
-
/* Icon - static by default */
|
|
19
17
|
svg, img {
|
|
20
18
|
width: 17px;
|
|
21
19
|
height: 17px;
|
|
22
|
-
color:
|
|
20
|
+
color: var(--color-text-bright);
|
|
23
21
|
flex-shrink: 0;
|
|
24
22
|
}
|
|
25
23
|
|
|
26
|
-
/* Clickable icon wrapper - only for Tasks page */
|
|
27
24
|
.icon-button {
|
|
28
25
|
@apply flex items-center justify-center rounded;
|
|
29
26
|
cursor: pointer;
|
|
@@ -34,21 +31,21 @@
|
|
|
34
31
|
svg, img {
|
|
35
32
|
width: 17px;
|
|
36
33
|
height: 17px;
|
|
37
|
-
color:
|
|
34
|
+
color: var(--color-text-bright);
|
|
38
35
|
transition: transform 0.4s ease, color 0.2s ease;
|
|
39
36
|
}
|
|
40
37
|
|
|
41
38
|
&:hover {
|
|
42
|
-
background:
|
|
39
|
+
background: var(--color-border);
|
|
43
40
|
|
|
44
41
|
svg, img {
|
|
45
|
-
color:
|
|
42
|
+
color: var(--color-text-primary);
|
|
46
43
|
transform: rotate(90deg);
|
|
47
44
|
}
|
|
48
45
|
}
|
|
49
46
|
|
|
50
47
|
&:active {
|
|
51
|
-
background:
|
|
48
|
+
background: var(--color-bg-darker-alt);
|
|
52
49
|
|
|
53
50
|
svg, img {
|
|
54
51
|
transform: rotate(180deg);
|
|
@@ -56,34 +53,31 @@
|
|
|
56
53
|
}
|
|
57
54
|
}
|
|
58
55
|
|
|
59
|
-
/* Title text */
|
|
60
56
|
h4 {
|
|
61
57
|
@apply font-semibold;
|
|
62
58
|
font-size: 1rem;
|
|
63
59
|
line-height: 1.2;
|
|
64
|
-
color:
|
|
60
|
+
color: var(--color-text-primary);
|
|
65
61
|
letter-spacing: -0.01em;
|
|
66
62
|
}
|
|
67
63
|
|
|
68
|
-
/* Count badge - only for Tasks page */
|
|
69
64
|
.page-header-count {
|
|
70
65
|
@apply inline-flex items-center justify-center rounded px-1.5 py-0.5 ml-1.5;
|
|
71
66
|
font-size: 0.6875rem;
|
|
72
67
|
font-weight: 600;
|
|
73
68
|
min-width: 20px;
|
|
74
|
-
background:
|
|
75
|
-
border: 1px solid
|
|
76
|
-
color:
|
|
69
|
+
background: var(--color-bg-darker-alt);
|
|
70
|
+
border: 1px solid var(--color-border);
|
|
71
|
+
color: var(--color-text-dim);
|
|
77
72
|
letter-spacing: 0.01em;
|
|
78
73
|
}
|
|
79
74
|
}
|
|
80
75
|
|
|
81
|
-
|
|
82
|
-
@media (max-width: 640px) {
|
|
76
|
+
@screen sm {
|
|
83
77
|
padding-top: 1rem;
|
|
84
78
|
|
|
85
79
|
.page-header-card {
|
|
86
|
-
gap:
|
|
80
|
+
gap: 0.625rem;
|
|
87
81
|
padding: 0.5rem 0.875rem;
|
|
88
82
|
|
|
89
83
|
svg, img {
|
|
@@ -104,7 +98,6 @@
|
|
|
104
98
|
}
|
|
105
99
|
}
|
|
106
100
|
|
|
107
|
-
/* Tablet responsive */
|
|
108
101
|
@media (min-width: 641px) and (max-width: 1024px) {
|
|
109
102
|
.page-header-card {
|
|
110
103
|
svg, img {
|
|
@@ -119,7 +112,6 @@
|
|
|
119
112
|
}
|
|
120
113
|
}
|
|
121
114
|
|
|
122
|
-
/* PWA mode adjustments */
|
|
123
115
|
@media (display-mode: standalone) {
|
|
124
116
|
.page-header {
|
|
125
117
|
padding-top: 3.5rem !important;
|
|
@@ -5,46 +5,41 @@
|
|
|
5
5
|
========================================================================== */
|
|
6
6
|
|
|
7
7
|
.unified-search-group {
|
|
8
|
-
border: 2px solid
|
|
8
|
+
border: 2px solid var(--color-border);
|
|
9
9
|
border-radius: 0.5rem;
|
|
10
10
|
overflow: hidden;
|
|
11
|
-
background:
|
|
11
|
+
background: var(--color-bg-input);
|
|
12
12
|
transition: all 0.15s ease;
|
|
13
13
|
display: flex;
|
|
14
14
|
|
|
15
15
|
.tag-toggle,
|
|
16
16
|
.dropdown,
|
|
17
|
-
input
|
|
18
|
-
|
|
19
|
-
border
|
|
17
|
+
input,
|
|
18
|
+
> button {
|
|
19
|
+
border: 0 !important;
|
|
20
20
|
border-radius: 0 !important;
|
|
21
21
|
height: 40px !important;
|
|
22
22
|
background: transparent !important;
|
|
23
23
|
box-shadow: none !important;
|
|
24
|
+
outline: 0 !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.tag-toggle,
|
|
28
|
+
.dropdown,
|
|
29
|
+
input {
|
|
24
30
|
min-width: fit-content !important;
|
|
25
|
-
outline: none !important;
|
|
26
|
-
outline-width: 0 !important;
|
|
27
|
-
outline-offset: 0 !important;
|
|
28
31
|
}
|
|
29
32
|
|
|
30
33
|
.tag-toggle {
|
|
31
34
|
padding: 0;
|
|
32
|
-
border: 0
|
|
33
|
-
border-top: 0 !important;
|
|
34
|
-
border-bottom: 0 !important;
|
|
35
|
-
border-left: 0 !important;
|
|
36
|
-
border-right: 0 !important;
|
|
35
|
+
border: 0 !important;
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
.tag-toggle button {
|
|
40
39
|
font-size: 0.875rem;
|
|
41
40
|
padding: 0.5rem 0.75rem;
|
|
42
41
|
min-width: fit-content;
|
|
43
|
-
border: 0
|
|
44
|
-
border-top: 0 !important;
|
|
45
|
-
border-bottom: 0 !important;
|
|
46
|
-
border-left: 0 !important;
|
|
47
|
-
border-right: 0 !important;
|
|
42
|
+
border: 0 !important;
|
|
48
43
|
}
|
|
49
44
|
|
|
50
45
|
.dropdown {
|
|
@@ -52,6 +47,17 @@
|
|
|
52
47
|
min-width: 120px !important;
|
|
53
48
|
}
|
|
54
49
|
|
|
50
|
+
.dropdown:not(.transparent):focus-within,
|
|
51
|
+
.dropdown:not(.transparent).opened,
|
|
52
|
+
.dropdown:not(.transparent):hover,
|
|
53
|
+
.dropdown:focus-within,
|
|
54
|
+
.dropdown.opened,
|
|
55
|
+
.dropdown:hover {
|
|
56
|
+
border: 0 !important;
|
|
57
|
+
outline: 0 !important;
|
|
58
|
+
box-shadow: none !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
55
61
|
.dropdown-display {
|
|
56
62
|
padding: 0 0.75rem;
|
|
57
63
|
font-size: 0.875rem;
|
|
@@ -63,7 +69,7 @@
|
|
|
63
69
|
flex: 1;
|
|
64
70
|
|
|
65
71
|
&::placeholder {
|
|
66
|
-
|
|
72
|
+
@apply text-light-600;
|
|
67
73
|
}
|
|
68
74
|
|
|
69
75
|
&:focus {
|
|
@@ -72,12 +78,12 @@
|
|
|
72
78
|
}
|
|
73
79
|
|
|
74
80
|
&:hover {
|
|
75
|
-
border-
|
|
81
|
+
@apply border-dark-650;
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
&:focus-within {
|
|
79
|
-
border-color:
|
|
80
|
-
outline: 1px solid
|
|
85
|
+
border-color: var(--color-primary);
|
|
86
|
+
outline: 1px solid var(--color-primary);
|
|
81
87
|
outline-offset: 0;
|
|
82
88
|
}
|
|
83
89
|
}
|
|
@@ -3,17 +3,15 @@
|
|
|
3
3
|
========================================================================== */
|
|
4
4
|
|
|
5
5
|
.table-row-even {
|
|
6
|
-
|
|
6
|
+
@apply bg-dark-300;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.table-row-odd {
|
|
10
|
-
|
|
10
|
+
@apply bg-dark-400;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.table-component {
|
|
14
|
-
@apply w-full rounded-lg;
|
|
15
|
-
border: 1px solid
|
|
16
|
-
|
|
17
|
-
background-color: oklch(0.2046 0 0);
|
|
18
|
-
box-shadow: 0 4px 12px oklch(0 0 0 / 0.2);
|
|
14
|
+
@apply w-full rounded-lg bg-dark-500;
|
|
15
|
+
border: 1px solid var(--color-border);
|
|
16
|
+
@apply shadow-sm;
|
|
19
17
|
}
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
.Toastify__toast-theme--colored.Toastify__toast--default,
|
|
6
6
|
.Toastify__toast-theme--light {
|
|
7
|
-
background:
|
|
8
|
-
border
|
|
9
|
-
color:
|
|
7
|
+
background: var(--color-bg-card);
|
|
8
|
+
@apply border-2 border-dark-550;
|
|
9
|
+
color: var(--color-text-primary);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.Toastify__toast-icon {
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
margin-top: 1px;
|
|
25
25
|
padding-left: 0.1rem;
|
|
26
26
|
@apply flex border-solid w-6 h-6 items-center justify-center rounded-full;
|
|
27
|
-
border: 2px solid
|
|
27
|
+
border: 2px solid var(--color-text-primary);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.Toastify__close-button.Toastify__close-button--light svg {
|
|
31
|
-
color:
|
|
31
|
+
color: var(--color-text-primary);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.Toastify__close-button.Toastify__close-button--light svg path {
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
.Toastify__toast--error svg {
|
|
95
|
-
|
|
95
|
+
@apply text-red-300;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
.Toastify__toast--error svg path {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
.Toastify__toast--success .Toastify__progress-bar {
|
|
103
|
-
background:
|
|
103
|
+
background: var(--color-primary);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
.Toastify__progress-bar {
|