The OcUK NEW Stylish themes thread 2017

Soldato
Joined
11 Sep 2009
Posts
13,954
Location
France, Alsace
Don't know if anyone can help, you know when you hover on a thread title and you get a preview of the thread? can anybody snag that css, the white border is doing my head in and I can seem to locate the code.

This should do it:

.xenPreviewTooltip {
  1. border: 10px solid rgb(51, 51, 51);
  2. border-radius: 10px;
  3. position: relative;
  4. box-shadow: 0px 12px 25px rgba(0,0,0, 0.5);
  5. width: 400px;
  6. display: none;
  7. z-index: 15000;
  8. cursor: default;
  9. border-color: rgb(51, 51, 51);
  10. border-color: rgba(51, 51, 51, 0.5);
  11. _border-color: rgb(51, 51, 51);
}
 
Soldato
OP
Joined
18 Oct 2002
Posts
2,956
Location
Northants
I would love to V_R but I can't understand why its there for you as it isn't for me and I remember fixing it way back, if you could right click that area and inspect and get the css for it I can get it fixed up for you.
Have you visited the stylish link for the theme and maybe tried copying the latest css into the extension just to make sure there isn't a problem with it updating?
 

V_R

V_R

Soldato
Joined
17 Jan 2007
Posts
9,721
Location
UK
Wait, you don't see it?

Is this what you need?
Code:
.messageNotices li {
    font-size: 11px;
    background-color: rgb(0,51,102);
    background-repeat: repeat-x;
    background-position: top;
    padding: 5px;
    margin: 10px 0;
    border: 1px solid rgb(0,51,102);
    border-radius: 5px;
    line-height: 16px;
}
 
Soldato
OP
Joined
18 Oct 2002
Posts
2,956
Location
Northants
Code:
.messageNotices li {
    background-color: #373f44;
    border: 1px solid #475359 !important;
}

Paste that at the bottom of the css, should fix you up anyway :)
 

V_R

V_R

Soldato
Joined
17 Jan 2007
Posts
9,721
Location
UK
That's weird, I get it on both my home and work PC's. Have done a fresh install but its not any different.

Sadly that code doesn't do anything either, its still blue.

Don't worry too much if its just me. I'll live. :)


Out of interest, anyone else using Wiiija's themes see the deleted posts in blue in this, or anyother thread?

*** PC Gaming - Daily Deals Thread ***

Like this:

gCMJTP7.png
 
Soldato
OP
Joined
18 Oct 2002
Posts
2,956
Location
Northants
Is this still working well for anyone that uses the xen complete theme? I use xenminimal and I'm too lazy to install the other to check for issues. Any issues let me know while I have the time to fix it :)
 

MrB

MrB

Associate
Joined
13 Nov 2007
Posts
78
Don't know if anyone can help, you know when you hover on a thread title and you get a preview of the thread? can anybody snag that css, the white border is doing my head in and I can seem to locate the code.

Is it this bit:-
.previewTooltip {
padding: 5px;
border-top: 1px solid rgb(255, 255,255);
border-right: 1px solid rgb(255, 255,255);
border-left: 1px solid rgb(255, 255,255);
border-bottom: 1px solid rgb(255, 255,255)
}
 

V_R

V_R

Soldato
Joined
17 Jan 2007
Posts
9,721
Location
UK
The scroll bar on the right has been dark with this theme for some time now, I'm not a fan, anyone know how I can put it back to normal?

Edit: Sorted, I commented out this bit..

Code:
/*::-webkit-scrollbar {
    max-width: 14px!important;
    background-color: #24292d !important
}
::-webkit-scrollbar-thumb {
    min-height: 28px !important;
    background-color: #2e3539 !important
}
::-webkit-scrollbar-button {
    background-color: #2e3539!important
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
    background-color: #24292d !important
}*/

Edit 2:

I've just lightened the scrollbar thumb a bit so its more visible.

Code:
}
::-webkit-scrollbar {
    max-width: 14px!important;
    background-color: #24292d !important
}
::-webkit-scrollbar-thumb {
    min-height: 28px !important;
    background-color: #464e53 !important
}
::-webkit-scrollbar-button {
    background-color: #2e3539!important
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
    background-color: #24292d !important
}
 
Last edited:
Back
Top Bottom