diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 14:18:52 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 14:18:52 +0100 |
commit | dbdff59c140fe45d858f4dc2c611daf56005aef6 (patch) | |
tree | 8ea90353999d740bb47e7d03d7a64f7e8f9f37d0 /assets/css/home.css | |
parent | d9a0fb2efc8c09ab00b76bb68ec0d1f24ef7d1a5 (diff) | |
download | wcms-dbdff59c140fe45d858f4dc2c611daf56005aef6.tar.gz wcms-dbdff59c140fe45d858f4dc2c611daf56005aef6.zip |
new feature : secure level coloration in home
Diffstat (limited to 'assets/css/home.css')
-rw-r--r-- | assets/css/home.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index bfae718..b14f9a1 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -119,6 +119,22 @@ table a.tag { padding: 1px 4px; } +table a.secure{ + padding: 1px 3px; +} + +table a.secure.private { + background-color: #b9b67b; +} + +table a.secure.not_published { + background-color: #b97b7b; +} + +table a.secure.public { + background-color: #80b97b; +} + body { margin: 0; @@ -541,3 +557,5 @@ footer { } + + |