raltsm4k avatar

raltsm4k

@raltsm4k@kbin.social
raltsm4k,
raltsm4k avatar

I just pushed an update that lets you switch between date and alphabetical sorting :)

raltsm4k, (edited )
raltsm4k avatar

Weird, that doesn't happen on my end, would you mind sharing your browser and any other styles/scripts you're running?
edit: Oh, it looks like you're using the other subscription panel script that was posted - mine is the one linked from this post.

raltsm4k,
raltsm4k avatar

That'd be appreciated! I actually just finished coding a search feature a few minutes ago but the other changes I'd be happy to implement.

raltsm4k,
raltsm4k avatar

@McBinary @yGns @cultsuperstar
Just pushed an update that fixes this!

raltsm4k,
raltsm4k avatar

Added a cache feature in the latest version, hope it helps :)

raltsm4k,
raltsm4k avatar

@minnieo @0rito
Added a collapse button in the newest version!

raltsm4k,
raltsm4k avatar

@Crayon8027
Pushed an update that fixes this - though I plan to add a settings menu soon that would let you choose to have it floating or scroll with the page, among other things.

raltsm4k, (edited )
raltsm4k avatar

Made a script that does it, here's a link if anyone's interested: https://greasyfork.org/en/scripts/469121-floating-subs-list
Note that it'll only work on screens wider than 1136px.

https://i.imgur.com/4skgYVk.png

raltsm4k,
raltsm4k avatar

Huh, are you running version 0.2 of the script? I pushed the sorting update not too long ago and I don't currently have it configured to auto-update. If you are up to date, would you mind telling me your browser and which monkey extension you're using?

List of reputable vendors

I've compiled a quick list here of reputable and generally well-regarded tea vendors. I can’t vouch for all of these personally but have done my best to research each thoroughly. The list is pretty brief at the moment but of course open to expansion. Feel free to leave a comment if you've had a positive experience with a...

raltsm4k,
raltsm4k avatar

Paris is my favorite from them too! I remember their Dragon Pearl Jasmine being great when I tried it, as someone who also doesn't drink as much green tea. The Victorian London Fog has been on my to-try list for a while since I see it raved about so much.

That's a good point as well, I'll edit the post to be more clear - just wanted to make it clear that it's available in grocery stores as well as online.

raltsm4k,
raltsm4k avatar

That's great to hear, anything in particular you'd recommend from them?

raltsm4k,
raltsm4k avatar

I'll be sure to update the post with that info soon.

OC kbin enhancement script: Userscript to collapse comments and add domains to names (greasyfork.org)

Just a quick and dirty userscript to add some features I feel are super important. I'll probably look into creating some real PRs, but I figure the devs are probably in "put out fires" mode right now....

raltsm4k,
raltsm4k avatar

The script adds toggles for both features under the settings area so you can just toggle off comment collapsing if you already have a script that does that.

raltsm4k,
raltsm4k avatar

That was a fun read, thanks for sharing. I'm not so well versed in tea history so what I found most interesting was the little side article about how different tea preparation looked in that time period! It's unfortunate that that matcha-style method of preparation (if I understand it correctly) mainly fell out of favor in China early on due to production constraints. Lucky for us that it found a home somewhere else before doing so.

OC I'm working on kleanbin, a "quality of life" theme that makes the kbin experience visually cleaner and clearer. (userstyles.world)

While browsing the site these past few days I noticed that some important-seeming elements like the pinned post indicator, post type indicators, and so on often seemed to get lost in the rest of the page. I made this style mostly for myself to fix those issues and a handful of other design gripes I had, but I thought I'd share...

raltsm4k,
raltsm4k avatar

It's out of the scope of a userstyle but I made a quick script for it, hope it helps! https://greasyfork.org/en/scripts/468748-kbin-subscriptions-button
https://greasyfork.s3.us-east-2.amazonaws.com/npiraivcdu9crgmxamw7h7y81gqx
Let me know if you run into any issues with it.

Welcome to /m/tea!

I created this magazine as a space for all tea lovers, as well as those new to the hobby, to discuss anything they wish about the drink, from growing to preparation to consumption. Whether you want to spread the word about a favorite vendor or grower of yours, post a picture of your tea stash, or just share what you're drinking...

