@DownPW it’s possible, yes, but you may inadvertently end up targeting other elements using the same class which of course isn’t desired.
Can you provide a link in DM for me to review?
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.
.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) :
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 :
@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 ?
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
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
@phenomlab Great !! Thanks you very much:)
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 :
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:)
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;
}
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 ?
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:
@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:
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
@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.
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
@DownPW does it work if you change it to
Font Awesome 5 Free
? Might need to access your site directly to test this as it works for mine and should also work for you.
One last thing you can try is adding the below into the CSS class - sometimes needed as the FA5 free icons are solid only, therefore may require
font-weight: 900;
Let me know how you get on
Hi friend, the code looks great.
Can I post it on my site as well?
And how can one know the path of subject assessments?
I’m talking about this code: https://sudonix.com/post/1809