onyx

joined 1 year ago
[–] [email protected] 2 points 1 year ago

@Cat Currently these settings are stored in your cookies. There has been talk about changing this, so that they become account based instead

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

Yea the buttons are new and there are some issues indeed.

Im working on this, along with @fearout who's helping to improve the design/look.

The buttons on/off state should be easy to visually understand, so a white off color doesnt make that much sense. Thatll be changed for sure.

Ill also look into making it more compact.

[–] [email protected] 2 points 1 year ago (1 children)

@zlatiah always have a ton of kbin tabs open, never crashed on me.
Are you running any scripts or extensions for kbin ?

[–] [email protected] 1 points 1 year ago

@hariette

@lavender

Yea I remember you wanted to call the app Kmoon. I spot an opportunity here to add a slightly curved string to that bow in the icon, to make a half moon shape. Could be done with a fading shadow/edge to blend it in.

[–] [email protected] 2 points 1 year ago

Nice, a true SLTP

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

This has been discussed in the kbin matrix channels in the past.
An option to see the default or custom magazine theme is something that will definitely be added.

You can however do some cool stuff with it! (best viewed on a darker theme, or tokyo night :) )

[–] [email protected] 2 points 1 year ago

Thanks everyone for the nice comments!

I've updated the css code to add fixes for the recent updates and several other improvements.

Changelog & versioning added in OP.

[–] [email protected] 0 points 1 year ago (1 children)

@melroy Melroy mówi po polsku. to musi być błąd w matrixie

[–] [email protected] 1 points 1 year ago (1 children)

@knoland
Hey can you give a link to that page, thanks

[–] [email protected] 23 points 1 year ago
[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Submitted: 2023-06-19
Received: 2023-07-06

[–] [email protected] 10 points 1 year ago* (last edited 1 year ago) (1 children)

You guys may want to check /m/kbinStyles

There are some userscripts in there you may like.

Apart from that, many pull requests are waiting to be added to the project that fix & improve the user side of things.

 

This css will transform the look of your magazine to be glassy-like!

Demo

Usage

  • To be used by magazine owners to style their magazines. Add the CSS to Appearance > CSS.
  • Modify the background: url() to use any image you want. Do not use quotation marks in the custom CSS -> This is currently broken.

Notes

  • Doesn't play well with light themes (you could add specific styling to solve this)
  • Expect some funkiness, the property backdrop-filter does weird things to layers/z-index for some reason. ~~This is the reason why the options bar appears to not have that glassy look. The dropdown menu's would get rendered under other surrounding elements.~~ Fixed in v1.1
  • Have fun !

CSS

body::before {
  height: 100%;
  background: url(https://user-images.githubusercontent.com/20504972/245808671-5382aab6-d16b-4e9a-8536-f79ef0f9f7fd.jpg);
  background-position-x: center;
  background-position-y: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  filter: opacity(.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: url();
}
#content,
#footer,
#options,
#sidebar {
  position: relative
}
#middle {
  background: transparent
}
#middle .kbin-container {
  margin-top: 0!important;
  padding-top: .5rem
}
#comment-add.section,
#footer,
#header .kbin-container,
#options,
#sidebar .options,
#sidebar .section,
.badge-add,
.ban-add,
.comments .section,
.entry.section,
.moderator-add,
.page-entry-create .section,
.page-magazine-panel .section,
.page-people .users .section,
.page-post-front .options:not(#main .options),
.page-post-front .section,
.section--muted,
.section.theme {
  -webkit-backdrop-filter: blur(20px) brightness(1.25);
  backdrop-filter: blur(20px) brightness(1.25)
}
#header {
  background-color: transparent
}
#header .kbin-container {
  border-radius: 0 0 .5rem .5rem;
  background-color: hsla(0,0%,100%,.07)
}
#footer,
.magazine.section,
.options,
.page-magazine-panel .section,
.section:not(.section.users) {
  background-color: hsla(0,0%,100%,.05)
}
#comment-add.section,
#content .section:not(.page-people #content .section),
#sidebar .section,
.comments .section,
.entry--single,
.magazine.section,
.options--top,
.page-entry-front #settings,
.page-magazine-stats #content,
.page-magazine-theme #content,
.section--top,
.section-top,
.users .section {
  border: 1px solid hsla(0,0%,100%,.2)!important
}

Changelog

v1.0 - 2023-06-15

  • Release

v1.1 - 2023-07-08

  • Sidebar sections added to border styling.
  • Top options is now correctly styled.
  • Background of middle section is now set to be transparent, a fix for last kbin update.
view more: next ›