Fearless Forums
Signature Lines on the Dark Theme - Printable Version

+- Fearless Forums (https://fearlessrp.net)
+-- Forum: CityRP Server (https://fearlessrp.net/forumdisplay.php?fid=6)
+--- Forum: Bugs (https://fearlessrp.net/forumdisplay.php?fid=128)
+---- Forum: Fixed/Closed (https://fearlessrp.net/forumdisplay.php?fid=129)
+---- Thread: Signature Lines on the Dark Theme (/showthread.php?tid=94696)



Signature Lines on the Dark Theme - Denn1s - 11-10-2019

Title of Bug: Signature Lines on the Dark Theme

Description: 
With the dark Theme on the Forum you can't see the two lines that separate the post from the signature.

Maybe make them white in the dark theme will fix.

Evidence: 
[Image: oQnKoHG.png]

[Image: 5GwXqwx.png]


RE: Signature Lines on the Dark Theme - BGCrafter - 11-10-2019

What a big problem... +support for aesthetic purposes


RE: Signature Lines on the Dark Theme - Denn1s - 11-10-2019

(11-10-2019, 01:47 PM)BGCrafter Wrote: What a big problem... +support for aesthetic purposes

Well sometimes I can't distinguish if the thing belongs to the post or is just the signature.


RE: Signature Lines on the Dark Theme - RIC0H - 11-10-2019

(11-10-2019, 01:26 PM)Denn1s Wrote: With the dark Theme on the Forum you can't see the two lines that separate the post from the signature.

Maybe make them white in the dark theme will fix.

You can't see them because they aren't there Wink
(they haven't been coded)

Can be fixed by adding:

Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}

May as well fix the 2 line bug when tweaking this (there's only supposed to be 1 line not 2)

So change this:
Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}

To this:

Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}
.post_content .signature.scaleimages {
    border-top: none !important;
}

How the above code will look:



Spoiler :
[Image: FL_Light.png]
[Image: FL_Dark.png]

Minus the signature edit as I'm forcing a max height on signatures with:
Code:
.post_content .signature .scaleimages img, .post_content .signature img {max-height: 150px;}
.post_content .signature {max-height: 200px; overflow: auto;}
.post_content .signature.scaleimages {overflow: hidden;}





RE: Signature Lines on the Dark Theme - Denn1s - 11-10-2019

(11-10-2019, 05:54 PM)RIC0H Wrote:
(11-10-2019, 01:26 PM)Denn1s Wrote: With the dark Theme on the Forum you can't see the two lines that separate the post from the signature.

Maybe make them white in the dark theme will fix.

You can't see them because they aren't there Wink
(they haven't been coded)

Can be fixed by adding:

Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}

May as well fix the 2 line bug when tweaking this (there's only supposed to be 1 line not 2)

So change this:
Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}

To this:

Code:
.post_content .signature {
    border-top: 1px dotted #ddd;
}
.post_content .signature.scaleimages {
    border-top: none !important;
}

How the above code will look:



Spoiler :
[Image: FL_Light.png]
[Image: FL_Dark.png]

Minus the signature edit as I'm forcing a max height on signatures with:
Code:
.post_content .signature .scaleimages img, .post_content .signature img {max-height: 150px;}
.post_content .signature {max-height: 200px; overflow: auto;}
.post_content .signature.scaleimages {overflow: hidden;}



Oh, thanks for your answer, but I'm a bit confused right now on what to do with the code.  Bigeyes


RE: Signature Lines on the Dark Theme - RIC0H - 11-11-2019

(11-10-2019, 09:20 PM)Denn1s Wrote: Oh, thanks for your answer, but I'm a bit confused right now on what to do with the code.  Bigeyes

Well 'you' do nothing with it, it's for the devs to add it to the website stylesheet.


RE: Signature Lines on the Dark Theme - Edned - 05-17-2020

Issue has been addressed.

Closed.