mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
Merge branch 'highlight_mark_button3' into 'dev'
Highlight_mark_button3 See merge request hubzilla/core!2185
This commit is contained in:
@@ -799,6 +799,7 @@ class ThreadItem {
|
||||
'$submit' => t('Submit'),
|
||||
'$edbold' => t('Bold'),
|
||||
'$editalic' => t('Italic'),
|
||||
'$edhighlighter' => t('Highlight selected text'),
|
||||
'$eduline' => t('Underline'),
|
||||
'$edquote' => t('Quote'),
|
||||
'$edcode' => t('Code'),
|
||||
|
||||
@@ -1255,6 +1255,7 @@ function hz_status_editor($x, $popup = false) {
|
||||
'$writefiles' => $writefiles,
|
||||
'$bold' => t('Bold'),
|
||||
'$italic' => t('Italic'),
|
||||
'$highlighter' => t('Highlight selected text'),
|
||||
'$underline' => t('Underline'),
|
||||
'$quote' => t('Quote'),
|
||||
'$code' => t('Code'),
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
<button class="btn btn-outline-secondary btn-sm border-0" title="{{$edcode}}" onclick="insertbbcomment('{{$comment}}','code', {{$id}}); return false;">
|
||||
<i class="bi bi-code comment-icon"></i>
|
||||
</button>
|
||||
<button class="btn btn-outline-secondary btn-sm border-0" title="highlight" onclick="insertbbcomment('{{$comment}}','mark', {{$id}}); return false;">
|
||||
<button class="btn btn-outline-secondary btn-sm border-0" title="{{$edhighlighter}}" onclick="insertbbcomment('{{$comment}}','mark', {{$id}}); return false;">
|
||||
<i class="bi bi-highlighter comment-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
<button type="button" id="main-editor-code" class="btn btn-outline-secondary btn-sm border-0" title="{{$code}}" onclick="inserteditortag('code', 'profile-jot-text'); return false;">
|
||||
<i class="bi bi-code jot-icons"></i>
|
||||
</button>
|
||||
<button type="button" id="main-editor-bold" class="btn btn-outline-secondary btn-sm border-0" title="highlight" onclick="inserteditortag('mark', 'profile-jot-text'); return false;">
|
||||
<button type="button" id="main-editor-bold" class="btn btn-outline-secondary btn-sm border-0" title="{{$highlighter}}" onclick="inserteditortag('mark', 'profile-jot-text'); return false;">
|
||||
<i class="bi bi-highlighter jot-icons"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user