diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-11-22 11:30:04 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-11-22 11:30:04 +0100 |
commit | 060982adb426e629747d16410d554e0da333172d (patch) | |
tree | 6379fff3eeb1214d0bd48065556ad3c7dd3ef5ef /view/css | |
parent | 69123590fb7cdb741cc09de177b334bcca65da05 (diff) | |
download | volse-hubzilla-060982adb426e629747d16410d554e0da333172d.tar.gz volse-hubzilla-060982adb426e629747d16410d554e0da333172d.tar.bz2 volse-hubzilla-060982adb426e629747d16410d554e0da333172d.zip |
display wiki list on wiki landing page.
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/mod_wiki.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/view/css/mod_wiki.css b/view/css/mod_wiki.css new file mode 100644 index 000000000..1abb0b3b4 --- /dev/null +++ b/view/css/mod_wiki.css @@ -0,0 +1,40 @@ +#ace-editor { + position: relative; + width: 100%; + height: 500px; +} + +.fade.in { + -webkit-transition: opacity 0.5s 0.5s ease; + -moz-transition: opacity 0.5s 0.5s ease; + -o-transition: opacity 0.5s 0.5s ease; + transition: opacity 0.5s 0.5s ease; +} + +#new-wiki-form-wrapper { + display: none; +} + +#wikis-index { + width: 100%; +} + +#wikis-index th:nth-child(1), +#wikis-index td:nth-child(1){ + padding: 7px 3px 7px 10px; +} + +#wikis-index th:nth-child(2), +#wikis-index td:nth-child(2){ + padding: 7px 10px 7px 7px; +} + +#wikis-index th:nth-child(3), +#wikis-index td:nth-child(3){ + padding: 7px 10px 7px 7px; +} + +.wikis-index-tool { + padding: 7px 10px; +} + |