Skip to content

Commit

Permalink
Merge pull request #15 from TakosThings/develop
Browse files Browse the repository at this point in the history
0.0.5

Close #11 
Close #12
  • Loading branch information
TakosThings authored Jan 26, 2022
2 parents a15f9fa + 226199d commit 8ae65d3
Show file tree
Hide file tree
Showing 18 changed files with 574 additions and 252 deletions.
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,5 @@ assignees: ''
**Describe the bug**
A clear and concise description of what the bug is.

**Steps to reproduce**
Explain the steps to reproduce the issue (if required).

**Screenshots**
If applicable, add screenshots to help explain your problem.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ A Windows 11 theme for Discord
## Download
The theme is still in-development.
* Some parts of the UI are not themed yet or may display slightly incorrectly.
* At the moment you must have 'English US' selected or most icons will disappear.
Go to [Releases](https://github.com/TakosThings/Fluent-Discord/releases/latest) and click 'Assets' under the latest pre-release.
* Go to [Releases](https://github.com/TakosThings/Fluent-Discord/releases/latest) and click 'Assets' under the latest pre-release.

## Requirements
* Windows 10 or Windows 11
Expand Down
6 changes: 6 additions & 0 deletions src/fluent.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
@import 'modules/main/channels/rtc';
@import 'modules/main/chat/chat';
@import 'modules/main/chat/chatbox';
@import 'modules/main/chat/search_results';
@import 'modules/main/chat/thread';
@import 'modules/main/chat/embeds/file';
@import 'modules/main/chat/embeds/invite';
Expand All @@ -55,6 +56,7 @@
// Order: None, alphabetic
@import 'modules/modals/add_server';
@import 'modules/modals/lightbox';
@import 'modules/modals/link_gate';
@import 'modules/modals/modal';

// Popouts
Expand All @@ -63,6 +65,7 @@
@import 'modules/popouts/noise_cancellation';
@import 'modules/popouts/pinned_messages';
@import 'modules/popouts/rtc';
@import 'modules/popouts/threads';
@import 'modules/popouts/user';

// Settings
Expand All @@ -83,3 +86,6 @@
// Order: None, alphabetic
@import 'modules/misc/loading';
@import 'modules/third_party/hljs';

// BetterDiscord
@import 'modules/betterdiscord/public';
10 changes: 10 additions & 0 deletions src/modules/betterdiscord/_public.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#bd-pub-button{
background-color: transparent;
border-radius: 4px;
color: $TextFillColorPrimary;
font-size: 10px;
text-transform: capitalize;
&:hover{
background-color: $ControlFillColorSecondary;
}
}
2 changes: 1 addition & 1 deletion src/modules/core/_metadata.scss
Original file line number Diff line number Diff line change
@@ -1 +1 @@
$version: "0.0.4";
$version: "0.0.5";
24 changes: 24 additions & 0 deletions src/modules/core/_options.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Accent colour
* Description: Change the accent colour.
* Default: The default accent colour is 'Default Blue' shown below as '0, 120, 215.
* To modify: Change the numbers after '--fluent-accent' in the line below.
* Warning: The colour formatting is non-standard. Read the wiki page before changing your
* Accent colour.
* Wiki: https://github.com/TakosThings/Fluent-Discord/wiki/Accent-colour
Expand All @@ -18,6 +19,7 @@
* Acrylic
* Description: Change the background and adjust filters.
* Default: Blue/green gradient background, filters disabled.
* To modify: Change the URL below.
* Note: You MUST read the wiki page about acrylic before enabling backdrop-filters.
* Ignoring this advice will probably result in bad performance.
* Wiki: https://github.com/TakosThings/Fluent-Discord/wiki/Acrylic
Expand All @@ -29,6 +31,28 @@
/* backdrop-filter: blur(240px); */
}

/**
* Chat box GIF button
* Description: Removes the GIF button from the right side of the chatbox.
* Default: The GIF button is hidden.
* To modify: Remove 'display: none;' from the below code
* Wiki: https://github.com/TakosThings/Fluent-Discord/wiki/Options#chat-box-gif-button
*/
.theme-dark .form-3gdLxP .buttons-uaqb-5 .buttonContainer-2lnNiN:nth-child(2){
display: none;
}

/**
* Chat box sticker button
* Description: Removes the sticker button from the right side of the chatbox.
* Default: The sticker button is hidden.
* To modify: Remove 'display: none;' from the below code
* Wiki: https://github.com/TakosThings/Fluent-Discord/wiki/Options#chat-box-sticker-button
*/
.theme-dark .form-3gdLxP .buttons-uaqb-5 .buttonContainer-2lnNiN:nth-child(3){
display: none;
}

/**
* End user options
*/
2 changes: 1 addition & 1 deletion src/modules/main/channels/_account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

// Icon replacements
html[lang^="en-"].theme-dark .panels-3wFtMD{
.contents-3ca1mk{
:not(.button-1EGGcP, .rtcConnectionStatusLabel-Nodt6L) > .contents-3ca1mk{
display: none;
}
.button-12Fmur{
Expand Down
Loading

0 comments on commit 8ae65d3

Please sign in to comment.