[Lazarus] Website/Mantis back online (colors)

Martin Frb lazarus at mfriebe.de
Tue Apr 23 01:35:48 CEST 2019


One more. If people have no JavaScript enabled

Drop the css
.my-buglist-id .fa-status-box, .column-status .fa-status-box, 
.bug-status .fa-status-box {
     display: none !important;
}

and add the js (inside the unnamed function in colorize.js)

   $(".my-buglist-id .fa-status-box").each(function() {
     var $this = $(this);
     $this.attr('style', 'display: none !important');
   });
   $(".column-status .fa-status-box").each(function() {
     var $this = $(this);
     $this.attr('style', 'display: none !important');
   });
   $(".bug-status .fa-status-box").each(function() {
     var $this = $(this);
     $this.attr('style', 'display: none !important');
   });





On 23/04/2019 00:23, Martin Frb via lazarus wrote:
> On 23/04/2019 00:09, Martin Frb via lazarus wrote:
>> On 23/04/2019 00:02, Martin Frb via lazarus wrote:
>>>
>>>
>>> .my-buglist-id .fa-lg {
>>>   text-shadow: 0px 0px 1px #444;
>>> }
>>> .my-buglist-id .fa-paperclip {
>>>   text-shadow: 0px 0px 0px #000;
>>> }
>>>
>>
> and  for prior symbols on the search results
>
> .column-priority .fa-lg {
>   text-shadow: 0px 0px 1px #444;
> }
>
>
>> And maybe also
>> grey the fixed field in the view issue page / though interrupts the 
>> color for state:
>>
>> th.category, td.category {
>>     background-color: #e8e8e8 !important;
>> }
>>
>>
>



More information about the lazarus mailing list