diff --git a/static/css/styles.css b/static/css/styles.css index 0a996eaf..a523a1e2 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -1647,6 +1647,10 @@ input[type=file] { background-color: rgb(23 42 52 / 0.6); } +.bg-green\/50 { + background-color: rgb(90 213 153 / 0.5); +} + .bg-transparent { background-color: transparent; } @@ -1656,6 +1660,19 @@ input[type=file] { background-color: rgb(49 74 87 / var(--tw-bg-opacity)); } +.bg-orange\/10 { + background-color: rgb(255 159 0 / 0.1); +} + +.bg-orange\/60 { + background-color: rgb(255 159 0 / 0.6); +} + +.bg-orange { + --tw-bg-opacity: 1; + background-color: rgb(255 159 0 / var(--tw-bg-opacity)); +} + .bg-opacity-70 { --tw-bg-opacity: 0.7; } @@ -2043,6 +2060,10 @@ input[type=file] { color: rgb(55 65 81 / var(--tw-text-opacity)); } +.text-white\/60 { + color: rgb(255 255 255 / 0.6); +} + .text-gray-100 { --tw-text-opacity: 1; color: rgb(243 244 246 / var(--tw-text-opacity)); @@ -2063,10 +2084,6 @@ input[type=file] { color: rgb(181 201 211 / var(--tw-text-opacity)); } -.text-white\/60 { - color: rgb(255 255 255 / 0.6); -} - .text-gray-500 { --tw-text-opacity: 1; color: rgb(107 114 128 / var(--tw-text-opacity)); diff --git a/templates/versions/detail.html b/templates/versions/detail.html index ff1625e9..4adbdb0b 100644 --- a/templates/versions/detail.html +++ b/templates/versions/detail.html @@ -21,7 +21,7 @@
- {% if current_version %}Current Version{% else %}Past Version{% endif %} + {% if current_version %}Current Version{% else %}Past Version{% endif %}
diff --git a/templates/versions/list.html b/templates/versions/list.html index 022fe303..924c988c 100644 --- a/templates/versions/list.html +++ b/templates/versions/list.html @@ -36,13 +36,13 @@
- Past Versions + Past Versions
{% for v in version_list %} {% include "versions/_past_version_list_item.html" %} {% endfor %} - +