Ver Fonte

fix last row

subDesTagesMitExtraKaese há 1 ano atrás
pai
commit
bd34690b76

+ 8 - 4
locale/de/LC_MESSAGES/django.po

@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-12-17 11:32+0000\n"
+"POT-Creation-Date: 2022-12-17 15:48+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20,7 +20,7 @@ msgstr ""
 
 #: zitap/templates/zitap/create-event.html:5
 #: zitap/templates/zitap/event-not-found.html:10
-#: zitap/templates/zitap/index.html:23
+#: zitap/templates/zitap/index.html:24
 msgid "Create Event"
 msgstr ""
 
@@ -28,10 +28,14 @@ msgstr ""
 msgid "Event not found"
 msgstr ""
 
-#: zitap/templates/zitap/index.html:16
-msgid "Home"
+#: zitap/templates/zitap/event.html:51
+msgid "Logout"
 msgstr ""
 
 #: zitap/templates/zitap/index.html:17
+msgid "Home"
+msgstr ""
+
+#: zitap/templates/zitap/index.html:18
 msgid "About"
 msgstr ""

+ 1 - 2
zitap/static/zitap/css/event.css

@@ -20,7 +20,6 @@
 }
 .occupancy-grid .slot {
   width: 70px;
-  background-color: #fff;
   transition: background-color .2s ease;
   display: grid;
   justify-items: center;
@@ -33,7 +32,7 @@
   border-top: 1px solid #000;
 }
 .occupancy-grid .slot.last {
-  border-bottom: 1px solid #000;
+  height: 0;
 }
 .occupancy-grid .slot:hover {
   background-color: rgb(214, 93, 93) !important;

+ 1 - 1
zitap/templates/zitap/event.html

@@ -32,7 +32,7 @@
             {% if day %}
             <div class="slot{% if row.is_full_hour %} full-hour{% endif %}" id="grid_slot_{{ day.offset }}" title="{{ day.tooltip }}" style="background-color: {{ day.color }};"></div>
             {% else %}
-            <div class="slot last"></div>
+            <div class="slot full-hour last"></div>
             {% endif %}
         {% endfor %}
     {% endfor %}