-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5547353
commit c4c5074
Showing
31 changed files
with
189 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "exponent-discord-theme", | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"description": "A Windows XP style Discord theme.", | ||
"repository": "https://github.com/Saltssaumure/xp-discord-theme", | ||
"author": "Saltssaumure <[email protected]>", | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@forward "./a"; | ||
@forward "./channels"; | ||
@forward "./taskbar"; | ||
@forward "./threads"; | ||
@forward "./titlebar"; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
@forward "./layer"; | ||
@forward "./modal"; | ||
@forward "./popover"; | ||
@forward "./tooltip"; | ||
|
||
@forward "./popover/"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 0 additions & 4 deletions
4
scss/overlay/popover/topbar/_index.scss → scss/overlay/popover/topbar/_a.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@forward "./a"; | ||
@forward "./inbox"; | ||
@forward "./pinned"; | ||
@forward "./threads"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
@use "../top/vars" as *; | ||
|
||
// HorizontalServerList and adjustments | ||
|
||
// Copyright (c) 2020 DiscordStyles | ||
// MIT license | ||
// https://github.com/DiscordStyles/HorizontalServerList | ||
@import url("https://discordstyles.github.io/HorizontalServerList/dist/HorizontalServerList.css"); | ||
@import url("https://discordstyles.github.io/Addons/bottomhsl.css"); | ||
|
||
// Adjustments | ||
:root { | ||
--HSL-server-icon-size: 25px; | ||
/* Size of the server icons | DEFAULT: 40px */ | ||
--HSL-server-spacing: 10px; | ||
/* Spacing between each server icon | DEFAULT: 10px */ | ||
--HSL-server-direction: column; | ||
/* Direct of the server list. | Options: column, column-reverse | DEFAULT: column */ | ||
} | ||
|
||
// Channels sidebar | ||
#app-mount .sidebar_a4d4d9 { | ||
border-radius: 8px 8px 0 0; | ||
} | ||
|
||
// Taskbar | ||
// leave gap in server bar for control panel | ||
#app-mount .guilds_a4d4d9 { | ||
height: calc(100vw - $panel-width) !important; | ||
|
||
.scrollerBase_eed6a8, | ||
.scrollerBase_c49869 { | ||
padding-top: 0 !important; | ||
} | ||
} | ||
body #app-mount .guilds_a4d4d9 { | ||
left: calc(100vw - $panel-width); | ||
} | ||
|
||
// Titlebar | ||
html.platform-osx #app-mount { | ||
.base_a4d4d9 { | ||
top: 0 !important; | ||
} | ||
|
||
.typeMacOS_a934d8 { | ||
width: auto; | ||
} | ||
} |
Oops, something went wrong.