diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-02 05:49:38 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-02 05:49:38 +0100 |
commit | 42436de710d55693d54e9e8895db62858e07f435 (patch) | |
tree | fe38b6b05e71356e0aba93656a202e772bed19bf /template/admin | |
parent | 249b487a2c91dab5fbe1747080734407a8b0cb14 (diff) | |
download | blog-42436de710d55693d54e9e8895db62858e07f435.tar.gz blog-42436de710d55693d54e9e8895db62858e07f435.tar.xz blog-42436de710d55693d54e9e8895db62858e07f435.zip |
The colon characters for the key-value arguments were moved directly into the <strong> tags. A CSS optimization was additionally made.
Diffstat (limited to 'template/admin')
-rw-r--r-- | template/admin/html/page/item.php | 2 | ||||
-rw-r--r-- | template/admin/html/post/item.php | 2 | ||||
-rw-r--r-- | template/admin/html/user/item.php | 2 | ||||
-rw-r--r-- | template/admin/rsrc/main.css | 1 |
4 files changed, 4 insertions, 3 deletions
diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index fa251cb..e7032f0 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -14,7 +14,7 @@ <?php if($PAGE['ARGV']): ?> <ul class="arguments"> <?php foreach($PAGE['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> <?php endforeach; ?> </ul> <?php endif; ?> diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php index 83a1d35..e81513a 100644 --- a/template/admin/html/post/item.php +++ b/template/admin/html/post/item.php @@ -14,7 +14,7 @@ <?php if($POST['ARGV']): ?> <ul class="arguments"> <?php foreach($POST['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> <?php endforeach; ?> </ul> <?php endif; ?> diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php index 62e2c60..d8e43cf 100644 --- a/template/admin/html/user/item.php +++ b/template/admin/html/user/item.php @@ -13,7 +13,7 @@ <?php if($USER['ARGV']): ?> <ul class="arguments"> <?php foreach($USER['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> <?php endforeach; ?> </ul> <?php endif; ?> diff --git a/template/admin/rsrc/main.css b/template/admin/rsrc/main.css index 5278fda..10dd7f8 100644 --- a/template/admin/rsrc/main.css +++ b/template/admin/rsrc/main.css @@ -147,6 +147,7 @@ table,td{padding:0.5rem;border:0.05rem solid #AAA;} /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ .arguments{list-style:none;margin:0;padding:0.25rem 0.75rem;background:#EEE;font-size:0.6rem;text-align:center;border-top:0.05rem solid #AAA;} .arguments > li{display:inline;} +.arguments > li > span{color:#40779A;} .arguments > li:before{content:"[";font-weight:700;margin-right:0.1rem;} .arguments > li:after{content:"]";font-weight:700;margin-left:0.1rem;} |