This is an automated email from the ASF dual-hosted git repository.
rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 8d5658c cache page formatting
8d5658c is described below
commit 8d5658c58d1ff3f99ee8d6981be543bc48d0fe1a
Author: Sam Ruby <[email protected]>
AuthorDate: Tue Jun 5 19:30:17 2018 -0400
cache page formatting
---
www/board/agenda/public/stylesheets/app.css | 4 ++--
www/board/agenda/views/pages/cache.js.rb | 7 +++++--
www/board/agenda/views/pages/index.js.rb | 2 +-
3 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/www/board/agenda/public/stylesheets/app.css
b/www/board/agenda/public/stylesheets/app.css
index d8bf770..aa1e1a7 100644
--- a/www/board/agenda/public/stylesheets/app.css
+++ b/www/board/agenda/public/stylesheets/app.css
@@ -96,12 +96,12 @@ a.h3, a.h4 {
}
/* center the table */
-table {
+table.agenda {
margin-left: auto;
margin-right: auto
}
-td:first-child {
+table.agenda td:first-child {
text-align: center
}
diff --git a/www/board/agenda/views/pages/cache.js.rb
b/www/board/agenda/views/pages/cache.js.rb
index 3fb02af..7106130 100644
--- a/www/board/agenda/views/pages/cache.js.rb
+++ b/www/board/agenda/views/pages/cache.js.rb
@@ -50,11 +50,14 @@ class CacheStatus < Vue
_tr do
_td do
if registration.active
- _span registration.active.scriptURL
+ _a registration.active.scriptURL,
+ href: registration.active.scriptURL
end
end
- _td registration.scope
+ _td do
+ _a registration.scope, href: registration.scope
+ end
_td do
if registration.installing
diff --git a/www/board/agenda/views/pages/index.js.rb
b/www/board/agenda/views/pages/index.js.rb
index e76ee0d..11170b3 100644
--- a/www/board/agenda/views/pages/index.js.rb
+++ b/www/board/agenda/views/pages/index.js.rb
@@ -8,7 +8,7 @@ class Index < Vue
_h1 'ASF Board Agenda'
end
- _table.table_bordered do
+ _table.table_bordered.agenda do
_thead do
_th 'Attach'
_th 'Title'
--
To stop receiving notification emails like this one, please contact
[email protected].