Changeset 35dc049b


Ignore:
Timestamp:
01/22/2024 05:12:23 PM (4 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
12.1, ken/TL2024, lazarus, plabs/newcss, rahul/power-profiles-daemon, trunk, xry111/llvm18
Children:
847aab24
Parents:
c7e06d8
Message:

Fix slight dissymmetry of Up/home positioning

The padding for the containing box was not right/left symmetric because
the order of padding values is not trivial in css (top right bottom
left). Making right and left equal allows to center the Up/Home box more
precisely. Then some tweaks for Next and Prev boxes have to be removed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/lfs-xsl/lfs.css

    rc7e06d8 r35dc049b  
    196196
    197197div.navheader ul, div.navfooter ul {
    198   padding: .2em .5em .5em 0;
     198  padding: .2em .5em .5em .5em; /*top right bottom left*/
    199199  margin: .5em 0;
    200200  position: relative;
     
    220220  display: block;
    221221  text-align: right;
    222   right: 5px;
    223   padding: 0.2em 0.5em;
    224   margin-right: 7px;
     222  right: 0;
     223  padding: 0.2em 1em;
     224  margin-right: 6px;
    225225}
    226226
Note: See TracChangeset for help on using the changeset viewer.