@baris Awesome, thank you!
erkki70
Posts
-
[manual] Build a custom header in Harmony -
[manual] Build a custom header in Harmony@brazzerstop Thank you for the pointer, I'll check it out!
And thank you for your awesome and very useful contributions, easy and comprehensive, well done! -
[manual] Build a custom header in HarmonyThis is remarkable and so useful, thanks a lot for for sharing!
@baris Is it ok to use the code below (I mean is it permitted?) in custom html and javascript to enable the tooltips on the icons as implemented here?
Thanks in advance!
Html<a class="btn-ghost p-2" href="#" rel="noreferrer noopener" data-bs-toggle="tooltip" data-bs-placement="bottom" aria-label="Twitter" data-bs-original-title="Twitter"><i style="color: #1DA1F2;" class="fa fa-2x fa-twitter-square"></i></a>
Javascript
if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', prepareFooter); } else { prepareFooter(); } function prepareFooter() { $('[data-widget-area="brand-header"] [data-bs-toggle="tooltip"]').tooltip({ trigger: 'hover' }); $(document).ready(function () { app.coldLoad(); }); }
-
3.0.0 Bug Report Thread@baris said in 3.0.0 Bug Report Thread:
@erkki70 if you want to bring the header back you can use custom css.
.page-user-chats .brand-container { display: block; }
You will have to modify some of the css for the chat page though as it is designed to be height: 100% to take up all the available space. The
#content
element is height: 100% which will not play nice if you display the header element above it.Thanks for your help!
-
3.0.0 Bug Report Thread@baris May I ask why this is so?
To me, it feels inconsistent with the other routes.
The issue I'm trying to solve is, without the "Home" which isn't a default route if I'm not mistaken, all the page elements, including the menus are moved up and the top ones rendered outside the viewport so it definitely looks broken.
Any pointer to circumvent this (custom css?) is highly appreciated, thanks! -
3.0.0 Bug Report ThreadDear NodeBB Team,
I noticed that the Chats route doesn't display the top menu unlike the Notifications one in v3.2.1 and also v3.2.2.
This is easily replicable here too when navigating to:
https://community.nodebb.org/user/"insertyourusernamehere"/chats
This might be intended or should I create a Github issue?
Thanks in advance! -
Upgrade from v1.12.2 to v1.13.2 fails because of bootswatch dependency@PitaJ How embarrassing It didn't even come to my mind but now that I could "do the right thing" and re-install, the issue is indeed gone and I could update normally.
Thanks for your help! -
Upgrade from v1.12.2 to v1.13.2 fails because of bootswatch dependencyAm I really the only one with this issue??!!??
-
Upgrade from v1.12.2 to v1.13.2 fails because of bootswatch dependencyHi all,
Running ./nodebb upgrade I get the following:
Dependencies outdated or not yet installed. Installing them now... npm ERR! code 128 npm ERR! Command failed: git clone --mirror -q git://github.com/thomaspark/bootswatch.git /root/.npm/_cacache/tmp/git-clone-969f95f2/.git npm ERR! fatal: could not create leading directories of '/root/.npm/_cacache/tmp/git-clone-969f95f2/.git' npm ERR!
I'm aware of the following issue and did try the suggested workaround in this comment: https://github.com/NodeBB/NodeBB/issues/7967#issuecomment-541572134
To no avail.
So the hash doesn't work for me despite https://github.com/thomaspark/bootswatch/pull/916#issuecomment-540655426
Is there a way to circumvent this and upgrade to the latest?
Any pointers highly appreciated, thanks in advance!
-
Login redirect and logout dont work after upgrade ?Same issue with the Lavender theme
Any pointers to solve this issue very much appreciated, thanks!