1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 01:03:26 +01:00

Use material theme colour for "FULL ONLY" entries.

This commit is contained in:
Markus Birth 2017-12-29 00:58:29 +01:00
parent e04f479716
commit be31fd513f
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
:root {
--mdc-theme-primary: #1b5e20;
--mdc-theme-primary-light: #4c8c4a;
--mdc-theme-primary-dark: #003300;
--mdc-theme-secondary: #f9a825;
--mdc-theme-secondary-light: #ffd95a;
--mdc-theme-secondary-dark: #c17900;
}
body {

View File

@ -56,7 +56,7 @@ foreach ($allVars as $family => $models) {
if (in_array($v, $allOta)) {
echo '<td>' . $v . '</td>';
} else {
echo '<td class="fullonly">' . $v . '</td>';
echo '<td class="fullonly mdc-theme--secondary-dark">' . $v . '</td>';
}
} else {
echo '<td class="empty">- - -</td>';