Still working on upgrading to Tailwind CSS v4 an dSkeleton v3.....
This commit is contained in:
@@ -313,7 +313,7 @@ function add_activity_log(
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = true;
|
||||
}
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title={`Edit meeting: ${$lq__post_obj?.title}`}
|
||||
>
|
||||
{#if $idaa_sess.bb.show__inline_edit__post_obj}
|
||||
@@ -329,7 +329,7 @@ function add_activity_log(
|
||||
{@html $lq__post_obj?.title ?? 'New Post'}
|
||||
<!-- - {$lq__post_obj?.id ?? 'Not Yet Saved'} -->
|
||||
</span>
|
||||
{#if $lq__post_obj?.topic_id}<span class="badge badge-info variant-glass-secondary"><span class="fas fa-user-md m-1"></span> {$lq__post_obj?.topic_name}</span>{/if}
|
||||
{#if $lq__post_obj?.topic_id}<span class="badge badge-info preset-tonal-secondary"><span class="fas fa-user-md m-1"></span> {$lq__post_obj?.topic_name}</span>{/if}
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -318,7 +318,7 @@ function send_poster_notification_email() {
|
||||
|
||||
|
||||
<section
|
||||
class="svelte_component ae_section ae_edit post_comment_obj edit__post_comment_obj space-y-2 p-2 border border-1 rounded bg-yellow-100"
|
||||
class="svelte_component ae_section ae_edit post_comment_obj edit__post_comment_obj space-y-2 p-2 border border rounded bg-yellow-100"
|
||||
class:ae_create={!$idaa_slct.post_id}
|
||||
bind:clientHeight={$ae_loc.iframe_height_modal_body}
|
||||
>
|
||||
@@ -341,7 +341,7 @@ function send_poster_notification_email() {
|
||||
onclick={() => {
|
||||
$idaa_sess.bb.show__inline_edit__post_comment_id = false;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Cancel editing of post comment for {$idaa_slct.post_comment_obj?.full_name} (ID: {$idaa_slct.post_comment_obj?.post_id}"
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Cancel Edit
|
||||
@@ -471,7 +471,7 @@ function send_poster_notification_email() {
|
||||
{#if $ae_loc.trusted_access}
|
||||
<button
|
||||
type="button"
|
||||
class="novi_btn btn btn-sm variant-soft-warning float-right"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning float-right"
|
||||
onclick={() => {
|
||||
$idaa_loc.bb.show__admin_options = !$idaa_loc.bb.show__admin_options;
|
||||
}}
|
||||
@@ -611,7 +611,7 @@ function send_poster_notification_email() {
|
||||
<button
|
||||
type="submit"
|
||||
disabled={(disable_submit_btn)}
|
||||
class="novi_btn btn_primary btn btn-primary variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn_primary btn btn-primary preset-tonal-primary border border-primary-500 hover:preset-filled-primary-500 transition"
|
||||
>
|
||||
{#await prom_api__post_comment_obj}
|
||||
<span class="fas fa-spinner fa-spin m-1"></span> Saving
|
||||
@@ -627,7 +627,7 @@ function send_poster_notification_email() {
|
||||
if (!confirm('Are you sure you want to create this post?')) {return false;}
|
||||
// handle_save_post_comment_obj({post_id: $idaa_slct.post_id, method: 'create'});
|
||||
}}
|
||||
class="novi_btn btn_primary btn btn-primary variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn_primary btn btn-primary preset-tonal-primary border border-primary-500 hover:preset-filled-primary-500 transition"
|
||||
>
|
||||
{#await prom_api__post_comment_obj}
|
||||
<span class="fas fa-spinner fa-spin m-1"></span> Saving
|
||||
@@ -645,7 +645,7 @@ function send_poster_notification_email() {
|
||||
if (!confirm('Are you sure you want to delete this post comment?')) {return false;}
|
||||
handle_delete_post_comment_obj({post_comment_id: $idaa_slct.post_comment_id, method: 'delete'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Delete record permanently"
|
||||
>
|
||||
<span class="fas fa-minus m-1"></span> Delete
|
||||
@@ -657,7 +657,7 @@ function send_poster_notification_email() {
|
||||
if (!confirm('Are you sure you want to disable this post comment?')) {return false;}
|
||||
handle_delete_post_comment_obj({post_comment_id: $idaa_slct.post_comment_id, method: 'disable'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Disable record to delete"
|
||||
>
|
||||
<span class="fas fa-minus m-1"></span> Delete
|
||||
@@ -669,7 +669,7 @@ function send_poster_notification_email() {
|
||||
if (!confirm('Are you sure you want to hide this post comment?')) {return false;}
|
||||
handle_delete_post_comment_obj({post_comment_id: $idaa_slct.post_comment_id, method: 'hide'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Hide record to delete"
|
||||
>
|
||||
<span class="fas fa-comment-slash m-1"></span> Delete
|
||||
@@ -684,7 +684,7 @@ function send_poster_notification_email() {
|
||||
onclick={() => {
|
||||
$idaa_sess.bb.show__inline_edit__post_comment_id = false;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Cancel editing of post for {$idaa_slct.post_comment_obj.full_name} (ID: {$idaa_slct.post_comment_obj.post_comment_id}"
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Cancel Edit
|
||||
|
||||
@@ -312,7 +312,7 @@ function send_staff_notification_email() {
|
||||
|
||||
|
||||
<section
|
||||
class="svelte_component ae_section ae_edit post_obj edit__post_obj space-y-2 p-2 border border-1 rounded bg-blue-100"
|
||||
class="svelte_component ae_section ae_edit post_obj edit__post_obj space-y-2 p-2 border border rounded bg-blue-100"
|
||||
class:ae_create={!$idaa_slct.post_id}
|
||||
bind:clientHeight={$ae_loc.iframe_height_modal_body}
|
||||
>
|
||||
@@ -335,7 +335,7 @@ function send_staff_notification_email() {
|
||||
on:click={() => {
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = false;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Cancel editing of post for {$idaa_slct.post_obj.full_name} (ID: {$idaa_slct.post_obj.post_id}"
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Cancel Edit
|
||||
@@ -403,8 +403,8 @@ function send_staff_notification_email() {
|
||||
<button
|
||||
type="button"
|
||||
class="novi_btn btn btn-sm"
|
||||
class:variant-filled-secondary={$idaa_sess.bb.show__inline_edit__file_upload}
|
||||
class:variant-soft-secondary={!$idaa_sess.bb.show__inline_edit__file_upload}
|
||||
class:preset-filled-secondary-500={$idaa_sess.bb.show__inline_edit__file_upload}
|
||||
class:preset-tonal-secondary={!$idaa_sess.bb.show__inline_edit__file_upload}
|
||||
on:click={() => {
|
||||
$idaa_sess.bb.show__inline_edit__file_upload = !$idaa_sess.bb.show__inline_edit__file_upload;
|
||||
}}
|
||||
@@ -480,7 +480,7 @@ function send_staff_notification_email() {
|
||||
|
||||
// window.postMessage({ type: 'download_event_file', hosted_file_id: linked_obj.hosted_file_id_random, filename: linked_obj.filename, auto_download: true }, '*');
|
||||
}}
|
||||
class="novi_btn btn btn-sm lg:btn-md variant-ghost-tertiary hover:variant-filled-tertiary min-w-48"
|
||||
class="novi_btn btn btn-sm lg:btn-md preset-tonal-tertiary border border-tertiary-500 hover:preset-filled-tertiary-500 min-w-48"
|
||||
title={`Download this file:\n${linked_obj.filename}\n[API] SHA256: ${linked_obj?.hash_sha256.slice(0, 10)}... Hosted ID: ${linked_obj.hosted_file_id_random} Archive Content ID: ${linked_obj.archive_content_id}`}
|
||||
>
|
||||
{#await ae_promises[linked_obj.hosted_file_id_random]}
|
||||
@@ -559,7 +559,7 @@ function send_staff_notification_email() {
|
||||
});
|
||||
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning hover:variant-ghost-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning hover:preset-tonal-warning border border-warning-500"
|
||||
title="Delete this file"
|
||||
>
|
||||
<span class="fas fa-trash-alt mx-1"></span>
|
||||
@@ -733,9 +733,9 @@ function send_staff_notification_email() {
|
||||
{#if $ae_loc.trusted_access}
|
||||
<button
|
||||
type="button"
|
||||
class="novi_btn btn btn-sm variant-soft-warning float-right"
|
||||
class:variant-filled-secondary={$idaa_loc.bb.show__admin_options}
|
||||
class:variant-soft-secondary={!$idaa_loc.bb.show__admin_options}
|
||||
class="novi_btn btn btn-sm preset-tonal-warning float-right"
|
||||
class:preset-filled-secondary-500={$idaa_loc.bb.show__admin_options}
|
||||
class:preset-tonal-secondary={!$idaa_loc.bb.show__admin_options}
|
||||
on:click={() => {
|
||||
$idaa_loc.bb.show__admin_options = !$idaa_loc.bb.show__admin_options;
|
||||
}}
|
||||
@@ -878,7 +878,7 @@ function send_staff_notification_email() {
|
||||
<button
|
||||
type="submit"
|
||||
disabled={(disable_submit_btn)}
|
||||
class="novi_btn btn_primary btn btn-primary variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn_primary btn btn-primary preset-tonal-primary border border-primary-500 hover:preset-filled-primary-500 transition"
|
||||
>
|
||||
{#await prom_api__post_obj}
|
||||
<span class="fas fa-spinner fa-spin m-1"></span> Saving
|
||||
@@ -894,7 +894,7 @@ function send_staff_notification_email() {
|
||||
if (!confirm('Are you sure you want to create this post?')) {return false;}
|
||||
// handle_save_post_obj({post_id: $idaa_slct.post_id, method: 'create'});
|
||||
}}
|
||||
class="novi_btn btn_primary btn btn-primary variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn_primary btn btn-primary preset-tonal-primary border border-primary-500 hover:preset-filled-primary-500 transition"
|
||||
>
|
||||
{#await prom_api__post_obj}
|
||||
<span class="fas fa-spinner fa-spin m-1"></span> Saving
|
||||
@@ -912,7 +912,7 @@ function send_staff_notification_email() {
|
||||
if (!confirm('Are you sure you want to delete this post?')) {return false;}
|
||||
handle_delete_post_obj({post_id: $idaa_slct.post_id, method: 'delete'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Delete record permanently"
|
||||
>
|
||||
<span class="fas fa-minus m-1"></span> Delete
|
||||
@@ -924,7 +924,7 @@ function send_staff_notification_email() {
|
||||
if (!confirm('Are you sure you want to disable this post?')) {return false;}
|
||||
handle_delete_post_obj({post_id: $idaa_slct.post_id, method: 'disable'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Disable record to delete"
|
||||
>
|
||||
<span class="fas fa-minus m-1"></span> Delete
|
||||
@@ -936,7 +936,7 @@ function send_staff_notification_email() {
|
||||
if (!confirm('Are you sure you want to hide this post?')) {return false;}
|
||||
handle_delete_post_obj({post_id: $idaa_slct.post_id, method: 'hide'});
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-soft-warning"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning"
|
||||
title="Hide record to delete"
|
||||
>
|
||||
<span class="fas fa-comment-slash m-1"></span> Delete
|
||||
@@ -951,7 +951,7 @@ function send_staff_notification_email() {
|
||||
on:click={() => {
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = false;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Cancel editing of post for {$idaa_slct.post_obj.full_name} (ID: {$idaa_slct.post_obj.post_id}"
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Cancel Edit
|
||||
|
||||
@@ -164,7 +164,7 @@ onDestroy(() => {
|
||||
|
||||
// window.postMessage({ type: 'download_event_file', hosted_file_id: linked_obj.hosted_file_id_random, filename: linked_obj.filename, auto_download: true }, '*');
|
||||
}}
|
||||
class="novi_btn btn btn-sm lg:btn-md variant-ghost-tertiary hover:variant-filled-tertiary min-w-48"
|
||||
class="novi_btn btn btn-sm lg:btn-md preset-tonal-tertiary border border-tertiary-500 hover:preset-filled-tertiary-500 min-w-48"
|
||||
title={`Download this file:\n${linked_obj.filename}\n[API] SHA256: ${linked_obj?.hash_sha256.slice(0, 10)}... Hosted ID: ${linked_obj.hosted_file_id_random} Archive Content ID: ${linked_obj.archive_content_id}`}
|
||||
>
|
||||
{#await ae_promises[linked_obj.hosted_file_id_random]}
|
||||
@@ -247,7 +247,7 @@ onDestroy(() => {
|
||||
$idaa_sess.bb.show__inline_edit__post_comment_id = true;
|
||||
}
|
||||
}}
|
||||
class="novi_btn btn btn-md variant-ghost-secondary hover:variant-filled-secondary transition"
|
||||
class="novi_btn btn btn-md preset-tonal-secondary border border-secondary-500 hover:preset-filled-secondary-500 transition"
|
||||
title={`New comment on: ${$lq__post_obj?.title}`}
|
||||
>
|
||||
<span class="fas fa-plus m-1"></span> New Comment
|
||||
@@ -270,7 +270,7 @@ onDestroy(() => {
|
||||
// $idaa_sess.bb.show_view__post_id = false;
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = true;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Edit post for {$lq__post_obj?.full_name} (ID: {$lq__post_obj?.post_id}"
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Edit Post
|
||||
@@ -289,7 +289,7 @@ onDestroy(() => {
|
||||
{/if}
|
||||
|
||||
{#if $lq__post_comment_obj_li?.length}
|
||||
<section class="post_comment_obj_li space-y-2 border border-1 p-0 border-y-0">
|
||||
<section class="post_comment_obj_li space-y-2 border border p-0 border-y-0">
|
||||
{#each $lq__post_comment_obj_li as post_comment_obj, index}
|
||||
|
||||
<div
|
||||
@@ -343,7 +343,7 @@ onDestroy(() => {
|
||||
|
||||
$idaa_sess.bb.show__inline_edit__post_comment_id = post_comment_obj.post_comment_id;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title="Edit comment by {post_comment_obj?.full_name} (for post ID {$lq__post_obj?.id})"
|
||||
>
|
||||
<span class="fas fa-edit"></span> Edit Comment
|
||||
|
||||
@@ -23,19 +23,19 @@ onMount(() => {
|
||||
|
||||
{#if idaa_post_obj} <!-- This check for the idaa_post_obj is here in case the IDB entry is deleted. -->
|
||||
<div
|
||||
class="container bb_post post_obj border border-1 p-2 mb-2 space-y-2 w-full max-w-screen-lg flex flex-col items-center justify-center bg-white rounded-lg"
|
||||
class="container bb_post post_obj border border p-2 mb-2 space-y-2 w-full max-w-(--breakpoint-lg) flex flex-col items-center justify-center bg-white rounded-lg"
|
||||
class:dim={idaa_post_obj?.hide}
|
||||
class:bg-warning-100={!idaa_post_obj?.enable}
|
||||
class:hidden={(idaa_post_obj.hide && $idaa_loc.bb.qry__hidden != 'all') || (!idaa_post_obj.enable && $idaa_loc.bb.qry__enabled != 'all')}
|
||||
>
|
||||
|
||||
<header class="ae_header">
|
||||
<h3 class="post__title flex flex-row gap-2 items-center h3 border-b border-1 border-gray-200 w-full">
|
||||
<h3 class="post__title flex flex-row gap-2 items-center h3 border-b border border-gray-200 w-full">
|
||||
<span class="post__title">
|
||||
<span class="fas fa-comment-alt m-1"></span>
|
||||
{@html idaa_post_obj.title}
|
||||
</span>
|
||||
{#if idaa_post_obj.topic_name}<span class="badge badge-info variant-glass-secondary"><span class="fas fa-user-md m-1"></span> {idaa_post_obj.topic_name}</span>{/if}
|
||||
{#if idaa_post_obj.topic_name}<span class="badge badge-info preset-tonal-secondary"><span class="fas fa-user-md m-1"></span> {idaa_post_obj.topic_name}</span>{/if}
|
||||
</h3>
|
||||
</header>
|
||||
|
||||
@@ -45,7 +45,7 @@ onMount(() => {
|
||||
<div class="post__content w-full p-2 pb-8 bg-gray shadow-md rounded text-wrap text-sm font-normal reset_css overflow-hidden max-h-96 relative">
|
||||
{@html idaa_post_obj.content}
|
||||
<!-- Add an overlay to fade the content out when close to max height -->
|
||||
<div class="post__content__fade w-full h-16 absolute bottom-0 left-0 bg-gradient-to-t from-white to-transparent"></div>
|
||||
<div class="post__content__fade w-full h-16 absolute bottom-0 left-0 bg-linear-to-t from-white to-transparent"></div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -70,7 +70,7 @@ onMount(() => {
|
||||
$idaa_sess.bb.show__modal_view__post_id = idaa_post_obj?.post_id;
|
||||
$idaa_sess.bb.show__modal_edit__post_id = false;
|
||||
}}
|
||||
class="novi_btn btn btn-md variant-ghost-primary hover:variant-filled-primary transition"
|
||||
class="novi_btn btn btn-md preset-tonal-primary border border-primary-500 hover:preset-filled-primary-500 transition"
|
||||
title={`View: ${idaa_post_obj?.title}`}
|
||||
>
|
||||
<span class="fas fa-envelope-open m-1"></span> Open
|
||||
@@ -102,7 +102,7 @@ onMount(() => {
|
||||
$idaa_sess.bb.show__modal_view__post_id = idaa_post_obj.post_id;
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = true;
|
||||
}}
|
||||
class="novi_btn btn btn-sm variant-ghost-warning hover:variant-filled-warning transition"
|
||||
class="novi_btn btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition"
|
||||
title={`Edit post: ${idaa_post_obj.title}`}
|
||||
>
|
||||
<span class="fas fa-edit m-1"></span> Edit Post
|
||||
|
||||
@@ -58,7 +58,7 @@ if (log_lvl) console.log('** Component Loaded: ** Post Options');
|
||||
$idaa_loc.bb.qry__limit = 100;
|
||||
$idaa_trig.post_li = true;
|
||||
}}
|
||||
class="novi_btn btn_show_bb_post ae_btn btn btn-info btn-sm variant-ghost-secondary"
|
||||
class="novi_btn btn_show_bb_post ae_btn btn btn-info btn-sm preset-tonal-secondary border border-secondary-500"
|
||||
>
|
||||
<span class="fas fa-eye m-1"></span> Show Hidden Posts
|
||||
</button>
|
||||
@@ -69,7 +69,7 @@ if (log_lvl) console.log('** Component Loaded: ** Post Options');
|
||||
$idaa_loc.bb.qry__hidden = 'not_hidden';
|
||||
$idaa_trig.post_li = true;
|
||||
}}
|
||||
class="novi_btn btn_hide_bb_post ae_btn btn btn-info btn-sm variant-ghost-secondary"
|
||||
class="novi_btn btn_hide_bb_post ae_btn btn btn-info btn-sm preset-tonal-secondary border border-secondary-500"
|
||||
>
|
||||
<span class="fas fa-eye-slash m-1"></span> Hide Hidden Posts
|
||||
</button>
|
||||
@@ -84,7 +84,7 @@ if (log_lvl) console.log('** Component Loaded: ** Post Options');
|
||||
$idaa_loc.bb.qry__limit = 500;
|
||||
$idaa_trig.post_li = true;
|
||||
}}
|
||||
class="novi_btn btn_show_bb_post ae_btn btn btn-warning btn-sm variant-ghost-secondary"
|
||||
class="novi_btn btn_show_bb_post ae_btn btn btn-warning btn-sm preset-tonal-secondary border border-secondary-500"
|
||||
>
|
||||
<span class="fas fa-eye m-1"></span> Show Disabled Posts
|
||||
</button>
|
||||
@@ -95,7 +95,7 @@ if (log_lvl) console.log('** Component Loaded: ** Post Options');
|
||||
$idaa_loc.bb.qry__enabled = 'enabled';
|
||||
$idaa_trig.post_li = true;
|
||||
}}
|
||||
class="novi_btn btn_hide_bb_post ae_btn btn btn-warning btn-sm variant-ghost-secondary"
|
||||
class="novi_btn btn_hide_bb_post ae_btn btn btn-warning btn-sm preset-tonal-secondary border border-secondary-500"
|
||||
>
|
||||
<span class="fas fa-eye-slash m-1"></span> Hide Disabled Posts
|
||||
</button>
|
||||
@@ -126,7 +126,7 @@ if (log_lvl) console.log('** Component Loaded: ** Post Options');
|
||||
$idaa_sess.bb.show__modal_view__post_id = true;
|
||||
$idaa_sess.bb.show__inline_edit__post_obj = true;
|
||||
}}
|
||||
class="novi_btn btn_new_post btn btn-sm variant-ghost-warning hover:variant-filled-warning transition text-xs"
|
||||
class="novi_btn btn_new_post btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition text-xs"
|
||||
title="Create new post"
|
||||
>
|
||||
<span class="fas fa-plus m-1"></span> Create New Post
|
||||
|
||||
Reference in New Issue
Block a user