diff --git a/gulp/res/css/style.css b/gulp/res/css/style.css index 03b1464b..f83a5beb 100644 --- a/gulp/res/css/style.css +++ b/gulp/res/css/style.css @@ -345,7 +345,8 @@ td, th { max-height: 128px; } -figure { +input:invalid, textarea:invalid { + box-shadow: none; } input textarea { @@ -381,7 +382,6 @@ input textarea { .board-banner { margin: 10px; max-width: 100%; - /*border: 1px solid #a9a9a9;*/ } .board-description { diff --git a/views/includes/actionfooter.pug b/views/includes/actionfooter.pug index c3ac4edc..1337335d 100644 --- a/views/includes/actionfooter.pug +++ b/views/includes/actionfooter.pug @@ -5,7 +5,7 @@ details.toggle-label if board.settings.userPostDelete label input.post-check(type='checkbox', name='delete' value=1) - | Delete + | Delete Posts if board.settings.userPostUnlink label input.post-check(type='checkbox', name='unlink_file' value=1) diff --git a/views/includes/actionfooter_globalmanage.pug b/views/includes/actionfooter_globalmanage.pug index 3d70d36d..f3b3d7e2 100644 --- a/views/includes/actionfooter_globalmanage.pug +++ b/views/includes/actionfooter_globalmanage.pug @@ -4,7 +4,7 @@ details.toggle-label h4.no-m-p Actions: label input.post-check(type='checkbox', name='delete' value=1) - | Delete + | Delete Posts label input.post-check(type='checkbox', name='delete_file' value=1) | Delete Files diff --git a/views/includes/actionfooter_manage.pug b/views/includes/actionfooter_manage.pug index d36f9770..b279ef7c 100644 --- a/views/includes/actionfooter_manage.pug +++ b/views/includes/actionfooter_manage.pug @@ -4,7 +4,7 @@ details.toggle-label h4.no-m-p Actions: label input.post-check(type='checkbox', name='delete' value=1) - | Delete + | Delete Posts label input.post-check(type='checkbox', name='delete_file' value=1) | Delete Files diff --git a/views/includes/postform.pug b/views/includes/postform.pug index 9cf38708..b98f4acc 100644 --- a/views/includes/postform.pug +++ b/views/includes/postform.pug @@ -55,4 +55,8 @@ section.form-wrapper.flex-center .postform-col iframe.captcha(src='/captcha.html' width=200 height=110 scrolling='no') input(type='text', name='captcha', autocomplete='off' placeholder='captcha text' maxlength='6' required) + if !isThread && (board.settings.forceOPFile || board.settings.forceOPMessage || board.settings.forceOPSubject) + small + span.required * + | = required field input(type='submit', value=`New ${isThread ? 'Reply' : 'Thread'}`)