Technical Issues
#21
I don't reliably get alerts anymore, and haven't for some time (I keep finding quote replies to my post of which I was never notified). My settings are unchanged (alerts on for everything).
#22
(06-29-2023, 03:49 AM)Hamamelis Wrote: I don't reliably get alerts anymore, and haven't for some time (I keep finding quote replies to my post of which I was never notified). My settings are unchanged (alerts on for everything).

Guest posts don't alert. Is that it?
#23
Most likely. I am retarded, apologies.
#24
I like the newspaper theme, but I don't like when too little content gets stretched across columns. Look at the bottom row of this screenshot to see what I mean:

[Image: https://i.ibb.co/MnzFdX3/one.png]

I made a css/javascript workaround to fix this. In the newspaper css theme, add these to .post_body:
Code:
    column-fill: auto;
    max-height: 50ch;

And in threads.js, add the function adjustMaxHeight and its function call. It reverts the two css rules in the case that the content overflows. 
Code:
var Thread = {
    init: function()
    {
        $(function(){
            Thread.quickEdit();
            Thread.initQuickReply();
            Thread.initMultiQuote();
            Thread.adjustMaxHeight();

            // Set spinner image
            $('#quickreply_spinner img').attr('src', spinner_image);
        });
    },
    adjustMaxHeight: function()
    {
        var columns = document.querySelectorAll('.post_body');
        function checkOverflow(el){
           var curOverflow = el.style.overflow;
            if ( !curOverflow || curOverflow === "visible" )
                el.style.overflow = "hidden";
            var isOverflowing = el.clientWidth < el.scrollWidth || el.clientHeight < el.scrollHeight;
            el.style.overflow = curOverflow;
            return isOverflowing;
        }
        columns.forEach(function(column) {
            if (checkOverflow(column)) {
                column.style.maxHeight = 'none';
                column.style.columnFill = 'balance';
                console.log("exceeded");
            }
        });
    },


This is what it look like. Compare this to the above example:

[Image: https://i.ibb.co/9npLL2S/two.png]



I also think that justified text looks bad. Here is what it looks like without justified text. Compare this screenshot to the previous:

[Image: https://i.ibb.co/wBv2hFp/four.png]
#25
(08-01-2023, 08:04 PM)kythustra Wrote: [Image: https://i.ibb.co/wBv2hFp/four.png]

This looks quite neat and works as its own serious option for how to look at the site. I would like to see this added as a proper option, and would do so myself right now if I knew how. Thanks for the contribution. I'll show chud.
#26
I created a new color scheme that also uses the auto filled columns. Any thoughts? 

[Image: https://i.ibb.co/crr1DxH/theme.png]
[Image: https://i.ibb.co/3NdmsDR/theme3.png]
[Image: https://i.ibb.co/Hq9QN8V/theme4.png]
#27
I'd use that for a while. I think we need more colour options. What I'd really like right now is a dark one sort of like Lainchan.
#28
It looks good though I would personally make the backgrounds darker. I'd like a theme that was both dark and used the serif font.

The newspaper theme also needs a fix for YouTube embeds.
#29
Cindy theme is good; imo it was better with blue links.
#30
(08-01-2023, 08:04 PM)kythustra Wrote: I like the newspaper theme, but I don't like when too little content gets stretched across columns. Look at the bottom row of this screenshot to see what I mean:

Thank you so much for these tweaks, from the bottom of my heart. Am a bit "out of it" at the moment but will augment site to match as soon as my head clears up
#31
(08-10-2023, 10:57 AM)Chud Wrote:
(08-01-2023, 08:04 PM)kythustra Wrote: I like the newspaper theme, but I don't like when too little content gets stretched across columns. Look at the bottom row of this screenshot to see what I mean:

Thank you so much for these tweaks, from the bottom of my heart. Am a bit "out of it" at the moment but will augment site to match as soon as my head clears up

Sure thing. I don’t think it would break anything else, but I’m not super familiar with the code base. Hope you feel better soon.
#32
Certain posts have black text over the dark background in Cindy mode.
#33
(08-13-2023, 10:28 AM)kythustra Wrote: Sure thing. I don’t think it would break anything else, but I’m not super familiar with the code base. Hope you feel better soon.

I usually pride myself on my punctuality.
#34
Are new registrations going to be disabled for long?
#35
(09-09-2023, 07:16 PM)Bimbo Slut Wrote: Are new registrations going to be disabled for long?

If you want this username don't even bother trying.
#36
Ok Niccolo, no fun allowed. Just wanted access to the chat but I guess I can choose something else.
#37
(09-10-2023, 02:02 AM)Guest Wrote: Ok Niccolo, no fun allowed. Just wanted access to the chat but I guess I can choose something else.

Thank you. And you should be able to register in a couple of days or so. Sorry for the inconvenience.
#38
Shitbox isn’t working for me, for some reason.
#39
(09-27-2023, 07:16 PM)The Green Groyper Wrote: Shitbox isn’t working for me, for some reason.

Isn't working?
#40
(09-28-2023, 03:20 AM)anthony Wrote:
(09-27-2023, 07:16 PM)The Green Groyper Wrote: Shitbox isn’t working for me, for some reason.

Isn't working?

It is now, but it wasn't showing up on my screen for a while the other day.



[-]
Quick Reply
Message
Type your reply to this message here.




Users browsing this thread: 1 Guest(s)