diff options
-rw-r--r-- | modules/extra/webcpanel/templates/default/memoserv/memos.html | 8 | ||||
-rw-r--r-- | modules/extra/webcpanel/templates/default/style.css | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index e62232baa..7cff20dbf 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -86,12 +86,12 @@ <td></td> <td></td> {IF EQ U YES} - <td class="right"><a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&read=1">Mark as Read</a>   - <a href="{S}" class="reply" id="memo{I}">Reply</a> + <td class="right"><a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&read=1">Mark as Read</a> + <a href="{S}" class="reply" id="memo{I}">Reply</a> <a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&del=1">Delete</a></td> {ELSE} - <td class="right"><a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&read=2">Mark as Unread</a>   - <a href="{S}" class="reply" id="memo{I}">Reply</a>   + <td class="right"><a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&read=2">Mark as Unread</a> ;  + <a href="{S}" class="reply" id="memo{I}">Reply</a> <a href="/memoserv/memos?channel={ESCAPED_CHANNEL_NAME}&number={I}&del=1">Delete</a></td> {END IF} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 73cac2329..94e7a900d 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -125,12 +125,16 @@ body { }
td.right a:link, td.right a:visited {
- color: #00F;
+ color: #000;
+ border: 1px solid #000;
+ padding: 1px 4px;
+ -webkit-border-radius: 5x;
+ border-radius: 5px;
text-decoration: none;
}
td.right a:hover {
- text-decoration: underline;
+ color: #00F;
}
/* Modal Window */
#mask {
|