Skip to content

Commit

Permalink
deploy: 708017a
Browse files Browse the repository at this point in the history
  • Loading branch information
Saltssaumure committed Oct 18, 2023
1 parent 2fa3c99 commit 909e7dc
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"discordID": "134142022092062720",
"github": "Saltssaumure"
},
"version": "1.5.0",
"version": "1.5.1",
"updater": {
"type": "store",
"id": "net.saltssaumure.Exponent"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exponent-discord-theme",
"version": "1.5.0",
"version": "1.5.1",
"description": "A Windows XP style Discord theme.",
"repository": "https://github.com/Saltssaumure/xp-discord-theme.git",
"author": "Saltssaumure <[email protected]>",
Expand All @@ -21,7 +21,7 @@
"@parcel/config-default": "^2.10.0",
"@parcel/core": "^2.10.0",
"@parcel/transformer-sass": "^2.10.0",
"@types/node": "^20.8.6",
"@types/node": "^20.8.7",
"prettier": "^3.0.3",
"replugged": "^4.6.5",
"salt-bd-scss": "^1.1.0"
Expand Down
72 changes: 36 additions & 36 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions scss/main/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
}

// Top bar (not in DMs)
.chat-9g_3Xj > .title-31SJ6t {
.chat-9g_3Xj > :is(.title-31SJ6t, .title-5wgnIa) {
.toolbar-3_r2xA {
// Move help icon
.anchor-1X4H4q .iconWrapper-2awDjA:only-of-type {
Expand Down Expand Up @@ -78,9 +78,9 @@
// Main chat and top bar
.chat-9g_3Xj:not(.container-2IKOsH > .chat-9g_3Xj) {
// Main chat
.chatContent-3KubbW {
:is(.chatContent-3KubbW, .chatContent-2O4SXb) {
// Message box
.form-3gdLxP {
:is(.form-3gdLxP, .form-3qe0Ni) {
// Gift nitro button
.buttons-uaqb-5 > .button-ejjZWC {
@include ico.makeIcon(50px, auto, ".buttonWrapper-3YFQGJ");
Expand Down Expand Up @@ -113,7 +113,7 @@
}

// Members list
.container-2o3qEW {
:is(.container-2o3qEW, .container-2vWgD2) {
@include box.startMenuList;

position: fixed;
Expand All @@ -123,17 +123,17 @@
max-height: calc(100vh - 400px);
@include box.windowHasPseudoTitle("Members");

.members-3WRCEx {
:is(.members-3WRCEx, .members-2y1nVj) {
background: var(--xp-bg-color);

// Member group
.membersGroup-2eiWxl:not(:nth-child(2)) {
:is(.membersGroup-2eiWxl, .membersGroup-2YoqY-):not(:nth-child(2)) {
position: relative;
@include box.startMenuDivider(7px);
}

// Member
.member-48YF_l,
:is(.member-48YF_l, .member-2iQhp7),
.member-2gU6Ar {
background: var(--xp-bg-color);

Expand All @@ -152,7 +152,7 @@
}

// With members list visible
&:has(.membersWrap-3NUR2t) {
&:has(:is(.membersWrap-3NUR2t, .membersWrap-3GwLFp)) {
// VC video controls
.bottomControls-31YuPK {
width: auto;
Expand Down
16 changes: 8 additions & 8 deletions scss/main/_threads.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
@use "../top/boxes" as box;

// Main chat with thread open
.chat-9g_3Xj.threadSidebarOpen-1LSXvU {
.chat-9g_3Xj:is(.threadSidebarOpen-1LSXvU, .threadSidebarOpen-lv7sGl) {
border-radius: 0;

// Message needs no indent as member list cannot be visible at once.
.chatContent-3KubbW .message-2CShn3 {
:is(.chatContent-3KubbW, .chatContent-2O4SXb) .message-2CShn3 {
margin-right: 0 !important;
}

Expand All @@ -16,27 +16,27 @@
}
}

.resizeHandle-PBRzPC {
:is(.resizeHandle-PBRzPC, .resizeHandle-2F4Beb) {
background: $color-window-2;
}

// Floating thread panel
.floating-3M3WeH {
:is(.floating-3M3WeH, .floating-1T0kDs) {
border-radius: 0;
}

// Threads not video chat
.content-1SgpWY > {
// Main chat / thread separator
.resizeHandle-PBRzPC {
:is(.resizeHandle-PBRzPC, .resizeHandle-2F4Beb) {
position: relative;
right: $window-right;
margin: $window-top 0 $window-bottom 0;
height: auto;
}

// Thread panel
.container-3XgAHv {
:is(.container-3XgAHv, .container-3s2w-i) {
position: relative;
margin: $window-top 0 $window-bottom 0;
right: $window-right;
Expand All @@ -46,7 +46,7 @@
}

// Floating thread panel for narrow screens
.chatLayerWrapper-2mgEK- {
:is(.chatLayerWrapper-2mgEK-, .chatLayerWrapper-1K7IFZ) {
// margin: $window-top $window-right $window-bottom 0;
top: $window-top;
right: calc($window-right + 2px);
Expand All @@ -55,6 +55,6 @@
}
}

.chatTarget-3H6mpC {
:is(.chatTarget-3H6mpC, .chatTarget-1ROClP) {
display: none;
}
4 changes: 2 additions & 2 deletions scss/main/_titlebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
margin-top: 0;
}

.titleBar-1it3bQ {
:is(.titleBar-1it3bQ, .titleBar-3AIemB) {
position: absolute;
left: $window-left;
right: $window-right;
Expand Down Expand Up @@ -37,7 +37,7 @@
}

// Min / Max / Close buttons
.winButton-3UMjdg {
:is(.winButton-3UMjdg, .winButton-3SigSb) {
@include bt.winButton(20px, false);

&.winButtonClose-3Q8ZH5 {
Expand Down
2 changes: 1 addition & 1 deletion xp.min.css

Large diffs are not rendered by default.

0 comments on commit 909e7dc

Please sign in to comment.