1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Derpibooru: Fixed incorrect padding on media box tags

This commit is contained in:
2025-08-09 01:23:06 +04:00
parent 9c162bc2ce
commit 8d042a80a0

View File

@@ -1,5 +1,6 @@
@use '$styles/colors';
@use '$styles/booru-vars';
@use '$styles/environment';
// This will fix wierd misplacing of the modified media boxes in the listing.
.js-resizable-media-container {
@@ -66,9 +67,17 @@
.tag {
cursor: pointer;
padding: 5px;
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;
}
&:hover {
background: booru-vars.$resolved-tag-color;
color: booru-vars.$resolved-tag-background;