Skip to content

Commit

Permalink
Merge commit 'refs/pull/1319/head' of github.com:znc/znc
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthGandalf committed Sep 23, 2016
2 parents f841dec + 00aadba commit 4aa5e41
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 38 deletions.
4 changes: 2 additions & 2 deletions modules/data/certauth/tmpl/index.tmpl
Expand Up @@ -25,8 +25,8 @@
<table class="data">
<thead>
<tr>
<td></td>
<td>Key</td>
<th></th>
<th>Key</th>
</tr>
</thead>
<tbody>
Expand Down
6 changes: 3 additions & 3 deletions modules/data/lastseen/tmpl/index.tmpl
Expand Up @@ -4,9 +4,9 @@
<table class="data">
<thead>
<tr>
<td>User</td>
<td>Last Seen</td>
<td>Info</td>
<th>User</th>
<th>Last Seen</th>
<th>Info</th>
<? IF WebAdminLoaded ?><td>Action</td><? ENDIF ?>
</tr>
</thead>
Expand Down
16 changes: 8 additions & 8 deletions modules/data/listsockets/tmpl/index.tmpl
Expand Up @@ -3,14 +3,14 @@
<table class="data">
<thead>
<tr>
<td>Name</td>
<td>Created</td>
<td>State</td>
<td>SSL</td>
<td>Local</td>
<td>Remote</td>
<td>Data In</td>
<td>Data Out</td>
<th>Name</th>
<th>Created</th>
<th>State</th>
<th>SSL</th>
<th>Local</th>
<th>Remote</th>
<th>Data In</th>
<th>Data Out</th>
</tr>
</thead>
<tbody>
Expand Down
6 changes: 3 additions & 3 deletions modules/data/notes/tmpl/index.tmpl
Expand Up @@ -29,9 +29,9 @@
<table class="data">
<thead>
<tr>
<td style="width: 10px;"></td>
<td>Key</td>
<td>Note</td>
<th style="width: 10px;"></th>
<th>Key</th>
<th>Note</th>
</tr>
</thead>
<tbody>
Expand Down
4 changes: 2 additions & 2 deletions modules/data/sasl/tmpl/index.tmpl
Expand Up @@ -38,8 +38,8 @@
<table class="data">
<thead>
<tr>
<td>Name</td>
<td>Description</td>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
Expand Down
4 changes: 2 additions & 2 deletions modules/data/stickychan/tmpl/index.tmpl
Expand Up @@ -5,8 +5,8 @@
<table class="data">
<thead>
<tr>
<td>Name</td>
<td>Sticky</td>
<th>Name</th>
<th>Sticky</th>
</tr>
</thead>
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion modules/data/webadmin/files/webadmin.js
Expand Up @@ -13,7 +13,7 @@ function floodprotection_change() {

function make_sortable_table(table) {
if (table.rows.length >= 1) { // Ensure that the table at least contains a row for the headings
var headings = table.rows[0].getElementsByTagName("td");
var headings = table.rows[0].getElementsByTagName("th");
for (var i = 0; i < headings.length; i++) {
// This function acts to scope the i variable, so we can pass it off
// as the column_index, otherwise column_index would just be the max
Expand Down
11 changes: 4 additions & 7 deletions webskins/dark-clouds/pub/dark-clouds.css
Expand Up @@ -39,22 +39,19 @@ table {
border-top: 1px solid black;
}

table thead td {
table thead th {
background-color: #EC8E00;
color: #000;
font-weight: bold;
padding: 6px;
text-align: left;
}

table td, table th {
padding: 4px;
border: 1px solid #000;
}

table th {
text-align: left;
}

td.mod_name {
white-space: nowrap;
}
Expand Down Expand Up @@ -205,12 +202,12 @@ a:hover {
text-decoration: underline;
}

table thead td a {
table thead th a {
color: #000;
text-decoration: underline;
}

table thead td a:hover {
table thead th a:hover {
color: #000;
text-decoration: none;
}
Expand Down
2 changes: 1 addition & 1 deletion webskins/forest/pub/forest.css
Expand Up @@ -2,7 +2,7 @@ h3 {
background-color: #049712;
}

table thead td {
table thead th {
background-color: #007700;
}

Expand Down
10 changes: 1 addition & 9 deletions webskins/ice/pub/ice.css
Expand Up @@ -89,26 +89,18 @@ table thead {
font-weight: bold;
}

thead td {
thead th {
font-size: 13px;
border-bottom: 1px solid #000;
min-width: 35px;
}

th {
text-align: left;
padding: 4px;
border-top: 1px solid #000;
}

tr td:first-child {
border-left: none;
}

tr:first-child th {
border-top: none;
}

table tr:first-child td {
border-top: none;
}
Expand Down

0 comments on commit 4aa5e41

Please sign in to comment.