Skip to content
Snippets Groups Projects
Commit 2d16f38e authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#79346 by nickl. Improve CSS for tables.

parent a4bbb1b9
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -14,6 +14,17 @@ tr.even, tr.odd { ...@@ -14,6 +14,17 @@ tr.even, tr.odd {
td.active { td.active {
background-color: #ddd; background-color: #ddd;
} }
tbody {
border-top: 1px solid #ccc;
}
tbody th {
border-bottom: 1px solid #ccc;
}
thead th {
text-align: left;
padding-right: 1em;
border-bottom: 3px solid #ccc;
}
/* /*
** Other common styles ** Other common styles
......
/* $Id$ */ /* $Id$ */
table.watchdog-event th {
border-bottom: 1px solid #ccc;
}
tr.watchdog-user { tr.watchdog-user {
background: #ffd; background: #ffd;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment