luci-material-theme: align td text width 33% 5791/head
authorMiguel Angel Mulero Martinez <migmul@gmail.com>
Sat, 30 Apr 2022 07:57:02 +0000 (09:57 +0200)
committerMiguel Angel Mulero Martinez <migmul@gmail.com>
Sat, 30 Apr 2022 07:57:02 +0000 (09:57 +0200)
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>
themes/luci-theme-material/htdocs/luci-static/material/cascade.css

index f6cc45fa5b1865a3341a05dd99eeeaf81a9004fa..f1550b26adad20064762f7d6928b1e6d993428fe 100644 (file)
@@ -76,7 +76,8 @@
        background: inherit;
 }
 
-.td[width="33%"] {
+.td[width="33%"], 
+.td[width="33%"]~.td {
        padding: 1.1em;
 }