diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-01-13 11:15:58 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-01-13 11:15:58 +0100 |
commit | 6fbaf22a63f389c711ce8bcfed76051a27fe2871 (patch) | |
tree | 8648166d5ee108c3039877372daeeaffd34c3223 | |
parent | e873b3823f110bfd21a65bdaa0644e823019e761 (diff) |
show pointer cursor on app screen
-rw-r--r-- | public/static/default.css | 2 | ||||
l--------- | public/static/v5 (renamed from public/static/v4) | 0 | ||||
-rw-r--r-- | templates/layouts/default.html.ep | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/public/static/default.css b/public/static/default.css index 9610bea..c3e0d6a 100644 --- a/public/static/default.css +++ b/public/static/default.css @@ -27,6 +27,7 @@ div.app > ul > li { display:block; width:100%; position:relative; + cursor: pointer; } div.appdark > ul > li { @@ -171,6 +172,7 @@ div.app li .moreinfo { bottom:0em; z-index: 5; overflow: auto; + cursor: default; } div.applight li .moreinfo { diff --git a/public/static/v4 b/public/static/v5 index 945c9b4..945c9b4 120000 --- a/public/static/v4 +++ b/public/static/v5 diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index eb1f7f8..4da20b6 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -8,7 +8,7 @@ <meta http-equiv="refresh" content="<%= $self->stash('refresh_interval') %>"/> % } - % my $av = 'v4'; # asset version + % my $av = 'v5'; # asset version %= stylesheet "/static/${av}/default.css" %= stylesheet "/static/${av}/jquery-ui.min.css" % my $force_mobile = param('force_mobile') // -1; |