From: Leo-Andres Hofmann <hofmann@leo-andres.de>
To: development@lists.ipfire.org
Subject: [PATCH 3/4] zoneconf.cgi: Improve CSS
Date: Tue, 17 Nov 2020 07:29:03 +0100 [thread overview]
Message-ID: <20201117062904.1547-3-hofmann@leo-andres.de> (raw)
In-Reply-To: <20201117062904.1547-1-hofmann@leo-andres.de>
[-- Attachment #1: Type: text/plain, Size: 4464 bytes --]
- Add an element id so that the styling only affects the zone table
- Alternating row colors are now generated by CSS, remove unneeded Perl code
Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
---
html/cgi-bin/zoneconf.cgi | 73 ++++++++++++++++++---------------------
1 file changed, 33 insertions(+), 40 deletions(-)
diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi
index 2346aa829..ef361af95 100644
--- a/html/cgi-bin/zoneconf.cgi
+++ b/html/cgi-bin/zoneconf.cgi
@@ -28,63 +28,64 @@ require "${General::swroot}/header.pl";
my $css = <<END
<style>
- table {
+ table#zoneconf {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}
- tr {
+ #zoneconf tr {
height: 4em;
}
- td.narrow {
- width: 11em;
+ #zoneconf td {
+ padding: 5px 10px;
+ border: 0.5px solid black;
+ text-align: center;
}
- td {
- padding: 5px;
- padding-left: 10px;
- padding-right: 10px;
- border: 0.5px solid black;
+ /* dark grey header cells */
+ #zoneconf td.heading {
+ background-color: grey;
+ color: white;
+ }
+ #zoneconf td.heading::first-line {
+ font-weight: bold;
+ line-height: 1.6;
}
- td.slightlygrey {
- background-color: #F0F0F0;
+ /* narrow left column */
+ #zoneconf tr > td:first-child {
+ width: 11em;
}
- td.h {
- background-color: grey;
- color: white;
- font-weight: 800;
+ /* alternating row background color */
+ #zoneconf tr:nth-child(2n+3) {
+ background-color: #F0F0F0;
}
- td.green {
+ #zoneconf td.green {
background-color: $Header::colourgreen;
}
- td.red {
+ #zoneconf td.red {
background-color: $Header::colourred;
}
- td.blue {
+ #zoneconf td.blue {
background-color: $Header::colourblue;
}
- td.orange {
+ #zoneconf td.orange {
background-color: $Header::colourorange;
}
- td.topleft {
- background-color: white;
+ #zoneconf td.topleft {
+ background-color: $Header::pagecolour;
border-top-style: none;
border-left-style: none;
}
- td.textcenter {
- text-align: center;
- }
-
input.vlanid {
width: 4em;
}
@@ -299,9 +300,9 @@ if ($cgiparams{"ACTION"} eq $Lang::tr{"save"}) {
print <<END
<form method='post' enctype='multipart/form-data'>
- <table>
+ <table id="zoneconf">
<tr>
- <td class="h narrow topleft"></td>
+ <td class="topleft"></td>
END
;
@@ -320,7 +321,7 @@ foreach (@zones) {
my $red_restricted = ($uc eq "RED" && ! ($red_type eq "STATIC" || $red_type eq "DHCP"));
if ($red_restricted) {
- print "\t\t<td class='h textcenter $_'>$uc ($red_type)</td>\n";
+ print "\t\t<td class='heading $_'>$uc ($red_type)</td>\n";
next; # We're done here
}
@@ -338,7 +339,7 @@ foreach (@zones) {
}
print <<END
- <td class='h textcenter $_'>$uc<br>
+ <td class='heading $_'>$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>
@@ -351,15 +352,13 @@ END
print "\t</tr>\n";
-my $slightlygrey = "";
-
foreach (@nics) {
my $mac = $_->[0];
my $nic = $_->[1];
my $wlan = $_->[2];
print "\t<tr>\n";
- print "\t\t<td class='h narrow textcenter'>$nic<br>$mac</td>\n";
+ print "\t\t<td class='heading'>$nic<br>$mac</td>\n";
# Iterate through all zones and check if the current NIC is assigned to it
foreach (@zones) {
@@ -383,7 +382,7 @@ foreach (@nics) {
}
print <<END
- <td class="textcenter $slightlygrey">
+ <td class="">
<input type="radio" name="PPPACCESS" value="$mac" $checked>
</td>
END
@@ -426,7 +425,7 @@ END
my $vlan_disabled = ($wlan) ? "disabled" : "";
print <<END
- <td class="textcenter $slightlygrey">
+ <td class="">
<select name="ACCESS $uc $mac" onchange="document.getElementById('TAG-$uc-$mac').disabled = (this.value === 'VLAN' ? false : true)">
<option value="NONE" $access_selected{"NONE"}>- $Lang::tr{"zoneconf access none"} -</option>
<option value="NATIVE" $access_selected{"NATIVE"}>$Lang::tr{"zoneconf access native"}</option>
@@ -439,12 +438,6 @@ END
}
print "\t</tr>\n";
-
- if ($slightlygrey) {
- $slightlygrey = "";
- } else {
- $slightlygrey = "slightlygrey";
- }
}
print <<END
--
2.27.0.windows.1
next prev parent reply other threads:[~2020-11-17 6:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-17 6:29 [PATCH 1/4] zoneconf.cgi: Clean up HTML output Leo-Andres Hofmann
2020-11-17 6:29 ` [PATCH 2/4] zoneconf.cgi: Make output HTML 5 standard compliant Leo-Andres Hofmann
2020-11-17 6:29 ` Leo-Andres Hofmann [this message]
2020-11-17 6:29 ` [PATCH 4/4] zoneconf.cgi: Add NIC selection highlighting Leo-Andres Hofmann
2020-11-17 10:54 ` [PATCH 1/4] zoneconf.cgi: Clean up HTML output Michael Tremer
2020-12-01 22:25 ` Thank you for cleaning up the CGIs (was: Re: [PATCH 1/4] zoneconf.cgi: Clean up HTML output) Peter Müller
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=20201117062904.1547-3-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