diff --git a/public/assets/styles.css b/public/assets/styles.css index 26aaf84..b96e270 100644 --- a/public/assets/styles.css +++ b/public/assets/styles.css @@ -15,4 +15,24 @@ h2.site-name .edit-site { } h2.site-name:hover .edit-site { visibility: visible; -} \ No newline at end of file +} + +.status-table .status { + width: 70px; +} +.status-table .date { + width: 135px; +} +.status-table .urls { + width: 495px; + max-width: 495px; + overflow-x: scroll; +} + +.details-table .left { + width: 80px; +} +.details-table .right { + max-width: 620px; + overflow-x: scroll; +} diff --git a/views/dashboard.php b/views/dashboard.php index cb31405..37ddc16 100644 --- a/views/dashboard.php +++ b/views/dashboard.php @@ -31,7 +31,7 @@ if(count($webmentions)): ?> -
| Status | Date@@ -40,19 +40,19 @@ | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| + | - | + | = date('M j, g:ia', strtotime($mention['webmention']->created_at)) ?>- | + | source== $this->e($mention['webmention']->source) ?> diff --git a/views/webmention-details.php b/views/webmention-details.php
index 0364971..d68a3bd 100644
--- a/views/webmention-details.php
+++ b/views/webmention-details.php
@@ -4,36 +4,36 @@target== $this->e($mention['webmention']->target) ?> | 
| Status- | + | Status+ | = ucfirst($status) ?> | 
| Date- | = date('M j, g:ia', strtotime($webmention->created_at)) ?>+ | Date+ | = date('M j, g:ia', strtotime($webmention->created_at)) ?> | 
| Source- | = $this->e($webmention->source) ?>+ | Source+ | = $this->e($webmention->source) ?> | 
| Target- | = $this->e($webmention->target) ?>+ | Target+ | = $this->e($webmention->target) ?> | 
| Vouch- | = $this->e($webmention->vouch) ?>+ | Vouch+ | = $this->e($webmention->vouch) ?> | 
| Callback URL- | = $this->e($webmention->callback) ?>+ | Callback URL+ | = $this->e($webmention->callback) ?> |