Skip to content

Commit 7c4c4a5

Browse files
author
Benjamin Pryor
committed
v12.2.3
1 parent e6dbba8 commit 7c4c4a5

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CollapsibleUI Patch Notes
22

3+
### v12.2.3:
4+
* Fixed user profile compatibility issue with FullscreenToggle plugin
5+
36
### v12.2.2:
47
* Fixed leftover spacing when collapsing button groups
58

CollapsibleUI.plugin.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author programmer2514
44
* @authorId 563652755814875146
55
* @description A feature-rich BetterDiscord plugin that reworks the Discord UI to be significantly more modular
6-
* @version 12.2.2
6+
* @version 12.2.3
77
* @donate https://ko-fi.com/benjaminpryor
88
* @patreon https://www.patreon.com/BenjaminPryor
99
* @website https://github.com/programmer2514/BetterDiscord-CollapsibleUI
@@ -155,14 +155,14 @@ const settings = {
155155
const config = {
156156
changelog: [
157157
{
158-
title: '12.2.2',
158+
title: '12.2.3',
159159
type: 'added',
160160
items: [
161-
'Fixed leftover spacing when collapsing button groups',
161+
'Fixed user profile compatibility issue with FullscreenToggle plugin',
162162
],
163163
},
164164
{
165-
title: '1.0.0 - 12.2.1',
165+
title: '1.0.0 - 12.2.2',
166166
type: 'added',
167167
items: [
168168
'See the full changelog here: https://programmer2514.github.io/?l=cui-changelog',
@@ -1922,9 +1922,9 @@ const styles = {
19221922
transition: max-height var(--cui-transition-speed), width var(--cui-transition-speed), border var(--cui-transition-speed) !important;
19231923
max-height: ${settings.userAreaMaxHeight}px !important;
19241924
overflow: hidden !important;
1925-
width: calc((var(--cui-channel-list-width) * var(--cui-channel-list-toggled)) + (var(--custom-guild-list-width) * var(--cui-server-list-toggled) * var(--cui-compat-hsl)) - (var(--space-xs) * 2)) !important;
1926-
border-left-width: clamp(0px, calc(1px * ((var(--cui-server-list-toggled) * var(--cui-compat-hsl)) + var(--cui-channel-list-toggled))), 1px) !important;
1927-
border-right-width: clamp(0px, calc(1px * ((var(--cui-server-list-toggled) * var(--cui-compat-hsl)) + var(--cui-channel-list-toggled))), 1px) !important;
1925+
width: calc((var(--cui-channel-list-width) * var(--cui-channel-list-toggled)) + (var(--custom-guild-list-width) * var(--cui-server-list-toggled) * var(--cui-compat-hsl) * (1 - var(--fst-server-list-collapsed))) - (var(--space-xs) * 2)) !important;
1926+
border-left-width: clamp(0px, calc(1px * ((var(--cui-server-list-toggled) * var(--cui-compat-hsl) * (1 - var(--fst-server-list-collapsed))) + var(--cui-channel-list-toggled))), 1px) !important;
1927+
border-right-width: clamp(0px, calc(1px * ((var(--cui-server-list-toggled) * var(--cui-compat-hsl) * (1 - var(--fst-server-list-collapsed))) + var(--cui-channel-list-toggled))), 1px) !important;
19281928
z-index: 191 !important;
19291929
}
19301930

0 commit comments

Comments
 (0)