Skip to content

[NODEBB] Help for my custom CSS

Solved Customisation
  • @downpw yes, I’ve done the same on sudonix but not in front of a pc presently. If you switch to dark mode on this platform, you’ll see the changes i made to the alert message.

  • @phenomlab

    I see how to change background color, text color, border color but not the progress bar with transition value.

    It’s too fast to see the code on console

    I see this in “element style” :

    transition: width 5450ms linear 0s, background-color 5450ms ease-in 0s;
    

    But I don’t no what to do with this

  • @downpw Seems like it’s contained in this block

    62ca02ad-f55a-42bb-84b5-0d38b3d765a8-image.png

    <div id="alert_button_1643376464937" class="alert alert-dismissable alert-success clearfix animate" component="toaster/toast" timeoutid="172" style="transition: width 5450ms linear 0s, background-color 5450ms ease-in 0s;">
    	<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
    	<strong>Welcome Back  phenomlab!</strong>
    	<p>You have successfully logged in</p>	
    </div>
    

    For info, you can actually pause the execution of Javascript as follows

    1. Open Developer tools, Go to Sources tab and keep it ready

    2. Now, go back and perform the actions on the App to get it to the state where it needs to be frozen.

    3. Click on the ‘Pause Script Execution’ button (first button in the list of buttons on the right corner of Sources tab) to pause the page.

    This will force the debugger to pause the execution, meaning you’ll see the below

    41402efc-4993-401d-af1a-9f5a21d06057-image.png

    This will then allow you to expose the elements you need 🙂

  • @phenomlab

    Yeah I test that and I find and modify these code :

    .alert-window .alert {
    
        background-color: black;
        color: aqua;
    }
    
    .alert-window .alert.alert-success {
        color: aqua;
        border-color: aqua;
    }
    
    .alert-window .alert.animate.alert-success::before {
        background-color: red !important;
    }
    
    .alert-window .alert.animate::before {
        width: calc(100% + 50px);
    }
    

    For example, what i want here are just have animate progress bar on red but doesn’t work, she’s black.

    I close the topic on nodebb communauty. no one respond

  • @downpw said in [NODEBB] Help for my custom CSS:

    no one respond
    Only me 😄

    I’ll have a look this weekend to see if I can identify the js class but I do think this is based off another CSS value and an alpha rgba used as an overlay.

  • @phenomlab

    .alert-window .alert.animate.alert-success::before {
        background-color: red !important;
    }
    

    I have test with white background and It seems to work.
    But the red come at the middle/end (maybe a settings CSS transition) :

    alt text

    But with black background, the red is here (we see it at the end) we see nothing at all.

    Seems the background overall the animate effect :

    alt text

  • @downpw I’ve a feeling this night be related to z-index. Try setting with a high value, as this will force the animation to the front.

  • possible to delete border radius at the bottom left and right ?

    9355af8d-d9bf-40d6-abeb-84bc4e95387e-image.png

    Just border radius at the top of the first div and at the last Div bottom ?
    I would like a entirely bloc with four border radius

    Possible ?
    I play with .categories>li, .category>ul>li but it’s not what I want

    I would like to move chat bubbles and WYSIWYG at the left bottom if it’s possible, I tetst with this bit it’s not perfect :

    .taskbar .navbar-nav {
        padding-right: 1840px;
        padding-bottom: 15px;
        position: relative;
        bottom: 25px !important;
    }
    

    Thanks for your help in advance Mark 🙂

  • @DownPW Definitely possible, yes. This will work

    .categories>li, .category>ul>li {
        border-radius: 0px;
    }
    .categories>li:first-of-type {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    .categories>li:last-of-type {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    

    Looks like this

    80e68c63-7289-4153-aac8-52a92816074a-image.png

    You could then close the gaps between if you really wanted it as one block

    .categories>li, .category>ul>li {
        border: none;
        margin-top: 0px;
        background: #F5F5F5;
    }
    

    That gives you

    bdb893e3-0a37-44f9-9715-0c26b5ca2146-image.png

  • @phenomlab Great !! Thanks you very much:)

    @phenomlab

    EDIT: Possible to do the same thing on Unread page and Recent page ?

  • Other two things 🙂

    ONE

    I would like to move chat bubbles and WYSIWYG at the left bottom if it’s possible, I test with this bit it’s not perfect :

    .taskbar .navbar-nav {
    padding-right: 1840px;
    padding-bottom: 15px;
    position: relative;
    bottom: 25px !important;
    }
    Thanks for your help in advance Mark 🙂

    TWO

    I have this problem :
    alt text

    The chat windows stays in the background even when I click on it.

    I have zindex on composer and footbar

  • @DownPW said in [NODEBB] Help for my custom CSS:

    @phenomlab Great !! Thanks you very much:)

    @phenomlab

    EDIT: Possible to do the same thing on Unread page and Recent page ?

    This should work

    .category-item:first-of-type {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    .category-item:last-of-type {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    
  • @DownPW

    The chat windows stays in the background even when I click on it.

    I have zindex on composer and footbar

    This should fix that

    .chat-modal {
        z-index: 5000;
    }
    
  • @DownPW said in [NODEBB] Help for my custom CSS:

    I would like to move chat bubbles and WYSIWYG at the left bottom if it’s possible, I test with this bit it’s not perfect :

    Can you elaborate a bit more on this in terms of what you are looking to do ?

  • @phenomlab

    chat-modal zindex and border for Unread & recent works !!!
    Thanks Mark 😉

    @phenomlab said in [NODEBB] Help for my custom CSS:

    @DownPW said in [NODEBB] Help for my custom CSS:

    I would like to move chat bubbles and WYSIWYG at the left bottom if it’s possible, I test with this bit it’s not perfect :

    Can you elaborate a bit more on this in terms of what you are looking to do ?

    Just these icons to put on the bottom left:

    f8974ecd-b25c-469e-a7ec-12477a99ad00-image.png

  • @DownPW Try this

    .taskbar.navbar-fixed-bottom {
        right: auto;
        left: 0;
    }
    
  • @phenomlab said in [NODEBB] Help for my custom CSS:

    @DownPW Try this

    .taskbar.navbar-fixed-bottom {
        right: auto;
        left: 0;
    }
    

    Much cleaner than what I had found:

    .taskbar .navbar-nav {
        padding-right: 1840px;
        padding-bottom: 15px;
        position: relative;
        bottom: 25px !important;
    }
    

    I had not found this property by inspecting the code!! I wonder where you found that one 🙂

    I just added left and bottom space :

    .taskbar.navbar-fixed-bottom {
        right: auto;
        left: 10px;
        bottom: 25px;
    }
    

    RESULT:
    111bb445-d4ca-401e-a620-692b23e37f62-image.png

    Much better with footbar !
    This also allows you to leave the right side quiet already occupied by the paging block !

    Thanks my friend 😉

  • How to add icon on categories span time ?

    I will test this code for add Paragraph FA icon for example :

    [component="topic/header"] span.timeago:before {
        content: "\f1dd";
        margin-right: 5px;
        margin-left: 5px;
    }
    

    Result 😞

    311ca192-524a-4c10-bcb6-02e0381b6900-image.png

  • @DownPW that won’t work unless you add a font family to go with it - any Unicode characters typically require an associated font family. Try adding

    font-family: "font awesome 5 free"; to the CSS you already have.

  • @phenomlab

    I have test this :

    [component="topic/header"] span.timeago:before {
        content: "\f1c0";
        font-family: "font awesome 5 free";
        margin-right: 5px;
        margin-left: 5px;
        color: black;
    }
    

    But doesn’t work

    8ed44f06-ca16-4a7c-9a7b-e46a9b6fa339-image.png


Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

  • 3 Votes
    4 Posts
    186 Views

    @crazycells said in CSS code customization for the link preview plugin:

    does OGProxy show the pdf previews as well?

    Not yet, but it could with a bit of additional code.

  • 5 Votes
    4 Posts
    500 Views

    @DownPW thanks. I forgot about that.

  • 2 Votes
    26 Posts
    1k Views

    @Panda said in Interesting Widget code, but can’t fetch API:

    How did you drop that widget into the post there?
    I hadnt seen this BSgenerator anywhere on sudonix site, do you use it somewhere already?

    Yes, here

    https://sudonix.org/topic/414/corporate-bullshit-generator?_=1687774393044

    It’s not a “post” or “topic” in the common sense. It is actually a page in it’s own right and leverages nodebb-plugin-custom-pages. This in turn creates a new “route” which behaves like a page, meaning it is then exposed for widgets.

    @Panda said in Interesting Widget code, but can’t fetch API:

    Also can you explain more what you mean by calling the code externally. In my API call example, how would I go about doing that?

    By this, I mean create all the required code in an external JS file that is reachable by the NodeBB instance - so, in “public” for example - or in my case /public/js. The widget then “calls” that file and because it runs outside of the scope of NodeBB, you just need to return the values to the widget.

    Hope this makes sense?

  • 2 Votes
    6 Posts
    260 Views

    @dave1904 I’d start by adding a console.log function to hookData so you can see what is being returned

    return hookData; console.log(hookData):
  • Heading text on NodeBB forum

    Solved Customisation
    27
    1 Votes
    27 Posts
    2k Views

    @mventures I’ve not done anything here.

  • NodeBB Footer

    Solved Customisation
    10
    1 Votes
    10 Posts
    979 Views

    @phenomlab said in NodeBB Footer:

    @jac and you. Hope all is well and you recover quickly

    Thanks pal 😁🤝🏻

  • 24 Votes
    112 Posts
    13k Views

    @DownPW as discussed in PM

    Seems to have been solved with the new JS code that you added allowing the version CSS file change!!

    Cache problem therefore with the JS of the Switcher theme

    Based on this, I will close this thread and reference
    https://sudonix.com/topic/207/nodebb-help-for-my-custom-css/27

  • CSS Help on my Flarum

    Solved Customisation
    5
    2 Votes
    5 Posts
    435 Views

    @mike-jones Yes, you’ll typically see this type of behaviour if there is another style that has higher priority in the sense that yours will be overridden. Using !important will override the higher preference, but should be used sparingly rather than everywhere.