EmailDiscussions.com  

Go Back   EmailDiscussions.com > Email Service Provider-specific Forums > FastMail Forum
Register FAQ Members List Calendar Today's Posts
Stay in touch wirelessly

FastMail Forum All posts relating to FastMail.FM should go here: suggestions, comments, requests for help, complaints, technical issues etc.

Reply
 
Thread Tools
Old 21 Feb 2019, 03:29 PM   #91
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
this is what I got from the FastMail Support so far..

https://www.fastmail.com/help/guides...date-2018.html
joe_devore is offline   Reply With Quote
Old 21 Feb 2019, 03:48 PM   #92
BritTim
The "e" in e-mail
 
Join Date: May 2003
Location: mostly in Thailand
Posts: 3,093
Quote:
Originally Posted by joe_devore View Post
this is what I got from the FastMail Support so far..

https://www.fastmail.com/help/guides...date-2018.html
Some of the enhancements look pretty useful. Unfortunately, as ever, changes can be painful, both in terms of removed/changed functionality and the need to rework tweaks and workflow designed around the prior version. I yearn for the days when FastMail would have coordinated changes like this with the community.
BritTim is offline   Reply With Quote
Old 21 Feb 2019, 04:17 PM   #93
Terry
The "e" in e-mail
 
Join Date: Jul 2002
Location: VK4
Posts: 3,026
Quote:
Originally Posted by BritTim View Post
I yearn for the days when FastMail would have coordinated changes like this with the community.
That would have been so nice.

It's really annoying when they take nice features away.

I am now moving back to Thunderbird so I can have my folder count displayed without the silly mouse over crap.

At times I wish I had not have renewed my subscription.
Terry is online now   Reply With Quote
Old 26 Feb 2019, 02:46 AM   #94
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Unhappy

I got another reply on my support ticket...
they are giving me the standard speall / runaround...
ie. they have not told me anything useful to pass on to you guys here...
ie. something to help fix these CSS tweaks...
joe_devore is offline   Reply With Quote
Old 26 Feb 2019, 05:09 AM   #95
Terry
The "e" in e-mail
 
Join Date: Jul 2002
Location: VK4
Posts: 3,026
Your lucky I never had a reply from my support ticket I sent on 21st of Feb.

I have gone back to Thunderbird so I can have my folder count showing all the time.
Terry is online now   Reply With Quote
Old 26 Feb 2019, 05:14 AM   #96
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Quote:
Originally Posted by Terry View Post
Your lucky I never had a reply from my support ticket I sent on 21st of Feb.

I have gone back to Thunderbird so I can have my folder count showing all the time.
lol... yeah... give it some time...
they have a large queue of tickets probably...
it was a few days in between each of the replies I got...

ok have fun with Thunderbird...
joe_devore is offline   Reply With Quote
Old 26 Feb 2019, 08:37 AM   #97
Gsptlsnz
Senior Member
 
Join Date: Sep 2011
Location: 5th Dimension
Posts: 180
i got the "update" this morning and it still looks ok, but i will have to change my css codes.
Gsptlsnz is offline   Reply With Quote
Old 26 Feb 2019, 08:43 AM   #98
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Quote:
Originally Posted by Gsptlsnz View Post
i got the "update" this morning and it still looks ok, but i will have to change my css codes.
ok, I can update the first post with updated codes if u want when u fix them..
joe_devore is offline   Reply With Quote
Old 26 Feb 2019, 11:43 AM   #99
Terry
The "e" in e-mail
 
Join Date: Jul 2002
Location: VK4
Posts: 3,026
Quote:
Originally Posted by Gsptlsnz View Post
i got the "update" this morning and it still looks ok, but i will have to change my css codes.
Sadly some of us are not very good at doing that....
Terry is online now   Reply With Quote
Old 26 Feb 2019, 01:45 PM   #100
Gsptlsnz
Senior Member
 
Join Date: Sep 2011
Location: 5th Dimension
Posts: 180
my first (of probably many!) fixes...

this restores the badge that shows the number of emails, as well as showing the total number of emails per folder.


Look for:

/* Shows number count of files per folder */
.v-FolderSource:after {
content: " " attr(title);
font-size:12pt;
color:darkgreen;
}


Replace with:

/* Shows the total number of emails in the folder */
.app-source--depth0:after, .app-source--depth1:after, .app-source--depth2:after, .app-source--depth3:after {
content: " " attr(title);
font-size:12pt;
color:darkgreen;
font-weight:bold;
}

/* Puts a count badge on every folder except SENT and TRASH and shows number of unread */
.v-MailboxSource-badge {
display:inline-block;
text-shadow:1px 1px 1px #808080;
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;
font-size:10.5pt;
}
Gsptlsnz is offline   Reply With Quote
Old 26 Feb 2019, 03:05 PM   #101
Terry
The "e" in e-mail
 
Join Date: Jul 2002
Location: VK4
Posts: 3,026
Quote:
Originally Posted by Gsptlsnz View Post
my first (of probably many!) fixes...

this restores the badge that shows the number of emails, as well as showing the total number of emails per folder.


Replace with:

/* Shows the total number of emails in the folder */
.app-source--depth0:after, .app-source--depth1:after, .app-source--depth2:after, .app-source--depth3:after {
content: " " attr(title);
font-size:12pt;
color:darkgreen;
font-weight:bold;
}
Gsptlsnz, thank you so much for that its made my YEAR and I really appreciate that CSS because I dont have enough experience to do my own.....Thanks again....
Terry is online now   Reply With Quote
Old 26 Feb 2019, 08:02 PM   #102
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
thx for the first update Gsptlsnz! I will update Post #1 of this thread...
joe_devore is offline   Reply With Quote
Old 27 Feb 2019, 12:58 AM   #103
Gsptlsnz
Senior Member
 
Join Date: Sep 2011
Location: 5th Dimension
Posts: 180
this fix is totally optional since it only changes the background color of each directory pane listed in the left panel.

(makes it a tiny bit easier to find a system folder quickly)

/* 'Inbox' Folder Path Is Now LimeGreen */
.v-MailboxSource--inbox {
background-color:limegreen;
}

/* 'Drafts' Folder Path Is Now Dark Orange */
.v-MailboxSource--drafts {
background-color:darkorange;
}

/* 'Sent' Folder Path Is Now Lightblue */
.v-MailboxSource--sent {
background-color:lightblue;
}

/* 'Spam' Folder Path Is Now Yellow */
.v-MailboxSource--junk {
background-color:yellow;
}
Gsptlsnz is offline   Reply With Quote
Old 27 Feb 2019, 01:10 AM   #104
joe_devore
Essential Contributor
 
Join Date: Dec 2003
Location: Dover, NH, USA
Posts: 315
Thumbs up

Thx Gsptlsnz.

I used
Code:
.v-MailboxSource
to edit the folder path colors entries of the code I have already...

I also have all folders sorted according to a number order scheme...
the system folders are sorted above the rest which are all sorted at #10
joe_devore is offline   Reply With Quote
Old 27 Feb 2019, 01:44 AM   #105
Gsptlsnz
Senior Member
 
Join Date: Sep 2011
Location: 5th Dimension
Posts: 180
everything is pretty much back to the way it was on my screen so
if anyone needs something changed, then speak up now!

Last edited by Gsptlsnz : 27 Feb 2019 at 01:54 AM.
Gsptlsnz is offline   Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +9. The time now is 02:21 PM.

 

Copyright EmailDiscussions.com 1998-2022. All Rights Reserved. Privacy Policy