Sidebarmenu
Offline
Sidebarmenu
Posted
Apr 2018
17
19:17
Latest version of sidebar menu 2.0.0
Event changes in all templates. Updated contrib event templates also.
Event changes in all templates. Updated contrib event templates also.
Offline
Re: Sidebarmenu
Posted
Apr 2018
19
14:39
hi, Sniper
beautiful extension
I'm testing your extension in localhost. but it is normal that in the extensions of entry is correct to see it?
Thank you.
beautiful extension

I'm testing your extension in localhost. but it is normal that in the extensions of entry is correct to see it?
Thank you.
Offline
Re: Sidebarmenu
Posted
Apr 2018
19
15:46
Until the ext is fully released the ext box wont have any thing in there as you also need the needed events for it.
Offline
Re: Sidebarmenu
Posted
Apr 2018
22
10:19
getting a gen error on board preferences - global settings in sidebar. Strange thing is, if I go there via name link then try that link it works. 

Code: Select all
General Error
Module not accessible
BACKTRACE
FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()
FILE: [ROOT]/includes/functions_module.php
LINE: 565
CALL: trigger_error()
FILE: [ROOT]/ucp.php
LINE: 394
CALL: p_master->load_active()
Offline
Re: Sidebarmenu
Posted
Apr 2018
25
14:52
Ready to test version 2.0.1
Change files, To Update: Disable, Delete data, Delete files, Copy new files over and Enable.
Change files, To Update: Disable, Delete data, Delete files, Copy new files over and Enable.
Offline
Re: Sidebarmenu
Posted
Apr 2018
25
17:09
css i use to animate the badge in mchat rooms but now i got in sidebar.
Code: Select all
.badge-new {
border: solid 1px #105289 !important;
color: #FF0000 !important;
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
Offline
Re: Sidebarmenu
Posted
Apr 2018
25
17:11
Added
Had to change it up a little.
Had to change it up a little.
Code: Select all
.badge {
color: #FFFFFF !important;
background: #105289;
animation: showcopied 1.5s ease;
}
.badge-new {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.9s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
@keyframes showcopied {
0% {
opacity: 0;
transform: translateX(100%);
}
70% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
}
@-webkit-keyframes zoom {
from {-webkit-transform:scale(0)}
to {-webkit-transform:scale(1)}
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
Offline
Re: Sidebarmenu
Posted
Apr 2018
25
20:22
I like the way yours fades in and out better than the zoom in and out I'm using.
What @-webkit-keyframes blinker { codes do you have to go with that code above?
I'd like to try that blinker of yours again.
What @-webkit-keyframes blinker { codes do you have to go with that code above?
I'd like to try that blinker of yours again.
Offline
Re: Sidebarmenu
Posted
Apr 2018
26
02:16
Code: Select all
text-decoration: blink;
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:ease-in-out;
-webkit-animation-direction: alternate;
}
@-webkit-keyframes blinker {
from {opacity: 1.0;}
to {opacity: 0.0;}
}
Offline
Re: Sidebarmenu
Posted
Apr 2018
27
02:32
Sorry, botched that css up pretty bad last release. Had to pull it. Please test this one out.
Again, disable, delete data, delete old files, copy new files over and enable.
Again, disable, delete data, delete old files, copy new files over and enable.