this post was submitted on 11 Jun 2023
41 points (100.0% liked)

Haupteingang

3692 readers
4 users here now

Die Standard-Community von feddit.de

In dieser Community geht es ausschließlich um alles rund um die Instanz!

Hast du Fragen? !fragfeddit@feddit.de

matrix chat: !feddit:tilde.fun

founded 3 years ago
MODERATORS
 

Generisches "App nix mehr, Reddit ist ein Sell-Out, etc pp", und hab nachdem ich mich hier registriert habe echt wohl gefühlt. Wollte das hier nur kurz niederschreiben :)

you are viewing a single comment's thread
view the rest of the comments
[–] geeiamback@feddit.de 3 points 1 year ago (2 children)

Gibt es hier auch einen "kompakt Modus" wie das alte Reddit Layout? Im gleichen Browserfenster werden auf Reddit 7 (einhalb) Posts angezeigt, hier aber nur 3.

[–] Talibu@feddit.de 3 points 1 year ago* (last edited 1 year ago)

Ich hab mal angefangen ein tampermonkey script zu schreiben. Das ist natürlich nicht besonders stabil weil sich die style namen jederzeit ändern können.

// ==UserScript==
// @name        Feddit
// @version     1
// @description bla
// @match       https://feddit.de/
// @grant       GM_addStyle
// @run-at      document-body
// ==/UserScript==

GM_addStyle (`
 @media (min-width:1200px) {
 .container,
 .container-lg,
 .container-md,
 .container-sm,
 .container-xl {
  max-width:95%
 }
}
.col-md-4 {
  flex:0 0 25%;
  max-width:25%
}
.col-md-8 {
  flex:0 0 70%;
  max-width:70%
}
.my-3 {
  margin-bottom:0.1rem!important;
  margin-top:0.1rem!important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom:0rem;
}
.img-icon {
  width: 1rem;
  height: 1rem;
}
`);

Geht irgendwie 8/10 mal korrekt und wird 2/10 mal einfach vom browser ignoriert :D Hat jemand mehr Ahnung?

load more comments (1 replies)