From 3d6255ae24310a935caf4e74729aa7165f94aeda Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 17 Jun 2017 17:59:31 -0700 Subject: brainstorming a comment moderation system --- view/tpl/comment_item.tpl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'view') diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index bd5176c83..92eeac056 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,6 +10,13 @@ + {{if $anoncomments && ! $observer}} +
+ {{include file="field_input.tpl" field=$authorname}} + {{include file="field_input.tpl" field=$authormail}} + {{$anon_extras}} +
+ {{/if}} {{if $qcomment}} {{if $anoncomments && ! $observer}} -
- {{include file="field_input.tpl" field=$authorname}} - {{include file="field_input.tpl" field=$authormail}} + {{/if}} diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index 66618a216..4ca6378b8 100755 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -101,6 +101,17 @@
+ {{/if}} + {{if $item.mode === 'moderate'}} + +
+ {{$item.approve}} + {{$item.delete}} + +
+ + + {{/if}} -- cgit v1.2.3 From aed1373b7099a081f258d36270df509eeed9ddcd Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Jun 2017 11:52:09 +0200 Subject: update bs4-dev and use min version of popper --- view/css/bootstrap-red.css | 6 ------ view/theme/redbasic/php/theme_init.php | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) (limited to 'view') diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index b2b2ca759..1bb82f11c 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -46,12 +46,6 @@ nav .dropdown-menu { overflow: auto; } -/* this is a hack and needs fixing in bootstrap */ -nav .dropdown-menu-right { - right: 0; - left: auto !important; -} - #navbar-collapse-2 { flex-basis: 100%; max-height: 70vh; diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php index bfeabcb46..b12d80ea5 100644 --- a/view/theme/redbasic/php/theme_init.php +++ b/view/theme/redbasic/php/theme_init.php @@ -8,7 +8,7 @@ head_add_css('/library/datetimepicker/jquery.datetimepicker.css'); head_add_css('/library/bootstrap-colorpicker/dist/css/bootstrap-colorpicker.min.css'); require_once('view/php/theme_init.php'); -head_add_js('/library/popper/popper.js'); +head_add_js('/library/popper/popper.min.js'); head_add_js('/library/bootstrap/js/bootstrap.min.js'); head_add_js('/library/bootbox/bootbox.min.js'); head_add_js('/library/bootstrap-tagsinput/bootstrap-tagsinput.js'); -- cgit v1.2.3 From b858eec644f5a3e773c9513891070bc86f700aa8 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Jun 2017 12:57:23 +0200 Subject: make bootstrap respect our radius setting --- view/theme/redbasic/css/style.css | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index faa292fe5..ce98f8d49 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1339,6 +1339,14 @@ main.fullscreen .section-content-wrapper-np { } /* bootstrap overrides */ +.btn, +.rounded-top, +.form-control, +.nav-pills .nav-link, +.nav-tabs .nav-link { + border-radius: $radius !important; +} + blockquote { font-size: 1rem; font-style: italic; @@ -1353,10 +1361,6 @@ blockquote { border-radius: $radius; } -.dropdown-menu img { - border-radius: $radius; -} - .dropdown-item { color: $font_colour; } @@ -1491,7 +1495,7 @@ dl.bb-dl > dd > li { .form-group.checkbox > div label { display: block; overflow: hidden; cursor: pointer; border: 1px solid #ccc; - border-radius: 4px; + border-radius: $radius; margin:0px; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -- cgit v1.2.3 From 075ced80a6e167c8a81b07d134c7575ba5da6676 Mon Sep 17 00:00:00 2001 From: git-marijus Date: Tue, 20 Jun 2017 15:44:47 +0200 Subject: Remove important flag --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ce98f8d49..07dfd938d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1344,7 +1344,7 @@ main.fullscreen .section-content-wrapper-np { .form-control, .nav-pills .nav-link, .nav-tabs .nav-link { - border-radius: $radius !important; + border-radius: $radius; } blockquote { -- cgit v1.2.3