Hi Richard:

In message <CALwJ=Myf+wxTqtqiy=8tcM_7HvBo--k+X2B+gCuvmnZTjfNwgg@mail.gmail
.com>,
Richard Hipp writes:
>On 12/14/17, John P. Rouillard <rouilj+fos...@cs.umb.edu> wrote:
>>
>> I use a dark theme with white text. In release:
>>
>>    Fossil version 2.5 [dc7d0a2e27] 2017-12-14 18:03:01
>>
>> the background for the timeline detail is very light. This makes it
>> difficult to view the white text.
>
>Please try adding the following rule to your CSS:
>
>.timelineModernCell[id], .timelineColumnarCell[id], .timelineDetailCell[id] {
>    background-color: #333;
>}

I did but it has no effect.

Looking at developer tools in firefox, it looks like setting:

.timelineModernCell[id], .timelineColumnarCell[id], .timelineDetailCell[id
] {
    background-color: #333;
    }

in the skin css inserts it into style.css at line 367. However the css
that sets it to "efefef" occurs in style.css at line 437. The line
later in the file (setting "efefef") wins. So no visual change
happens. If I use !important:

    background-color: #333 !important;

it works, but it's not a great solution as it overrides the
background colors for all items, even branches (e.g. see:

   
https://rouilj.dynamic-dns.net/fossil/roundup_sysadmin/timeline?advm=1&n=100&ss=m&y=ci&b=2017-03-26+22:44:45

which should have commits 662b493031 and others in a different color. )

The current:

  https://rouilj.dynamic-dns.net/fossil/roundup_sysadmin/timeline?n=1000

is using !important and has much improved readability, but losing the
color changes for branches is not good.

Thanks for the quick feedback.

--
                                -- rouilj
John Rouillard
==========================================================================
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to