From: Leo-Andres Hofmann <hofmann@leo-andres.de>
To: development@lists.ipfire.org
Subject: [PATCH v2 2/6] zoneconf.cgi: Modify CSS to allow additional rows
Date: Thu, 18 Feb 2021 15:30:12 +0100 [thread overview]
Message-ID: <20210218143016.972-2-hofmann@leo-andres.de> (raw)
In-Reply-To: <20210218143016.972-1-hofmann@leo-andres.de>
[-- Attachment #1: Type: text/plain, Size: 3180 bytes --]
Simplify borders, load more colors from header and add dividers
Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
---
html/cgi-bin/zoneconf.cgi | 42 ++++++++++++++++++++++++++++-----------
1 file changed, 30 insertions(+), 12 deletions(-)
diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi
index bf46ab0c7..13543d244 100644
--- a/html/cgi-bin/zoneconf.cgi
+++ b/html/cgi-bin/zoneconf.cgi
@@ -32,39 +32,59 @@ my $extraHead = <<END
table#zoneconf {
width: 100%;
border-collapse: collapse;
+ border-style: hidden;
table-layout: fixed;
}
+ /* row height */
#zoneconf tr {
height: 4em;
}
+ /* section separators */
+ #zoneconf tr.divider-top {
+ border-top: 2px solid $Header::bordercolour;
+ }
+ #zoneconf tr.divider-bottom {
+ border-bottom: 2px solid $Header::bordercolour;
+ }
+ /* table cells */
#zoneconf td {
padding: 5px 10px;
- border: 0.5px solid black;
+ border-left: 0.5px solid $Header::bordercolour;
text-align: center;
}
- /* dark grey header cells */
+ /* grey header cells */
#zoneconf td.heading {
- background-color: grey;
+ background-color: lightgrey;
color: white;
}
- #zoneconf td.heading::first-line {
+ #zoneconf td.heading.bold::first-line {
font-weight: bold;
line-height: 1.6;
}
- /* narrow left column */
+ /* narrow left column with background color */
#zoneconf tr > td:first-child {
width: 11em;
}
+ #zoneconf tr.nic-row > td:first-child {
+ background-color: darkgray;
+ }
+ #zoneconf tr.nic-row {
+ border-bottom: 0.5px solid $Header::bordercolour;
+ }
/* alternating row background color */
+ #zoneconf tr {
+ background-color: $Header::table2colour;
+ }
#zoneconf tr:nth-child(2n+3) {
- background-color: #F0F0F0;
+ background-color: $Header::table1colour;
}
+ /* special cell colors */
#zoneconf td.green {
background-color: $Header::colourgreen;
}
@@ -83,8 +103,6 @@ my $extraHead = <<END
#zoneconf td.topleft {
background-color: $Header::pagecolour;
- border-top-style: none;
- border-left-style: none;
}
input.vlanid {
@@ -324,7 +342,7 @@ if ($cgiparams{"ACTION"} eq $Lang::tr{"save"}) {
print <<END
<form method='post' enctype='multipart/form-data'>
<table id="zoneconf">
- <tr>
+ <tr class="divider-bottom">
<td class="topleft"></td>
END
;
@@ -359,7 +377,7 @@ foreach (@zones) {
}
print <<END
- <td class='heading $_'>$uc<br>
+ <td class='heading bold $_'>$uc<br>
<select name="MODE $uc">
<option value="DEFAULT" $mode_selected{"DEFAULT"}>$Lang::tr{"zoneconf nicmode default"}</option>
<option value="BRIDGE" $mode_selected{"BRIDGE"}>$Lang::tr{"zoneconf nicmode bridge"}</option>
@@ -378,8 +396,8 @@ foreach (@nics) {
my $nic = $_->[1];
my $wlan = $_->[2];
- print "\t<tr>\n";
- print "\t\t<td class='heading'>$nic<br>$mac</td>\n";
+ print "\t<tr class='nic-row'>\n";
+ print "\t\t<td class='heading bold'>$nic<br>$mac</td>\n";
# Iterate through all zones and check if the current NIC is assigned to it
foreach (@zones) {
--
2.27.0.windows.1
next prev parent reply other threads:[~2021-02-18 14:30 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-18 14:30 [PATCH v2 1/6] zoneconf.cgi: Change NIC display order, improve code Leo-Andres Hofmann
2021-02-18 14:30 ` Leo-Andres Hofmann [this message]
2021-02-18 14:30 ` [PATCH v2 3/6] zoneconf.cgi: Add STP options to GUI Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 4/6] zoneconf.cgi: Add Javascript for new GUI elements Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 5/6] zoneconf.cgi: Import network-functions.pl Leo-Andres Hofmann
2021-02-19 19:24 ` Michael Tremer
2021-02-20 11:07 ` Aw: " Bernhard Bitsch
2021-02-21 10:35 ` Leo Hofmann
2021-02-18 14:30 ` [PATCH v2 6/6] zoneconf.cgi: Improve VLAN & STP inputs Leo-Andres Hofmann
2021-02-19 19:22 ` Michael Tremer
2021-02-21 10:38 ` Leo Hofmann
2021-02-21 19:06 ` Jonatan Schlag
2021-02-22 23:46 ` Leo Hofmann
2021-02-22 19:02 ` Michael Tremer
2021-02-22 22:27 ` Adolf Belka (ipfire)
2021-02-22 23:22 ` Leo Hofmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210218143016.972-2-hofmann@leo-andres.de \
--to=hofmann@leo-andres.de \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox