From 5f4a1a6c000a825652b30f080bfdca53af511745 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Mon, 22 Sep 2025 22:49:33 +0400 Subject: [PATCH 1/2] Furbooru: Use margin for tag category titles used for Derpibooru --- src/styles/content/tags-editor.scss | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/styles/content/tags-editor.scss b/src/styles/content/tags-editor.scss index 07a79a9..c371073 100644 --- a/src/styles/content/tags-editor.scss +++ b/src/styles/content/tags-editor.scss @@ -6,18 +6,8 @@ h2.tag-category-headline { $base-margin-top: .83em; $base-margin-bottom: .62em; - // Tag List element was updated to use flex & gaps. This should be applied to Furbooru later, once updates will be - // applied from the base Philomena version. - @if environment.$current-site == 'derpibooru' { - margin: { - top: calc(#{$base-margin-top} - #{booru-vars.$padding-small}); - bottom: calc(#{$base-margin-bottom} - #{booru-vars.$padding-small}); - } - } - @else { - margin: { - top: $base-margin-top; - bottom: $base-margin-bottom; - } + margin: { + top: calc(#{$base-margin-top} - #{booru-vars.$padding-small}); + bottom: calc(#{$base-margin-bottom} - #{booru-vars.$padding-small}); } } From a20632e58eda8eddaba7d53e6ac7d7939072cf69 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Mon, 22 Sep 2025 22:50:48 +0400 Subject: [PATCH 2/2] Furbooru: Updated tags appearance in media box popups --- src/styles/content/listing.scss | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/styles/content/listing.scss b/src/styles/content/listing.scss index 467bcda..2306743 100644 --- a/src/styles/content/listing.scss +++ b/src/styles/content/listing.scss @@ -68,15 +68,8 @@ .tag { cursor: pointer; user-select: none; - - // Derpibooru has slight differences in how tags are displayed. - @if environment.$current-site == 'derpibooru' { - padding: 0 5px; - gap: 0; - } - @else { - padding: 5px; - } + padding: 0 5px; + gap: 0; &:hover { background: booru-vars.$resolved-tag-color;