diff --git a/rowers/templates/disqualification_view.html b/rowers/templates/disqualification_view.html index e0a984ee..346009d7 100644 --- a/rowers/templates/disqualification_view.html +++ b/rowers/templates/disqualification_view.html @@ -58,17 +58,18 @@
@@ -76,6 +77,9 @@ {{ workout.summary }}
+ {% else %} + The workout was removed by the user. + {% endif %}-
| @@ -477,7 +360,7 @@ {% if form %} - |
|---|
| Name | diff --git a/static/css/resetnew.css b/static/css/resetnew.css index e0dad523..5f28ea02 100644 --- a/static/css/resetnew.css +++ b/static/css/resetnew.css @@ -1,4 +1,4 @@ -/* http://meyerweb.com/eric/tools/css/reset/ +/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ @@ -12,8 +12,8 @@ b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; @@ -24,7 +24,7 @@ time, mark, audio, video { vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } @@ -45,6 +45,8 @@ q:before, q:after { table { border-collapse: collapse; border-spacing: 0; + word-wrap: break-word; + table-layout: fixed; } /* apply a natural box layout model to all elements, but allowing components to change */
|---|