diff --git a/rowers/templates/stepeditor.html b/rowers/templates/stepeditor.html index 19e5abd6..85a6478f 100644 --- a/rowers/templates/stepeditor.html +++ b/rowers/templates/stepeditor.html @@ -7,8 +7,12 @@ {% block main %}

Plan Training Steps

-
+
+

Training

+
+
+

Library

{% for step in steps %}
@@ -17,6 +21,10 @@
{% endfor %}
+
+
+

Remove

+
{% endblock %} {% block scripts %} @@ -24,69 +32,111 @@ src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'> {% endblock %} diff --git a/static/css/rowsandall2.css b/static/css/rowsandall2.css index ee6e6e21..c1fadd43 100644 --- a/static/css/rowsandall2.css +++ b/static/css/rowsandall2.css @@ -325,7 +325,7 @@ th.rotate > div > span { .stepcontainer { display: grid; - grid-template-columns: repeat(5, 1fr); + grid-template-columns: repeat(2, 1fr); gap: 10px; } @@ -341,6 +341,22 @@ th.rotate > div > span { border: 3px dotted #666; } +.drop-zone { + position: relative; + overflow: hidden; + background: #878787; + color: white; + padding: 10px; +} + +.trash-can { + position: relative; + overflow: hidden; + background: red; + color: white; + padding: 10px; +} + .divlines { display: block; overflow-x: hidden;