View Single Post
Old 27 Jul 2017, 08:45 AM   #55
Gsptlsnz
Senior Member
 
Join Date: Sep 2011
Location: 5th Dimension
Posts: 180
This will move the red "Pin" back to the left, where it used to be:

But first, you have to change the existing code as such...

Change:

Code:
/* Makes all grey buttons look shaded */
.v-Button {
box-shadow:5px 5px 5px rgba(0,0,0,.25), 0 0 20px transparent inset, 0 0 1px rgba(255,255,255,0.5) inset;
}
To...

Code:
/* Makes All Grey Buttons Look Shaded */
.v-Button--hasIcon,.v-MenuButton,.v-ResourceItem-badge,.v-ResourceItem-rightCol > button {
box-shadow:5px 5px 5px rgba(0,0,0,.25), 0 0 20px transparent inset, 0 0 1px rgba(255,255,255,0.5) inset;
}
and then underneath that add:

Code:
/* Puts The Pin On The Left */
.v-Thread .is-pinned {
position:fixed;
top:-8px;
left:-27px;
background-color:transparent;
}

/* Puts The Pin On The Left */
.v-Thread .is-unpinned {
position:fixed;
top:-8px;
left:-27px;
}
Gsptlsnz is offline   Reply With Quote