diff options
-rw-r--r-- | view/theme/redbasic/css/style.css | 6 | ||||
-rw-r--r-- | view/tpl/edpost_head.tpl | 2 | ||||
-rw-r--r-- | view/tpl/jot.tpl | 15 |
3 files changed, 10 insertions, 13 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 0a45f18f3..d408b5d92 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1022,11 +1022,7 @@ img.mail-conv-sender-photo { } -#jot-title, -#jot-pagetitle, -#profile-jot-text { - border-radius: var(--bs-border-radius); -} + #profile-jot-text::-webkit-input-placeholder { font-size: 1.2rem; diff --git a/view/tpl/edpost_head.tpl b/view/tpl/edpost_head.tpl index 94c882d53..b8b1cdbc5 100644 --- a/view/tpl/edpost_head.tpl +++ b/view/tpl/edpost_head.tpl @@ -11,7 +11,7 @@ <h2>{{$title}}</h2> <div class="clear"></div> </div> - <div id="webpage-editor" class="section-content-tools-wrapper"> + <div id="webpage-editor" class="section-content-tools-wrapper rounded-bottom"> {{$editor}} </div> </div> diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index a44b5b868..6c88e02b5 100644 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -28,13 +28,9 @@ <input type="hidden" id="jot-consensus" name="consensus" value="{{if $consensus}}{{$consensus}}{{else}}0{{/if}}" /> <input type="hidden" id="jot-nocomment" name="nocomment" value="{{if $nocomment}}{{$nocomment}}{{else}}0{{/if}}" /> - {{if $webpage}} - <div id="jot-pagetitle-wrap" class="jothidden"> - <input class="w-100 border-0" name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}"> - </div> - {{/if}} + <div id="jot-title-wrap" class="jothidden"> - <input class="w-100 border-0" name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" tabindex="1" value="{{$title}}"> + <input class="w-100 border-0 rounded-top" name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" tabindex="1" value="{{$title}}"> </div> <div id="jot-summary-wrap" class="jothidden"> <input class="w-100 border-0" name="summary" id="jot-summary" type="text" placeholder="{{$placeholdersummary}}" tabindex="2" value="{{$summary}}"> @@ -44,6 +40,11 @@ <input class="w-100 border-0" name="category" id="jot-category" type="text" placeholder="{{$placeholdercategory}}" value="{{$category}}" data-role="cat-tagsinput"> </div> {{/if}} + {{if $webpage}} + <div id="jot-pagetitle-wrap" class="jothidden"> + <input class="w-100 border-0 rounded-top" name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}"> + </div> + {{/if}} {{if $customjotheaders}} <div id="jot-customjotheaders-wrap" class="jothidden"> {{$customjotheaders}} @@ -60,7 +61,7 @@ </button> {{/if}} </div> - <textarea class="profile-jot-text" id="profile-jot-text" name="body" tabindex="2" placeholder="{{$placeholdtext}}" tabindex="3">{{$content}}</textarea> + <textarea class="profile-jot-text rounded" id="profile-jot-text" name="body" tabindex="2" placeholder="{{$placeholdtext}}" tabindex="3">{{$content}}</textarea> </div> {{if $attachment}} <div id="jot-attachment-wrap"> |