Merge branch 'main' into allthebookmarks-com
This commit is contained in:
@ -12,6 +12,9 @@
|
|||||||
.context-main {
|
.context-main {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
.context-second {
|
||||||
|
color: #1e1e1e;
|
||||||
|
}
|
||||||
.context-main-bg {
|
.context-main-bg {
|
||||||
background-color: #2c2c2c;
|
background-color: #2c2c2c;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
|
<div class="col-8 mx-auto p-4 rounded shadow-sm mb-5 context-main-bg mt-4 container">
|
||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm mb-5 context-main-bg mt-4 container">
|
|
||||||
<h2 class="text-center mb-4">Bug Report</h2>
|
<h2 class="text-center mb-4">Bug Report</h2>
|
||||||
<p>Thank you for visiting our bug reporting page. We value our users' input highly and in an effort to better serve your needs, please fill out the form below to help us address this issue.</p>
|
<p>Thank you for visiting our bug reporting page. We value our users' input highly and in an effort to better serve your needs, please fill out the form below to help us address this issue.</p>
|
||||||
<p>We read each and every bug report submitted, and by submitting this form you allow us to send you a follow-up email.</p>
|
<p>We read each and every bug report submitted, and by submitting this form you allow us to send you a follow-up email.</p>
|
||||||
|
@ -130,8 +130,10 @@ class Notification extends DatabaseModel {
|
|||||||
}
|
}
|
||||||
if ( $message->seenAt == 0 ) {
|
if ( $message->seenAt == 0 ) {
|
||||||
$message->unseenBadge = Views::simpleView( 'notifications.unseenBadge' );
|
$message->unseenBadge = Views::simpleView( 'notifications.unseenBadge' );
|
||||||
|
$message->markReadLink = '<a href="{ROOT_URL}notifications/markRead/'.$message->ID.'" class="btn btn-sm btn-primary"><i class="fa-solid fa-fw fa-envelope-open"></i></a>';
|
||||||
} else {
|
} else {
|
||||||
$message->unseenBadge = '';
|
$message->unseenBadge = '';
|
||||||
|
$message->markReadLink = '';
|
||||||
}
|
}
|
||||||
$out[] = (object) $message;
|
$out[] = (object) $message;
|
||||||
if ( !empty( $end ) ) {
|
if ( !empty( $end ) ) {
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
|
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
||||||
<div class="container py-4">
|
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<legend>Notifications</legend>
|
<legend class="text-center">Notifications</legend>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -14,14 +13,20 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{LOOP}
|
{LOOP}
|
||||||
<tr {unseenBadge}>
|
<tr {unseenBadge}>
|
||||||
<td>{notification}</td>
|
<td class=" context-main">{notification}</td>
|
||||||
<td><a href="{ROOT_URL}notifications/markRead/{ID}" class="btn btn-sm btn-primary"><i class="fa fa-fw fa-upload"></i></a></td>
|
<td>
|
||||||
<td><a href="{ROOT_URL}notifications/delete/{ID}" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></a></td>
|
{markReadLink}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a href="{ROOT_URL}notifications/delete/{ID}" class="btn btn-sm btn-danger">
|
||||||
|
<i class="fa fa-fw fa-trash"></i>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/LOOP}
|
{/LOOP}
|
||||||
{ALT}
|
{ALT}
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="7">
|
<td colspan="7" class=" context-main">
|
||||||
No Notifications
|
No Notifications
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm mb-5 context-main-bg mt-4">
|
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
||||||
<h2 class="text-center text-primary mb-4">Welcome to AllTheBookmarks</h2>
|
<h2 class="text-center text-primary mb-4">Welcome to AllTheBookmarks</h2>
|
||||||
<p class="lead">
|
<p class="lead">
|
||||||
AllTheBookmarks was built out of a need to manage my own bookmarks better. As a web developer, I would not only use URLs for every aspect of my job, but I also needed to switch browsers, operating systems, or devices. For years, I had a version of this tool that I used on my own local network. In 2025, I'm bringing it to anyone who wants it.
|
AllTheBookmarks was built out of a need to manage my own bookmarks better. As a web developer, I would not only use URLs for every aspect of my job, but I also needed to switch browsers, operating systems, or devices. For years, I had a version of this tool that I used on my own local network. In 2025, I'm bringing it to anyone who wants it.
|
||||||
|
Reference in New Issue
Block a user