summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-09-28 10:51:46 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-09-28 10:51:46 (GMT)
commit6d20113845c8360c9c25eb162d21be751556b84e (patch)
tree6c779960efa026bb81fc27cdf7013716cb2291a4
parent3ff3cab4df292c234a9083d6c3c3329d84d035d4 (diff)
better formatting for specials
-rw-r--r--www/js/specials.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/specials.js b/www/js/specials.js
index 3591af5..b880c54 100644
--- a/www/js/specials.js
+++ b/www/js/specials.js
@@ -124,10 +124,10 @@ rh.ShowView.prototype.render = function() {
var showlink = $('<a>').attr('href', "https://import.helsinki.at/shows/" + this.model.id)
.attr('target', "import").text(this.model.title);
var title = $('<span>').addClass('show-title').append(showlink);
- var rd = $('<div>').addClass('col-md-3 col-md-offset-1').append(title);
+ var rd = $('<div>').addClass('col-md-3').append(title);
var tag = $('<div>').addClass('col-md-1');
- var pv = $('<div>').addClass('col-md-7');
+ var pv = $('<div>').addClass('col-md-8');
if(this.model.pv_id >= 0) {
var pvlink = $('<a>').attr('href', "https://pv.helsinki.at/admin/program/show/" + this.model.pv_id)
.attr('target', "import").text(this.model.pv_name);