summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkNoteSub.vue
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-11-08 17:18:29 +0000
committerdakkar <dakkar@thenautilus.net>2024-11-08 17:33:04 +0000
commita930fd9758c6efaf1cc1da7b3e365ba590a5d298 (patch)
tree05e5ebd401230c81d4616eed7341038d693762e3 /packages/frontend/src/components/MkNoteSub.vue
parentprobably re-enable friendlycaptcha on signin (diff)
downloadsharkey-a930fd9758c6efaf1cc1da7b3e365ba590a5d298.tar.gz
sharkey-a930fd9758c6efaf1cc1da7b3e365ba590a5d298.tar.bz2
sharkey-a930fd9758c6efaf1cc1da7b3e365ba590a5d298.zip
probably fix most renamed CSS variables
Diffstat (limited to 'packages/frontend/src/components/MkNoteSub.vue')
-rw-r--r--packages/frontend/src/components/MkNoteSub.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/frontend/src/components/MkNoteSub.vue b/packages/frontend/src/components/MkNoteSub.vue
index c0be406893..3ab0227695 100644
--- a/packages/frontend/src/components/MkNoteSub.vue
+++ b/packages/frontend/src/components/MkNoteSub.vue
@@ -30,7 +30,7 @@ SPDX-License-Identifier: AGPL-3.0-only
ref="renoteButton"
class="_button"
:class="$style.noteFooterButton"
- :style="renoted ? 'color: var(--accent) !important;' : ''"
+ :style="renoted ? 'color: var(--MI_THEME-accent) !important;' : ''"
@mousedown="renoted ? undoRenote() : boostVisibility()"
>
<i class="ph-rocket-launch ph-bold ph-lg"></i>
@@ -438,7 +438,7 @@ if (props.detail) {
left: 8px;
width: 5px;
height: calc(100% - 8px);
- border-radius: var(--radius-ellipse);
+ border-radius: var(--MI-radius-ellipse);
pointer-events: none;
}
@@ -448,7 +448,7 @@ if (props.detail) {
margin: 0 8px 0 0;
width: 38px;
height: 38px;
- border-radius: var(--radius-sm);
+ border-radius: var(--MI-radius-sm);
}
.body {
@@ -475,7 +475,7 @@ if (props.detail) {
}
&:hover {
- color: var(--fgHighlighted);
+ color: var(--MI_THEME-fgHighlighted);
}
}
@@ -493,7 +493,7 @@ if (props.detail) {
opacity: 0.7;
&.reacted {
- color: var(--accent);
+ color: var(--MI_THEME-accent);
}
}
@@ -533,6 +533,6 @@ if (props.detail) {
padding: 8px !important;
border: 1px solid var(--MI_THEME-divider);
margin: 8px 8px 0 8px;
- border-radius: var(--radius-sm);
+ border-radius: var(--MI-radius-sm);
}
</style>