diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-02 23:14:31 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-02 23:14:31 -0700 |
commit | 2d33ab3dd1f72b5b737e8af3a2c001ecbca6b14b (patch) | |
tree | 72cfbf4943f24d28d3f504cf60790cd569b1c225 /system/admin/static/dashboard | |
parent | 37d3f13e071cfdb5e063c67dec604c10dbc6ddde (diff) |
adding more UI, rich text editor, implentation and example in post.go, as well as db insert/update and retrieval. NOTE: rich text editor content is stored as html escaped entity in DB.
Diffstat (limited to 'system/admin/static/dashboard')
-rw-r--r-- | system/admin/static/dashboard/css/admin.css | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/system/admin/static/dashboard/css/admin.css b/system/admin/static/dashboard/css/admin.css index 4f22bda..7ee2cb8 100644 --- a/system/admin/static/dashboard/css/admin.css +++ b/system/admin/static/dashboard/css/admin.css @@ -1,5 +1,9 @@ .body {} +.navbar-fixed { + z-index: 10000 !important; +} + .nav-wrapper { width: 95%; max-width: 1300px; @@ -36,4 +40,31 @@ textarea { .clear.padding { padding: 10px 0; -}
\ No newline at end of file +} + +select.browser-default { + margin: 10px 0; +} + +.iso-texteditor { + position: relative; + margin: 20px 0; +} + +/* OVERRIDE Bootstrap + Materialize conflicts */ +.iso-texteditor.input-field label { + color: #9e9e9e; + position: absolute; + top: 0.8rem; + left: 0.75rem; + font-size: 0.8rem; + display: block; + font-weight: normal !important; + cursor: text; + transition: .2s ease-out; + -webkit-transform: translateY(-140%); + -moz-transform: translateY(-140%); + -ms-transform: translateY(-140%); + -o-transform: translateY(-140%); + transform: translateY(-140%); +} |