View Single Post
Old 27 Feb 2019, 03:32 AM   #108
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Quote:
Originally Posted by Gsptlsnz View Post
/* Put a box around "MAIL Storage Quota" at bottom left of the screen. */
/* Tweaked version that also adds a 5 pixel thick border around the box. */
.v-Quota {
border: 5px solid green;
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;
}

Try this...

/* Puts a rail-thin border between the emails */
.v-MailboxItem {
border-top:3px solid black!important;
}

or...

Try this...

/* Puts a rail-thin border between the emails */
.app-listItem {
border-top:3px solid black!important;
}
thx Gsptlsnz..
the top one works now...
but the email list divider line is still acting odd regardless of code used..

Code:
	/* Puts a thin border between the emails */
	.v-MailboxItem
	{
		border-top:3px solid green;
	}
as a test I increased the thickness to 3px now the line is 2px think but the ends of the line have a small length that is 3px think...its weird....
joe_devore is offline   Reply With Quote