From 43ecaed4040b266217d31755bd88275fcb8835d8 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Thu, 27 Jan 2022 01:53:17 +1030 Subject: [PATCH 01/14] Change caret icons so they're compatible with MDL2 Assets --- src/modules/main/channels/_channels.scss | 4 ++-- src/modules/main/guilds/_guilds.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/main/channels/_channels.scss b/src/modules/main/channels/_channels.scss index 3cebb5f..b103117 100644 --- a/src/modules/main/channels/_channels.scss +++ b/src/modules/main/channels/_channels.scss @@ -242,7 +242,7 @@ .unreadBottom-3Ojk6R{ span{ &::before{ - content: "\F08E"; + content: "\EDDC"; // CaretDownSolid8 } } } @@ -250,7 +250,7 @@ .unreadTop-1DJtGv{ span{ &::before{ - content: "\F090"; + content: "\EDDB"; // CaretUpSolid8 } } } diff --git a/src/modules/main/guilds/_guilds.scss b/src/modules/main/guilds/_guilds.scss index a9f6bdc..2e1fedc 100644 --- a/src/modules/main/guilds/_guilds.scss +++ b/src/modules/main/guilds/_guilds.scss @@ -200,14 +200,14 @@ .unreadMentionsIndicatorBottom-3RJMnQ{ span{ &::before{ - content: "\F08E"; + content: "\EDDC"; // CaretDownSolid8 } } } .unreadMentionsIndicatorTop-2bTgUU{ span{ &::before{ - content: "\F090"; + content: "\EDDB"; // CaretUpSolid8 } } } From 6ecb66d2da918ffdb2cba3dc24fa8172eef76566 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Thu, 27 Jan 2022 01:55:17 +1030 Subject: [PATCH 02/14] Add missing comments to ID icons in use --- src/modules/main/guilds/_guilds.scss | 4 ++-- src/modules/main/toolbar/_search.scss | 2 +- src/modules/popouts/_user.scss | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/main/guilds/_guilds.scss b/src/modules/main/guilds/_guilds.scss index 2e1fedc..96bd85d 100644 --- a/src/modules/main/guilds/_guilds.scss +++ b/src/modules/main/guilds/_guilds.scss @@ -59,7 +59,7 @@ .childWrapper-1j_1ub{ background-color: transparent; &::before{ - content: "\E80F"; + content: "\E80F"; // Home color: $TextFillColorPrimary; @include FontIconFluent; font-size: 16px; @@ -166,7 +166,7 @@ .iconBadge-32fMme.participating-2Z81oO{ background-color: $SystemFillColorSuccesBackground; &::before{ - content: "\F0B9"; + content: "\F0B9"; // Connected @include FontIconFluent; color: $SystemFillColorSuccess; font-size: 10px; diff --git a/src/modules/main/toolbar/_search.scss b/src/modules/main/toolbar/_search.scss index 494b350..e0c148d 100644 --- a/src/modules/main/toolbar/_search.scss +++ b/src/modules/main/toolbar/_search.scss @@ -20,7 +20,7 @@ // Icon when not active .search-1FM8Qc:not(.focused-8aNhVB):not(.open-3y3yI_)::before{ - content: "\e721"; + content: "\e721"; // Search width: 64px; font-size: 16px; @include FontIconFluent; diff --git a/src/modules/popouts/_user.scss b/src/modules/popouts/_user.scss index bcad263..f591134 100644 --- a/src/modules/popouts/_user.scss +++ b/src/modules/popouts/_user.scss @@ -63,7 +63,7 @@ display: none; } &::before{ - content: "\e99a"; + content: "\e99a"; // Robot @include TypeSubtitle; @include FontIconFluent; font-weight: normal; From 812e5b4fd9525907349c1db7faef8f1bddc05362 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Fri, 28 Jan 2022 15:31:23 +1030 Subject: [PATCH 03/14] Update ready toolbar icon --- src/modules/icons/main/_toolbar.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/modules/icons/main/_toolbar.scss b/src/modules/icons/main/_toolbar.scss index 9e497b4..9379101 100644 --- a/src/modules/icons/main/_toolbar.scss +++ b/src/modules/icons/main/_toolbar.scss @@ -44,6 +44,22 @@ html[lang^="en-"].theme-dark .toolbar-3_r2xA{ content: "\E89F"; // More } + // Update + &[aria-label="#{map-get($translate, UPDATE_DOWNLOADED)}"]::before{ + content: "\F83E"; // UpdateRestore + } + &[aria-label="#{map-get($translate, UPDATE_DOWNLOADED)}"]::after{ + content: ""; + width: 8px; + height: 8px; + position: absolute; + top: 19px; + left: 32px; + background-color: $Gold; + + border-radius: 4px; + } + // Help &[aria-label="#{map-get($translate, HELP)}"]{ display: none; From 5985df74e48a0997f2776cfb80dbd9fde37bb130 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Fri, 28 Jan 2022 16:06:06 +1030 Subject: [PATCH 04/14] Chat loading --- src/modules/main/chat/_chat.scss | 49 ++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/src/modules/main/chat/_chat.scss b/src/modules/main/chat/_chat.scss index c687764..3a370ca 100644 --- a/src/modules/main/chat/_chat.scss +++ b/src/modules/main/chat/_chat.scss @@ -131,3 +131,52 @@ } } } + +// Loading chat messages +.wrapper-3HVHpV{ + background-color: transparent; + // The placeholding items wrappers + .wrapper-15CKyy{ + display: none; + } + &::before, + &::after{ + content: ""; + height: 4px; + position: absolute; + // Hacks ahead + // 100vh - titlebar - toolbar - scrollbar spacer - chatbox - height of ::before,::after + bottom: calc(100vh - 170px); + left: 0; + border-radius: 2px; + } + &::before{ + background-color: $AccentBase; + animation: fluent-indeterminate-loading-inc 3s infinite; + } + &::after{ + background-color: $AccentBase; + animation: fluent-indeterminate-loading-dec 3s 1.5s infinite; + } + + @keyframes fluent-indeterminate-loading-inc{ + from{ + left: -5%; + width: 5%; + } + to{ + left: 130%; + width: 100%; + } + } + @keyframes fluent-indeterminate-loading-dec{ + from{ + left: -80%; + width: 80%; + } + to{ + left: 110%; + width: 10%; + } + } +} From ff615e8299eea002a4db5472f0223dfd08ef9603 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Fri, 28 Jan 2022 16:06:41 +1030 Subject: [PATCH 05/14] Reduce delay before blobs animation starts --- src/modules/loadscreen/_loadscreen.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/loadscreen/_loadscreen.scss b/src/modules/loadscreen/_loadscreen.scss index 1ebe537..e77ce92 100644 --- a/src/modules/loadscreen/_loadscreen.scss +++ b/src/modules/loadscreen/_loadscreen.scss @@ -29,14 +29,14 @@ opacity: 0; animation: fluent-loading-blobs 10s linear infinite; - animation-delay: 20s; // Delay starting animations + animation-delay: 5s; // Delay starting animations } &::after{ transform: translate(192px, 64px); opacity: 0; animation: fluent-loading-blobs 17s linear infinite; - animation-delay: 35s; // Delay starting animations + animation-delay: 20s; // Delay starting animations } } From 3c88a33caf95ec55f896915723d1345ad8eddc8b Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 12:54:54 +1030 Subject: [PATCH 06/14] Add friend --- src/modules/home/_main.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/modules/home/_main.scss b/src/modules/home/_main.scss index 1c0dfc6..6198178 100644 --- a/src/modules/home/_main.scss +++ b/src/modules/home/_main.scss @@ -53,6 +53,17 @@ color: $TextFillColorPrimary; } } + + // Add friend + .addFriendInputWrapper-kkoSV9{ + padding: 0; + background-color: transparent; + border: 0; + } + // Remove hint text + .addFriendHint-1EVQJY{ + display: none; + } } // Icon replacements From 2e05526e8ee5fe7f1eae1cbca57ff942c3cf2435 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 14:08:52 +1030 Subject: [PATCH 07/14] Search popout --- src/fluent.scss | 1 + src/modules/popouts/_search.scss | 168 +++++++++++++++++++++++++++++++ 2 files changed, 169 insertions(+) create mode 100644 src/modules/popouts/_search.scss diff --git a/src/fluent.scss b/src/fluent.scss index 4dd5706..52e21a9 100644 --- a/src/fluent.scss +++ b/src/fluent.scss @@ -65,6 +65,7 @@ @import 'modules/popouts/noise_cancellation'; @import 'modules/popouts/pinned_messages'; @import 'modules/popouts/rtc'; +@import 'modules/popouts/search'; @import 'modules/popouts/threads'; @import 'modules/popouts/user'; diff --git a/src/modules/popouts/_search.scss b/src/modules/popouts/_search.scss new file mode 100644 index 0000000..7dba500 --- /dev/null +++ b/src/modules/popouts/_search.scss @@ -0,0 +1,168 @@ +.theme-dark .container-2McqkF{ + background: $MicaBackgroundFillColorBase; + backdrop-filter: blur(16px); + border: 1px solid $CardStrokeColorDefault; + border-radius: 8px; + + .header-3A13BX{ + @include TypeBodyStrong; + color: $TextFillColorPrimary; + text-transform: none; + } + + .option-2KkUJO{ + margin: 1px 10px; + height: 32px; + border: 1px solid transparent; + border-radius: 4px; + &:hover{ + background-color: $SubtleFillColorSecondary; + border-color: $SubtleFillColorSecondary; + } + &::after{ + display: none; + } + + .filter-5YbOzJ, + .answer-2fBfuP, + .displayedNick-2dDbfG, + .displayUsername-14aOpK, + strong{ + @include TypeBody; + } + + .filter-5YbOzJ, + .displayedNick-2dDbfG, + strong{ + color: $TextFillColorPrimary + } + .answer-2fBfuP, + .displayUsername-14aOpK{ + color: $TextFillColorSecondary; + } + } + + + // Calendar + .react-datepicker{ + background-color: transparent; + .react-datepicker__navigation{ + + } + // inc/dec month buttons + &__navigation.react-datepicker__navigation--previous{ + width: 32px; + height: 32px; + top: 12px; + right: 64px; + left: unset; + background-image: none; + transform: none; + text-indent: unset; + border: 0; + border-radius: 4px; + &::before{ + content: "\EDDB"; + @include FontIconFluent; + color: $TextFillColorSecondary; + } + &:hover{ + background-color: $SubtleFillColorSecondary; + } + span{ + display: none; + } + } + &__navigation.react-datepicker__navigation--next{ + width: 32px; + height: 32px; + top: 12px; + right: 32px; + left: unset; + background-image: none; + transform: none; + text-indent: unset; + border: 0; + border-radius: 4px; + &::before{ + content: "\EDDC"; + @include FontIconFluent; + color: $TextFillColorSecondary; + } + &:hover{ + background-color: $SubtleFillColorSecondary; + } + span{ + display: none; + } + } + + + // Header + &__header{ + background-color: transparent; + border: 0; + text-align: left; + } + // Current month + &__current-month{ + color: $TextFillColorPrimary; + @include TypeBodyStrong; + text-transform: none; + border: 0; + } + // Calendar + // weekdays + &__day-name{ + color: $TextFillColorPrimary; + @include TypeBodyStrong; + text-transform: none; + } + // Week + &__week .react-datepicker__day{ + @include TypeBody; + line-height: 40px; // override + border: 0; + border-radius: 50%; + &:hover{ + background-color: $SubtleFillColorSecondary; + } + &--outside-month{ + background-color: transparent; + } + &--today{ + // background-color: $AccentTextFillColorPrimary; + box-shadow: inset 0 0 0 1px $AccentTextFillColorPrimary; + color: $AccentTextFillColorPrimary; + } + &--selected{ + + border-color: $AccentTextFillColorPrimary; + &::after{ + content: unset; + } + } + &--keyboard-selected:not(--selected){ + background-color: $AccentTextFillColorPrimary; + } + &--disabled{ + background-color: transparent; + color: $TextFillColorDisabled; + &:hover{ + background-color: transparent; + color: $TextFillColorDisabled; + } + &::before{ + content: ""; + width: 1px; + height: 28px; + top: 8px; + left: 20px; + position: absolute; + background-color: $TextFillColorDisabled; + transform: rotate(45deg); + } + } + } + } +} From ff324ee59ccf9bb1bd033706e57baa7f1f5bfee6 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 14:28:36 +1030 Subject: [PATCH 08/14] Add note on chat font scaling --- src/modules/core/_options.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/modules/core/_options.scss b/src/modules/core/_options.scss index 3d6ec77..27dea1b 100644 --- a/src/modules/core/_options.scss +++ b/src/modules/core/_options.scss @@ -2,7 +2,15 @@ * Start user options * Visit the wiki for information on this section * https://github.com/TakosThings/Fluent-Discord/wiki - * +*/ + +/** + * Note on chat font size + * You may want to change your chat font scaling to '14px' to match the font size in Windows. + * This option is found in User settings > Appearance. +*/ + + /** * Accent colour * Description: Change the accent colour. * Default: The default accent colour is 'Default Blue' shown below as '0, 120, 215. From 5044bc463475e8a12fb7ab9a182504c63df31eb9 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 15:05:34 +1030 Subject: [PATCH 09/14] Reword --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d1f3d9..423ccda 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ The theme is still in-development. ## Requirements * Windows 10 or Windows 11 -* For non-Windows go to the [Design toolkits](https://docs.microsoft.com/en-gb/windows/apps/design/downloads/#fonts) page on Microsoft Docs and download and install: +* Non-Windows users can download the Windows 11 fonts from [Design toolkits](https://docs.microsoft.com/en-gb/windows/apps/design/downloads/#fonts) on Microsoft Docs * Segoe UI Variable * Segoe Fluent Icons * Hololens icon font is used by the theme, but is not required -## Getting help +## Getting Help * Visit the [wiki](https://github.com/TakosThings/Fluent-Discord/wiki) * Open an [issue](https://github.com/TakosThings/Fluent-Discord/issues) * Join the [Discord server](https://discord.gg/ZYrCacRuez) From e8c2356b94662dba8bbc6ac08db3c447e8522ef0 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 15:06:21 +1030 Subject: [PATCH 10/14] Add link to EmojiReplace --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 423ccda..8a6ab39 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ The theme is still in-development. * Segoe UI Variable * Segoe Fluent Icons * Hololens icon font is used by the theme, but is not required +### Optional Extras +* [EmojiReplace](https://betterdiscord.app/theme/EmojiReplace) theme by DevilBro to get Windows 11 emoji on Discord ## Getting Help * Visit the [wiki](https://github.com/TakosThings/Fluent-Discord/wiki) From 76527dba5d32915868a101c1a92051229151740b Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 15:52:00 +1030 Subject: [PATCH 11/14] Fix incorrect border colour on some pop outs --- src/modules/popouts/_inbox.scss | 2 +- src/modules/popouts/_pinned_messages.scss | 2 +- src/modules/popouts/_search.scss | 2 +- src/modules/popouts/_threads.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/popouts/_inbox.scss b/src/modules/popouts/_inbox.scss index 23fea8e..f15379d 100644 --- a/src/modules/popouts/_inbox.scss +++ b/src/modules/popouts/_inbox.scss @@ -3,7 +3,7 @@ margin: 8px; background: $MicaBackgroundFillColorBase; backdrop-filter: blur(16px); - border: 1px solid $CardStrokeColorDefault; + border: 1px solid $SurfaceStrokeColorDefault; border-radius: 8px; .header-1w9Q93{ diff --git a/src/modules/popouts/_pinned_messages.scss b/src/modules/popouts/_pinned_messages.scss index 8a2b890..1582346 100644 --- a/src/modules/popouts/_pinned_messages.scss +++ b/src/modules/popouts/_pinned_messages.scss @@ -1,7 +1,7 @@ .theme-dark .messagesPopoutWrap-3zryHW{ background: $MicaBackgroundFillColorBase; backdrop-filter: blur(16px); - border: 1px solid $CardStrokeColorDefault; + border: 1px solid $SurfaceStrokeColorDefault; border-radius: 8px; .header-1w9Q93{ diff --git a/src/modules/popouts/_search.scss b/src/modules/popouts/_search.scss index 7dba500..947eddf 100644 --- a/src/modules/popouts/_search.scss +++ b/src/modules/popouts/_search.scss @@ -1,7 +1,7 @@ .theme-dark .container-2McqkF{ background: $MicaBackgroundFillColorBase; backdrop-filter: blur(16px); - border: 1px solid $CardStrokeColorDefault; + border: 1px solid $SurfaceStrokeColorDefault; border-radius: 8px; .header-3A13BX{ diff --git a/src/modules/popouts/_threads.scss b/src/modules/popouts/_threads.scss index 8139390..197c2a8 100644 --- a/src/modules/popouts/_threads.scss +++ b/src/modules/popouts/_threads.scss @@ -1,7 +1,7 @@ .theme-dark .browser-mnQ1T7{ background: $MicaBackgroundFillColorBase; backdrop-filter: blur(16px); - border: 1px solid $CardStrokeColorDefault; + border: 1px solid $SurfaceStrokeColorDefault; border-radius: 8px; .header-3_zmOb{ From 16ab7352b4eee3b7feccc4d65a7b4556cd13d2d8 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 16:13:19 +1030 Subject: [PATCH 12/14] Emoji picker --- src/fluent.scss | 1 + src/modules/popouts/_emoji_picker.scss | 204 +++++++++++++++++++++++++ 2 files changed, 205 insertions(+) create mode 100644 src/modules/popouts/_emoji_picker.scss diff --git a/src/fluent.scss b/src/fluent.scss index 52e21a9..f6e2d0b 100644 --- a/src/fluent.scss +++ b/src/fluent.scss @@ -61,6 +61,7 @@ // Popouts // Order: None, alphabetic +@import 'modules/popouts/emoji_picker'; @import 'modules/popouts/inbox'; @import 'modules/popouts/noise_cancellation'; @import 'modules/popouts/pinned_messages'; diff --git a/src/modules/popouts/_emoji_picker.scss b/src/modules/popouts/_emoji_picker.scss new file mode 100644 index 0000000..a803957 --- /dev/null +++ b/src/modules/popouts/_emoji_picker.scss @@ -0,0 +1,204 @@ +.theme-dark .contentWrapper-3vHNP2{ + background: $MicaBackgroundFillColorBase; + backdrop-filter: blur(16px); + border: 1px solid $SurfaceStrokeColorDefault; + border-radius: 8px; + + // Navigation + .nav-1zWVQw{ + .navButton-1XuvI-{ + padding-left: 0; + padding-right: 0; + margin-left: 0; + margin-right: 16px; + color: $TextFillColorPrimary; + border-radius: 0; + &:hover{ + background-color: transparent; + color: $TextFillColorSecondary; + } + + } + .navButtonActive-1EqC5l{ + background-color: transparent; + color: $AccentTextFillColorPrimary; + &::before{ + content: ""; + position: absolute; + bottom: 0px; + width: 100%; + height: 2px; + background-color: $AccentLight3; + border-radius: 2px; + } + &:hover{ + color: $TextFillColorSecondary; + } + } + } + + // Header + .header-11eigE, // Emoji + .header-uVCAlo, // Stickers + .header-2TLOnc{ // GIFs + box-shadow: none; + } + // Search + .container-1SX9VC, + .container-2oNtJn{ // GIFs search + background-color: transparent; + } + .input-2FSSDe, + .input-2m5SfJ{ // GIFs search + height: 32px; + padding-right: 32px; + background-color: $ControlFillColorDefault; + color: $TextFillColorSecondary; + border: 1px solid $ControlElevationBorder; + border-bottom: 2px solid $ControlElevationBorder; + border-radius: 4px; + @include TypeBody; + &:hover{ + border-color: $ControlStrokeColorSecondary; + } + &:focus{ + background-color: $ControlFillColorInputActiveBrush; + color: $TextFillColorPrimary; + border-color: $ControlElevationBorder; + border-bottom-color: $AccentBase; + } + } + // Search clear button + .iconLayout-SqV3nb, + .iconLayout-3Bjizv{ // GIFs search + position: absolute; + right: 4px; + } + + // Emoji + // Sidebar + .categoryList-2qRrlj{ + top: 52px; + background-color: $SolidBackgroundFillColorBase; + } + // Replace emoji icons + .categoryItemDefaultCategory-3haEDq { + &.categoryItem-1sHzUv{ + svg{ + display: none; + } + &::before{ + padding: 2px; + color: $TextFillColorPrimary; + @include FontIconFluent; + font-size: 20px; + line-height: calc(32px - 8px); + vertical-align: middle; + } + &[aria-label="recent"]::before{ + content: "\E81C"; + } + &[aria-label="custom"]::before{ + content: "\E74C"; + } + &[aria-label="people"]::before{ + content: "\ED53"; + } + &[aria-label="nature"]::before{ + content: "\E708"; + } + &[aria-label="food"]::before{ + content: "\ED56"; + } + &[aria-label="activity"]::before{ + content: "\EA86"; + } + &[aria-label="travel"]::before{ + content: "\ED57"; + } + &[aria-label="objects"]::before{ + content: "\ED55"; + } + &[aria-label="symbols"]::before{ + content: "\EB51"; + } + &[aria-label="flags"]::before{ + content: "🏳‍🌈"; + @include TypeBody; + } + } + } + // Info bar + .inspector-DFKXwB{ + background-color: $SolidBackgroundFillColorSecondary; + } + // Emoji category header + .header-1ULbqO{ + margin: 0 -8px; + padding: 0 16px; + background-color: $SolidBackgroundFillColorTertiary; + border-radius: 4px; + .headerLabel-1g790w{ + @include TypeBodyStrong; + color: $TextFillColorPrimary; + text-transform: none; + } + } + + // Colour change + .diversitySelectorButton-2CGlo5{ + width: 30px; + height: 30px; + background-color: $ControlFillColorDefault; + border: 1px solid $ControlElevationBorder; + border-radius: 4px; + .diversityEmojiItemImage-1pfGqI{ + margin: 3px; + } + } + .diversitySelectorOptionsInExpressionPicker-3wybQR{ + top: 2px; + right: 8px; + } + .diversitySelectorOptions-3DhNYs{ + border: 1px solid $ControlElevationBorder; + .diversityEmojiItem-2bgZKv{ + width: 30px; + height: 30px; + padding: 0; + } + .diversityEmojiItemImage-1pfGqI{ + margin: 3px; + } + } + + + // Nitro prompt + .premiumPromo-1eKAIB{ + background-color: $CardStrokeColorDefaultSolid; + .premiumPromoImage-2q0gnA{ + display: none; + } + .premiumPromoTitle-3tWrPT{ + @include TypeBodyLarge; + } + .premiumPromoDescription-1kf0Oa{ + @include TypeBody; + color: $TextFillColorPrimary; + } + } + + + // GIF results + .result-pzZrwj{ + border-radius: 4px; + } + .gif-2kTiNB{ + border-radius: 4px; + } + .focused-16Owih:after, + .result-pzZrwj:hover:after{ + box-shadow: inset 0 0 0 2px $AccentLight3; + border-radius: 4px; + } +} From 5080854c1f5dca6f2bf414878c27703b46cd6e11 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 16:17:51 +1030 Subject: [PATCH 13/14] Build checklist --- .docs/build_checklist.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .docs/build_checklist.md diff --git a/.docs/build_checklist.md b/.docs/build_checklist.md new file mode 100644 index 0000000..972a75b --- /dev/null +++ b/.docs/build_checklist.md @@ -0,0 +1,19 @@ +# Build checklist +**Pre commit** +- [ ] Update version in `/src/modules/core/metadata` +- [ ] Execute `npm run build` + +**Commit** +- [ ] Commit `/src/modules/core/metadata` only +- [ ] Commit message is `Bump version > 0.0.*` + +**PR** +- [ ] Correct version in PR title +- [ ] Close any open issues in the pull commit + +**Release** +- [ ] Correct tag version +- [ ] Target correct branch (master) +- [ ] Correct version in title +- [ ] Changelog pasted into body +- [ ] CSS files are uploaded From e40576ec040f1542a37dbde83edfb73573231151 Mon Sep 17 00:00:00 2001 From: TakosThings Date: Sat, 29 Jan 2022 16:28:59 +1030 Subject: [PATCH 14/14] Bump version > 0.0.6 --- src/modules/core/_metadata.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/core/_metadata.scss b/src/modules/core/_metadata.scss index a2eb0e7..04cbab2 100644 --- a/src/modules/core/_metadata.scss +++ b/src/modules/core/_metadata.scss @@ -1 +1 @@ -$version: "0.0.5"; +$version: "0.0.6";