mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-14 00:53:04 -04:00
Chore(Fix Case on VencordTab.tsx, Fix CSS for MoreUserTags & Platform Indicators) (#251)
* Fix platform indicators CSS * format VencordTab.tsx Text Co-authored-by: Eazvy <57739965+Eazvy@users.noreply.github.com> * MoreUserTags CSS --------- Co-authored-by: Eazvy <57739965+Eazvy@users.noreply.github.com>
This commit is contained in:
parent
41a8cdf379
commit
05b927a077
3 changed files with 13 additions and 10 deletions
|
@ -82,7 +82,7 @@ function EquicordSettings() {
|
||||||
(!IS_DISCORD_DESKTOP || !isWindows
|
(!IS_DISCORD_DESKTOP || !isWindows
|
||||||
? {
|
? {
|
||||||
key: "frameless",
|
key: "frameless",
|
||||||
title: "Disable the window frame",
|
title: "Disable the Window Frame",
|
||||||
note: "Requires a full restart",
|
note: "Requires a full restart",
|
||||||
warning: { enabled: false },
|
warning: { enabled: false },
|
||||||
}
|
}
|
||||||
|
@ -95,7 +95,7 @@ function EquicordSettings() {
|
||||||
}),
|
}),
|
||||||
!IS_WEB && {
|
!IS_WEB && {
|
||||||
key: "transparent",
|
key: "transparent",
|
||||||
title: "Enable window transparency.",
|
title: "Enable Window Transparency",
|
||||||
note: "You need a theme that supports transparency or this will do nothing. Requires a full restart!",
|
note: "You need a theme that supports transparency or this will do nothing. Requires a full restart!",
|
||||||
warning: {
|
warning: {
|
||||||
enabled: isWindows,
|
enabled: isWindows,
|
||||||
|
@ -112,7 +112,7 @@ function EquicordSettings() {
|
||||||
},
|
},
|
||||||
IS_DISCORD_DESKTOP && {
|
IS_DISCORD_DESKTOP && {
|
||||||
key: "disableMinSize",
|
key: "disableMinSize",
|
||||||
title: "Disable minimum window size",
|
title: "Disable Minimum Window Size",
|
||||||
note: "Requires a full restart",
|
note: "Requires a full restart",
|
||||||
warning: { enabled: false },
|
warning: { enabled: false },
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,10 +1,17 @@
|
||||||
|
.vc-message-decorations-wrapper .vc-mut-message-tag {
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* stylelint-disable-next-line no-descending-specificity */
|
||||||
.vc-mut-message-tag {
|
.vc-mut-message-tag {
|
||||||
/* Remove default margin from tags in messages */
|
/* Remove default margin from tags in messages */
|
||||||
margin-top: unset !important;
|
margin-top: unset !important;
|
||||||
|
|
||||||
/* Align with Discord default tags in messages */
|
/* Align with Discord default tags in messages */
|
||||||
position: relative;
|
/* stylelint-disable-next-line length-zero-no-unit */
|
||||||
bottom: 0.01em;
|
bottom: 0px;
|
||||||
|
top: -2px;
|
||||||
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vc-mut-message-verified {
|
.vc-mut-message-verified {
|
||||||
|
|
|
@ -6,10 +6,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.vc-platform-indicator-profile {
|
.vc-platform-indicator-profile {
|
||||||
background: rgb(var(--bg-overlay-color) / var(--bg-overlay-opacity-6));
|
|
||||||
border: 1px solid var(--border-faint);
|
|
||||||
border-radius: var(--radius-xs);
|
|
||||||
border-color: var(--profile-body-border-color);
|
|
||||||
margin: 0 1px;
|
margin: 0 1px;
|
||||||
padding: 0 1px;
|
padding: 0 1px;
|
||||||
}
|
}
|
||||||
|
@ -17,5 +13,5 @@
|
||||||
.vc-platform-indicator-message {
|
.vc-platform-indicator-message {
|
||||||
position: relative;
|
position: relative;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
top: 2px;
|
top: -1px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue