luci-material-theme: align td text width 33%

The CSS applies a different padding for td elements with 33% width. This
misaligns the text from this td to the others td.

This change modifies the CSS to apply the same padding to all of the
sibling td.

Signed-off-by: Miguel Angel Mulero Martinez <migmul@gmail.com>
This commit is contained in:
Miguel Angel Mulero Martinez 2022-04-30 09:57:02 +02:00
parent 5ccef2421b
commit 3333fd6695

View file

@ -76,7 +76,8 @@
background: inherit; background: inherit;
} }
.td[width="33%"] { .td[width="33%"],
.td[width="33%"]~.td {
padding: 1.1em; padding: 1.1em;
} }