TaigaChat Pro - Realtime chat/shoutbox [Deleted]

Qnixa.png
 
I adjusted the file permissions to 600:

7ZnWq.png


You shouldn't be able to view either of them now.
Yep, i get a forbidden message, but i wonder if speed mode works with a chmod 600, if the access to messages.html is client side i suppose not.
 
Couldn't you just add

Code:
User-agent: *
Disallow: /data/taigachat/

to your robots.txt file to keep spiders from crawling?
 
Anyone looking to get a better scrollbar in there chat can put this code in there taigachat css:
Code:
::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

That should work with both dark and light themes.

Here is how its looks:
7c6389a3d446433f99651f3.png


Compared to:
tym63.png
 
Code:
::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

Looks good on Chrome, changed nothing for me on Firefox...
 
Anyone looking to get a better scrollbar in there chat can put this code in there taigachat css:
Code:
::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

That should work with both dark and light themes.

Here is how its looks:
7c6389a3d446433f99651f3.png


Compared to:
tym63.png


How did you change your chat box to black :I ?
 
You just have to change the background color. Add this to your EXTRA.css:
Code:
#taigachat_full.taigachat_alt.taigachat_reverse #taigachat_box
{
background: #000000;
}
 
#taigachat_box li
{
background: #000000;
}

#000000 is just an example. Replace it with any color you want.
 
I've added this to the EXTRA.css, but the box remains white ?

Code:
#taigachat_full.taigachat_alt.taigachat_reverse #taigachat_box
{
background: #262626;
}
 
#taigachat_box li
{
background: #262626;
}
 
Try add !important after the color codes. If this doesn't work, check if your color is overwritten by something else via Firebug etc. I don't have access to your chat, so I can't check myself.
 
Didn't work :I


Code:
#taigachat_full.taigachat_alt.taigachat_reverse #taigachat_box
{
background: #262626;!important
}
 
#taigachat_box li
{
background: #262626;!important
}

These are the plugins I have installed.
 

Attachments

  • Plugins.webp
    Plugins.webp
    34.2 KB · Views: 15
This works:
Code:
#taigachat_box
{
background: #262626 !important;
border: 1px solid #343434;
}
 
#taigachat_box li
{
background: #262626 !important;
}
 
Back
Top Bottom