• Guillaume Tanneux
    Guillaume Tanneux
    2020-02-22

    Salut Emmanuel,

    Je viens de rejoindre la communauté et ne sais pas encore très bien comment ça marche.

    Je découvre tes publications et il me semble que nous avons des vues communes. Comment rentrerons en contact ?

    0
  • Emmanuel Florac
    Emmanuel Florac
    2020-02-23

    @Guillaume Tanneux et bien tu peux me suivre, tu peux suivre les tags qui t'intéressent. Il y a aussi des extensions Firefox qui peuvent améliorer ton "expérience utilisateur" comme on dit:
    Diaspora optimizer extension:
    https://addons.mozilla.org/en-US/firefox/addon/diaspora-optimizer/

    Code:
    https://gitlab.com/olealbers/diasporaoptimizer

    Si tu préfères une vue plus compacte en 2 ou 3 colonnes (à la façon de Google plus) il y a une bidouille qui utilise l'extension Stylus:

    https://addons.mozilla.org/en-US/firefox/addon/styl-us/

    Site:
    https://add0n.com/stylus.html

    Dans l'extension Stylus, pour ton pod il faut définir un CSS, voici le mien (vue 3 colonnes; posts dépliés, mais commentaires repliés; menu des notifications beaucoup plus long):

    /* ===== TALLER NOTIFICATIONS DROPDOWN ===== Doc Edward Morbius */
    .navbar.navbar-fixed-top .nav-badges .dropdown-menu .notifications {
        max-height: calc(85vh - 4em);
        min-height: 8em;
    }
    
    /* ===== EXPAND ALL POSTS ===== Gible Fog */
    .expander {
        display: none;
    }
    .stream-element .collapsible,
    .stream-element .collapsible.collapsed {
        max-height: 1000px;
        overflow-y: auto!important;
        height: unset!important;
    }
    
    /* ===== TRIPLE COLUMN STREAM ===== Filip H.F. "FiXato" Slagter */
    /* For two columns, change 33% to 50% */
    /* To adjust sidebar size, alter 15%-85% split */
    /* To remove sidebar, use "display:none" instead of width:0% */
    /* #main-stream .stream-element {
        float: left;
        width: calc(33% - 20px);
        margin-right: 20px;
    } */
    
    #main-stream > div {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
      grid-gap: 0.5em;
    }
    
    body > .container-fluid > .row > .col-md-3 {
        width: 15%;
    }
    body > .container-fluid > .row > .col-md-9 {
        width: 85%;
    }
    .container-fluid {
        max-width: none;
    }
    
    /* ===== DOUBLE COLUMN COMMENTS ===== Isaac Ji Kuo */
    /* To adjust post width, alter 40%-60% split */
    /* For three columns, change 50% to 33% and column-count to 3 */
    /* #single-post-content.col-md-6.single-post-content {
        width: 40%;
    }
    #single-post-interactions.col-md-6.single-post-interactions {
        width: 60%;
        column-count: 2;
        column-width: calc(50% - 5px);
        column-gap: 5px;
    }
    .comment.media {
        break-inside: avoid;
    } */
    
    0
  • Guillaume Tanneux
    Guillaume Tanneux
    2020-02-23

    Merci pour toutes ces informations.

    0