google-code-export / minimalist-gmail

Automatically exported from code.google.com/p/minimalist-gmail
1 stars 1 forks source link

Quick Links (labs) hidden #267

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Which Minimalist for Gmail option is causing the problem?
not sure

What is the problem? Describe completely:

The "Quick links" box (a 'labs' feature enabling saved searches) is now hidden 
by mGmail.  I cannot determine which CSS changed to force this nor can I get 
custom CSS to force display

Does the problem persist when loading Gmail with this link:
https://mail.google.com/mail/u/0/?labs=0 if not, list your enabled labs
experiments:
Quick Links

MinGmail version       - 1.7.27
Chrome version         - 11.0.696.68
Chrome update channel  - Release
Operating System       - Win7 x64
Language               - US-en
Google apps user?      - yes
Other Gmail extensions - no

Please provide any additional information below and attach screenshots if
possible.

Original issue reported on code.google.com by tb...@mimeo.com on 16 May 2011 at 1:37

GoogleCodeExporter commented 9 years ago
This is most likely caused by the Hide Chat option but also possibly the Hide 
zero inbox whitespace option. Please attach a screenshot of your sidebar so I 
can give you the necessary custom CSS to force it to show.

Original comment by anst...@gmail.com on 16 May 2011 at 4:13

GoogleCodeExporter commented 9 years ago
Just checked, its definately "Hide chat" (didnt think of that), the box i
immediately below.

Screen:

[image: Untitled.png]

Thanks,
Taylor

-- 

mimeo.com | just hit print.
................................................................................
................................................
TAYLOR BIRD  -   Manager, Application Systems Architecture
3525 Arden Rd, Suite 3    Hayward, CA    94545
O: 650 393 2603 | M: 510.852.9409 | F: 901.566.8911
E: tbird@mimeo.com

www.mimeo.com
................................................................................
................................................

Original comment by tb...@mimeo.com on 16 May 2011 at 4:17

GoogleCodeExporter commented 9 years ago
Well one of these two custom CSS blocks will do the trick:

  .Ls77Lb + .Ls77Lb > .pp.T0:first-child { display: block !important; }

OR

  .Ls77Lb + .Ls77Lb > .pp.T0:first-child + pp.T0 { display: block !important; }

I can't tell exactly which one because the image didn't show up (if you respond 
via email, inline images don't show in the tracker, just attachments do)

Original comment by anst...@gmail.com on 16 May 2011 at 4:21

GoogleCodeExporter commented 9 years ago
So the 1st of those shows the chat window (even with "hide chat" on), and
the second has no visible effect.

Taylor

-- 

mimeo.com | just hit print.
................................................................................
................................................
TAYLOR BIRD  -   Manager, Application Systems Architecture
3525 Arden Rd, Suite 3    Hayward, CA    94545
O: 650 393 2603 | M: 510.852.9409 | F: 901.566.8911
E: tbird@mimeo.com

www.mimeo.com
................................................................................
................................................

Original comment by tb...@mimeo.com on 16 May 2011 at 4:25

GoogleCodeExporter commented 9 years ago
Interesting. Give this a shot:

  .Ls77Lb + .Ls77Lb > .pp.T0:not(:first-child) { display: block !important; }

Original comment by anst...@gmail.com on 16 May 2011 at 4:28

GoogleCodeExporter commented 9 years ago
Hi!

I think I understand the mechanics of how this is working:

Hiding chat will hide the 2nd nav menu item. That's why chat has to be the 2nd 
item in order to be hidden. Fine.

But it seems like there's a "hide everything between the first and last items" 
function operating here.

So, for example, with some testing, I have found the following:

(A)    1. nav links   2. chat   3. calendar sidebar   <= FINE. chat gets hidden 
and first and last items are kept.

(B)    1. nav links   2. chat   3. quick links            <= FINE. chat gets 
hidden and first and last items are kept.

(C)    1. nav links   2. chat   3. quick links   4. calendar    <= BAD. 
everything except 1st and last items are hidden. so here, numbers 2 and 3 are 
taken away. Calendar, being the last item, IS visible.

(D)    1. nav links   2. chat   3. calendar   4. quick links     <= BAD. 
everything except 1st and last items are hidden. so here, numbers 2 and 3 are 
taken away. Quick links, being the last item, IS visible.

I've tested this a few times and it seems like this is what's happening. I have 
no knowledge of CSS or anything, though! 

cheers

Original comment by dewaazt...@gmail.com on 7 Jun 2011 at 3:13

GoogleCodeExporter commented 9 years ago
Should be fixed in 1.7.34. Please update and confirm:
  [wrench] > Tools > Extensions > Developer mode > Update extensions now

As dewaazt points out, you will have to make sure chat immediately follows nav 
links for it to work.

Original comment by anst...@gmail.com on 7 Jun 2011 at 5:42