View Single Post
Old 21 Jul 2017, 03:59 AM   #44
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Quote:
Originally Posted by Gsptlsnz View Post
the file count is done with javascript, so i doubt it's possible to show new/total.

https://www.fastmail.com/static/ajax...ap-283cbedb.js

https://www.fastmail.com/static/ajax...se-9a2e3082.js
in that case GreaseMonkey JavaScript then.. lol


on another note... for the following code of yours..
could you please to a tweaked version?
to add instead of or as an addition
a full solid border around the whole box and not just a shadow??
Quote:
/* Box at screen bottom that shows space left */
.v-UsageInfo
{
color:black;
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;
}
nvm, I did a bit googling.. and found...
www.w3schools.com -- The CSS Box Model

and
Quote:
border: 5px solid green;
inserted it in place of "color:black;"

Wahoo it worked
so I will add this tweaked version to your code list : D
ok, done.. I have added the tweaked versions to the
opening post as follows and tweaked the comment of the original to be more verbose.

Quote:
/* Box around "MAIL Storage Quota" at bottom left of the screen. */
.v-UsageInfo
{
color:black;
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;
}

/* 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-UsageInfo
{
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;
}

Last edited by joe_devore : 21 Jul 2017 at 04:16 AM.
joe_devore is offline   Reply With Quote