• Browser
  • Mail
  • News
  • Community
  • About
Register Login
HomeBlogsForumThemesContributeSocial

Vivaldi

  • Browser
  • Mail
  • News
  • Community
  • About

Navigation

    • Home
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Community & Services
    3. Forum
    4. Vivaldi Forum mod

    Vivaldi Forum mod

    Forum
    76
    1.4k
    652.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • luetage
      L
      luetage Supporters Soprano
      last edited by

      @legobuilder26 Yeah, there’s more involved fixes in the background. Be patient.

      github ◊ vfm

      1 Reply Last reply Reply Quote 3
      • luetage
        L
        luetage Supporters Soprano
        last edited by

        @legobuilder26 It’s ok, it’s just that I’m obviously not using custom CSS to do this and the forum update broke code spread out over 4 files and introduced general bugs that I reported. E.g. try to open a header dropdown menu on a narrow window, or check out the spinning icon going into orbit when the chat dropdown notifications load. Well, the last one is actually kinda funny.

        github ◊ vfm

        hlehyaric
        H
        1 Reply Last reply
        Reply Quote 3
        • hlehyaric
          H
          hlehyaric @luetage
          last edited by

          @luetage said in Vivaldi Forum mod:

          Well, the last one is actually kinda funny.

          Yes, indeed it is. 🤣

          luetage
          L
          1 Reply Last reply
          Reply Quote 3
          • luetage
            L
            luetage Supporters Soprano @hlehyaric
            last edited by

            @hlehyaric Ok, let’s not report it 🛰️

            github ◊ vfm

            isak
            I
            1 Reply Last reply
            Reply Quote 2
            • guigirl
              G
              guigirl @luetage
              last edited by

              @luetage said in Vivaldi Forum mod:

              4.2 in some days.

              Oh. no. not. again.

              luetage
              L
              1 Reply Last reply
              Reply Quote 3
              • luetage
                L
                luetage Supporters Soprano @guigirl
                last edited by

                @guigirl I’m almost tempted to jump to version 42 directly to get this over with.

                Could someone send me a message please (no content required)? I’m fixing notification icons.

                github ◊ vfm

                ?
                hlehyaric
                H
                2 Replies Last reply
                Reply Quote 2
                • ?
                  A Former User @luetage
                  last edited by

                  @luetage hi

                  guigirl
                  G
                  1 Reply Last reply
                  Reply Quote 1
                  • guigirl
                    G
                    guigirl @A Former User
                    last edited by

                    @juanvase Message = PM, i suspect.

                    guigirl
                    G
                    1 Reply Last reply
                    Reply Quote 2
                    • hlehyaric
                      H
                      hlehyaric @luetage
                      last edited by

                      @luetage Done.

                      1 Reply Last reply Reply Quote 2
                      • guigirl
                        G
                        guigirl @guigirl
                        last edited by

                        @guigirl said in Vivaldi Forum mod:

                        Message = PM

                        https://www.youtube.com/watch?v=P75lkpL7aGk

                        1 Reply Last reply Reply Quote 0
                        • isak
                          I
                          isak Vivaldi Team @luetage
                          last edited by

                          @luetage said in Vivaldi Forum mod:

                          @hlehyaric Ok, let’s not report it 🛰️

                          side-eye-dog-suspicious-look.jpg

                          luetage
                          L
                          1 Reply Last reply
                          Reply Quote 3
                          • guigirl
                            G
                            guigirl
                            last edited by

                            Oh no! Someone official has discovered [one of] our top-secret haunts 😱 Quick, everyone... hide!

                            1 Reply Last reply Reply Quote 2
                            • luetage
                              L
                              luetage Supporters Soprano @isak
                              last edited by

                              @isak Oh no, you already fixed it. No more orbiting : / 🪐 [space sadness]

                              github ◊ vfm

                              1 Reply Last reply Reply Quote 3
                              • nomadic
                                N
                                nomadic Soprano
                                last edited by

                                Can someone reply to this thread and send me a forum message?

                                luetage
                                L
                                1 Reply Last reply
                                Reply Quote 0
                                • luetage
                                  L
                                  luetage Supporters Soprano @nomadic
                                  last edited by

                                  @nomadic check

                                  github ◊ vfm

                                  1 Reply Last reply Reply Quote 0
                                  • D
                                    dude99
                                    last edited by dude99

                                    AutoHideHeader.gif

                                    Alternate take on autohide Header (CSS mod), it hide everything except the V logo & notification section when you scroll down the page, mouseover the remaining section to reveal the whole header. You should disabled the extension autohide header mod for this to work properly:

                                    #header-menu {
                                         z-index: 1002;
                                    }
                                     main#panel:has(#submenu.isfixed) #header-menu:not(:focus-within):not(:hover) {
                                         visibility: hidden;
                                         opacity: .2;
                                         transition: visibility .2s, opacity .2s !important;
                                    }
                                     main#panel:has(#submenu.isfixed:hover) #header-menu {
                                        visibility: visible !important;
                                         opacity: 1 !important;
                                    }
                                     #header-menu:not(:focus-within):not(:hover) + #submenu.isfixed:not(:focus-within):not(:hover) {
                                        visibility: hidden;
                                         opacity: 0;
                                         transition: visibility .2s, opacity .2s;
                                    }
                                     #vlogo, #vivaldilogin, #panel:has(#vivaldi-header:is(:focus-within, :hover)) #submenu.isfixed {
                                         visibility: visible;
                                    }
                                    
                                    

                                    NOTE: Pls enable chrome://flags/#enable-experimental-web-platform-features for this code to work properly. 😉

                                    Sorry, I'm currently hiatus from updating any of my CSS mod until further notice...
                                    luetage
                                    L
                                    1 Reply Last reply
                                    Reply Quote 3
                                    • D
                                      dude99
                                      last edited by dude99

                                      NotificationAlert.gif

                                      Alert loop animation for notification CSS mod:

                                      #notif_dropdown .unread-count[data-content]:not([data-content=""]):not([data-content="0"]):after {
                                        animation: alert 3s steps(4) 0s both infinite;
                                      }
                                      @keyframes alert {
                                        0%,
                                        10% {
                                          transform: none;
                                        }
                                        5% {
                                          transform: scale(2) translateY(8px);
                                        }
                                      }
                                      
                                      

                                      AutoShrinkComposer.gif

                                      Ergonomic post composer, make it wider & auto shrink on mouseout, & bring the hide/show button to center:

                                      /* Composer */
                                      @media (min-width: 1199px) {
                                        html.composing .composer {
                                          left: 2%;
                                          width: 96%;
                                        }
                                      }
                                      
                                      .composer {
                                        background: inherit;
                                      }
                                      .taskbar[data-active="1"] {
                                        z-index: 99999;
                                        max-width: fit-content;
                                        left: calc(50% - 25px);
                                      }
                                      #emote-picker {
                                        z-index: 1050;
                                      }
                                      #body > .composer.resizable:not(.maximized) {
                                        transition: top 0.3s ease-out 0.2s;
                                      }
                                      #body > .composer.resizable:not(.maximized):hover {
                                        top: 6.5% !important;
                                        transition: 0.3s ease-out 0.2s;
                                      }
                                      
                                      .composer .title-container .title:not(:focus-within) {
                                        background: rgba(250, 250, 250, 0.6) !important;
                                      }
                                      .write,
                                      .preview {
                                        background: linear-gradient(rgba(70 0 0 / 7%), transparent) !important;
                                      }
                                      .category > ul > li:not(.unread) h2 a {
                                        opacity: 0.7;
                                      }
                                      
                                      

                                      EDIT 2: change .taskbar z-index to 99999 to float on top of .composer.

                                      EDIT: updated the z-index of composer related element to fix header overlay problem.

                                      Sorry, I'm currently hiatus from updating any of my CSS mod until further notice...
                                      1 Reply Last reply Reply Quote 6
                                      • D
                                        dude99
                                        last edited by

                                        I think this extension have broke the new updated header a bit when the page is on the top... The 2nd row of the header (after the v logo & notification) is missing.

                                        Sorry, I'm currently hiatus from updating any of my CSS mod until further notice...
                                        luetage
                                        L
                                        1 Reply Last reply
                                        Reply Quote 0
                                        • luetage
                                          L
                                          luetage Supporters Soprano @dude99
                                          last edited by

                                          @dude99 That’s on purpose. The first and second row are combined into one. The forum mod broke with the most recent forum update 2 days ago. A fix is on the way.

                                          github ◊ vfm

                                          D
                                          1 Reply Last reply
                                          Reply Quote 1
                                          • D
                                            dude99 @luetage
                                            last edited by

                                            @luetage OK. now I noticed it's more compact than the default thicc header... LOL

                                            Sorry, I'm currently hiatus from updating any of my CSS mod until further notice...
                                            1 Reply Last reply Reply Quote 1
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            • 1
                                            • 2
                                            • 60
                                            • 61
                                            • 62
                                            • 63
                                            • 64
                                            • 72
                                            • 73
                                            • 62 / 73
                                            • First post
                                              Last post

                                            Looks like your connection to Vivaldi Forum was lost, please wait while we try to reconnect.

                                            Copyright © Vivaldi Technologies™ — All rights reserved. Privacy Policy | Code of conduct | Terms of use | Vivaldi Status