diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-07 20:42:43 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-07 20:42:43 +0200 |
commit | a7457a80770467004230ee4049de688b9a8d8ece (patch) | |
tree | 514c53aa4cee9e8758bbcdd3ca550890d2530450 /template/admin | |
parent | 2c9c42143b41a9ee316bb2d2be26aae1c426a6b2 (diff) | |
download | blog-a7457a80770467004230ee4049de688b9a8d8ece.tar.gz blog-a7457a80770467004230ee4049de688b9a8d8ece.tar.xz blog-a7457a80770467004230ee4049de688b9a8d8ece.zip |
CSS-Bugfix: Missing border was added.
Diffstat (limited to 'template/admin')
-rw-r--r-- | template/admin/rsrc/main.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/template/admin/rsrc/main.css b/template/admin/rsrc/main.css index 2466b31..82dc94f 100644 --- a/template/admin/rsrc/main.css +++ b/template/admin/rsrc/main.css @@ -156,6 +156,8 @@ form{border:0.05rem solid #AAA;} .flex{display:flex;width:100%;justify-content:center;overflow:hidden;box-sizing:border-box;} .flex + section{border-top:0.05rem solid #AAA;} .flex > section {display:flex;box-sizing:padding-box;width:100%;} +.flex > section{border-right:0.05rem solid #AAA;} +.flex > section:last-child{border-right:none;} .flex > section > div{display:flex;align-items:center;padding:0.5rem;box-sizing:border-box;} .flex > section > div + div{border-left:0.05rem solid #AAA;} .flex.flex-responsive > section{width:50%;} |