diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-29 01:09:30 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-29 01:13:32 +0200 |
commit | 9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea (patch) | |
tree | fd3a488d2f910781ef172b5447f3a476cdf0379e /template/admin/rsrc | |
parent | 07eaab716f894b7668fd2aea6c3cbe81036efdf2 (diff) | |
download | blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.tar.gz blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.tar.xz blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.zip |
Two changes have been made in this commit:
+ The method "Item::getArguments" has been optimized and checks now the syntax of the argument names (only A-Z, a-z, 0-9 and underscores are allowed).
+ The admin template has been changed and displays now the used arguments of an item within the list.
Diffstat (limited to 'template/admin/rsrc')
-rw-r--r-- | template/admin/rsrc/main.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/template/admin/rsrc/main.css b/template/admin/rsrc/main.css index cd2493e..a064425 100644 --- a/template/admin/rsrc/main.css +++ b/template/admin/rsrc/main.css @@ -146,6 +146,14 @@ a.brackets:before,a.brackets:after{color:#222;} .item-list-li h2 > span{float:right;} /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ +/* Argument list +/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ +.arguments{list-style:none;margin:0;padding:0.25rem 1rem;background:#EEE;font-size:0.6rem;text-align:center;border-top:0.05rem solid #AAA;} +.arguments > li{display:inline;} +.arguments > li:before{content:"[";font-weight:700;margin-right:0.1rem;} +.arguments > li:after{content:"]";font-weight:700;margin-left:0.1rem;} + +/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ /* Form flex-box /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ form{border:0.05rem solid #AAA;} |