diff --git a/gulp/res/css/style.css b/gulp/res/css/style.css index 7bfa3365..891b216f 100644 --- a/gulp/res/css/style.css +++ b/gulp/res/css/style.css @@ -9,6 +9,16 @@ body { margin: 0; } +.row { + display: flex; + flex-direction: row; +} + +.col { + display: flex; + flex-direction: column; +} + .code { text-align: left; border-left: 10px solid #B7C5D9; @@ -209,7 +219,7 @@ td, th { align-items: center; } -.post-container, .pages, summary { +.post-container, .pages, .toggle-summary { background: #D6DAF0; border: 1px solid #B7C5D9; } @@ -237,7 +247,7 @@ td, th { box-shadow: inset 0 0 100px 100px rgba(255,255,255,.25); } -summary { +.toggle-summary { margin-bottom: 1px; padding: 10px; cursor: pointer; @@ -308,7 +318,7 @@ summary { text-align: center; margin: 2px; margin-top: 0px; - max-width: 128px; + max-width: 150px; overflow: hidden; text-overflow: ellipsis; word-break: keep-all; @@ -360,7 +370,7 @@ input textarea { .board-banner { margin: 10px; max-width: 100%; - border: 1px solid #a9a9a9; + /*border: 1px solid #a9a9a9;*/ } .board-description { diff --git a/gulp/res/img/defaultbanner.png b/gulp/res/img/defaultbanner.png new file mode 100644 index 00000000..46cd2780 Binary files /dev/null and b/gulp/res/img/defaultbanner.png differ diff --git a/views/includes/actionfooter.pug b/views/includes/actionfooter.pug index f8255dd5..5e938d6a 100644 --- a/views/includes/actionfooter.pug +++ b/views/includes/actionfooter.pug @@ -1,5 +1,5 @@ details.toggle-label - summary Show Post Actions + summary.toggle-summary Show Post Actions .actions h4.no-m-p Actions: label diff --git a/views/includes/actionfooter_globalmanage.pug b/views/includes/actionfooter_globalmanage.pug index c289a50e..90d9b47a 100644 --- a/views/includes/actionfooter_globalmanage.pug +++ b/views/includes/actionfooter_globalmanage.pug @@ -1,5 +1,5 @@ details.toggle-label - summary Show Post Actions + summary.toggle-summary Show Post Actions .actions h4.no-m-p Actions: label diff --git a/views/includes/actionfooter_manage.pug b/views/includes/actionfooter_manage.pug index 68163047..636e708c 100644 --- a/views/includes/actionfooter_manage.pug +++ b/views/includes/actionfooter_manage.pug @@ -1,5 +1,5 @@ details.toggle-label - summary Show Post Actions + summary.toggle-summary Show Post Actions .actions h4.no-m-p Actions: label diff --git a/views/includes/postform.pug b/views/includes/postform.pug index 0dac0410..38107809 100644 --- a/views/includes/postform.pug +++ b/views/includes/postform.pug @@ -1,6 +1,6 @@ section.form-wrapper.flex-center details.toggle-label - summary Show Post Form + summary.toggle-summary Show Post Form form.form-post(action=`/forms/board/${board._id}/post`, enctype='multipart/form-data', method='POST') //input(type='hidden' name='_csrf' value=csrf) input(type='hidden' name='thread' value=thread != null ? thread.postId : null)