[LNT] r239728 - Correct width of content pane for wide displays.

Kristof Beyls kristof.beyls at arm.com
Tue Jun 16 00:37:22 PDT 2015


It had been annoying me for a long time too. It took me a couple of
hours to find the root cause, as it took me a while to get up to speed
on Bootstrap.

Given this required a single bit change to fix (there's a single bit
difference between the encoding of '1' and '5') - it's probably one
of the most expensive time-per-bits-changed fixes I've done in my life ;)

> -----Original Message-----
> From: Chris Matthews [mailto:chris.matthews at apple.com]
> Sent: 15 June 2015 20:14
> To: Kristof Beyls
> Cc: llvm-commits at cs.uiuc.edu
> Subject: Re: [LNT] r239728 - Correct width of content pane for wide
> displays.
> 
> This has bugged me for years, and I never bothered to investigate.
> Thanks!!!
> 
> > On Jun 15, 2015, at 7:43 AM, Kristof Beyls <kristof.beyls at arm.com>
> wrote:
> >
> > Author: kbeyls
> > Date: Mon Jun 15 09:43:08 2015
> > New Revision: 239728
> >
> > URL: http://llvm.org/viewvc/llvm-project?rev=239728&view=rev
> > Log:
> > Correct width of content pane for wide displays.
> >
> > This fixes the settings drop down-menu on the graph page not being
> fully visible on wide displays.
> >
> >
> > Modified:
> >    lnt/trunk/lnt/server/ui/static/wide.css
> >
> > Modified: lnt/trunk/lnt/server/ui/static/wide.css
> > URL: http://llvm.org/viewvc/llvm-
> project/lnt/trunk/lnt/server/ui/static/wide.css?rev=239728&r1=239727&r2=
> 239728&view=diff
> >
> ========================================================================
> ======
> > --- lnt/trunk/lnt/server/ui/static/wide.css (original)
> > +++ lnt/trunk/lnt/server/ui/static/wide.css Mon Jun 15 09:43:08 2015
> > @@ -1,4 +1,4 @@
> > #content { margin-top:97px; }
> > #header { position: fixed;}
> > -#page-content { float: left; width: 85%; height: 100%; margin-left:
> 19%; }
> > +#page-content { float: left; width: 81%; height: 100%; margin-left:
> 19%; }
> > #side-bar { width: 16%; height: 100%; position: fixed; margin-left:
> 20px; }
> >
> >
> > _______________________________________________
> > llvm-commits mailing list
> > llvm-commits at cs.uiuc.edu
> > http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits







More information about the llvm-commits mailing list