raltsm4k,
raltsm4k avatar

That's a great idea, I threw up a post with a brief list. Feel free to suggest some additional vendors to include if you'd like!

raltsm4k,
raltsm4k avatar

Surprisingly didn't see a magazine for it yet so I made https://kbin.social/m/tea for my fellow leaf juice enjoyers. :)

raltsm4k,
raltsm4k avatar

/m/kbinStyles seems like what you'd want, it's not super populated but I'm sure there's some knowledgeable people who could help you out. If you don't find help there you can also feel free to message me since I have some CSS knowledge.

raltsm4k,
raltsm4k avatar

Not sure about JS, but from some cursory experimentation there don't seem to be any limitations on what can be done with the custom CSS. It seems to just load whatever CSS code you put there into a style block at the top of the finalized page source, so anything goes really. I wouldn't be surprised to see limitations on this in the future since this could obviously lead to some annoyances from making the entire page invisible to overlaying a seizure gif onto everything.

As far as documentation I don't know of anything official, but /m/kbinStyles seems like your best bet for asking questions, alongside using inspect element to identify the elements you want to style while consulting a CSS reference like w3schools. Also iirc, browser extensions like Stylus let you create custom themes for sites while previewing them on the fly which would be pretty helpful here. As long as you're not trying to do anything crazy complex you could probably learn what you need to style a magazine in an afternoon!

raltsm4k,
raltsm4k avatar

I took a look at the code snippet you posted in that thread and it works when I apply it to my magazine, although it looks like the kbin-it theme overrides the vote colors, so if you happen to be using that or some other theme you'll have to slap on an !important tag to force it to use your colors. Like so:

.vote .active.vote__up button  {
  color: #ff8f65 !important;
}

.vote .active.vote__down button  {
  color: #9494ff !important;
}

Also, from reading over that thread, you mention that both the vote icons still appear white for you, do you mean for the colors to apply to votes that haven't been clicked on too? If so just removing ".active" from both of the style blocks should do the trick. As-is the color will only show if you actually click upvote or downvote, otherwise they'll both be white.

raltsm4k,
raltsm4k avatar

Seems like you can! It's a little hacky but the following code:

    .vote__up .fa-arrow-up, .vote__down .fa-arrow-down {
        content: none;
    }
    
    .vote__up .fa-arrow-up::before, .vote__down .fa-arrow-down::before {
        content: '';
        margin-bottom: -2px;
        width: 16px;
        height: 16px;
        background-size: cover;
        display: block;
        filter: invert(0.5);
    }
    .vote__up .fa-arrow-up::before { background-image: url(https://img.icons8.com/?size=512&id=10271&format=png); }
    .vote__up .fa-arrow-down::before { background-image: url(https://img.icons8.com/?size=512&id=10267&format=png); }
    
    .active.vote__up .fa-arrow-up::before { filter: invert(65%) sepia(6%) saturate(4648%) hue-rotate(326deg) brightness(102%) contrast(100%); }
    .active.vote__down .fa-arrow-down::before { filter: invert(54%) sepia(91%) saturate(1028%) hue-rotate(206deg) brightness(101%) contrast(102%); }

Will give you a result like this: https://imgur.com/gBTQJ1G

Keep in mind this'll only appear correct if the icons you use are all black in color, since it applies a filter on top of them to get to the correct color for active/inactive. To get around that you could make two sets of up/downvote icons with the appropriate coloring, one for active and one for inactive - just remove all the lines that say 'filter' and in the bottom two style blocks put background-image: url(link to your active up/downvote icon); instead.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • mdbf
  • ngwrru68w68
  • modclub
  • magazineikmin
  • thenastyranch
  • rosin
  • Durango
  • InstantRegret
  • Youngstown
  • slotface
  • khanakhh
  • kavyap
  • DreamBathrooms
  • provamag3
  • GTA5RPClips
  • osvaldo12
  • tester
  • cisconetworking
  • Leos
  • everett
  • tacticalgear
  • ethstaker
  • normalnudes
  • anitta
  • megavids
  • cubers
  • lostlight
  • All magazines