Add cancel buton to add reading page and remove tailwindcss@3.2.4.js

This commit is contained in:
Peter Stockings
2024-12-25 01:02:49 +11:00
parent 6b9ca59109
commit 23e3fe50a5
3 changed files with 56 additions and 67 deletions

View File

@@ -831,6 +831,18 @@ video {
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(1rem * var(--tw-space-x-reverse));
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
overflow: hidden;
}
@@ -937,10 +949,20 @@ video {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-500 {
--tw-gradient-from: #6b7280 var(--tw-gradient-from-position);
--tw-gradient-to: rgb(107 114 128 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-700 {
--tw-gradient-to: #1d4ed8 var(--tw-gradient-to-position);
}
.to-gray-700 {
--tw-gradient-to: #374151 var(--tw-gradient-to-position);
}
.fill-current {
fill: currentColor;
}
@@ -1168,16 +1190,31 @@ video {
background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover {
--tw-bg-opacity: 1;
background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:from-blue-600:hover {
--tw-gradient-from: #2563eb var(--tw-gradient-from-position);
--tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-gray-600:hover {
--tw-gradient-from: #4b5563 var(--tw-gradient-from-position);
--tw-gradient-to: rgb(75 85 99 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:to-blue-800:hover {
--tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}
.hover\:to-gray-800:hover {
--tw-gradient-to: #1f2937 var(--tw-gradient-to-position);
}
.hover\:text-blue-800:hover {
--tw-text-opacity: 1;
color: rgb(30 64 175 / var(--tw-text-opacity, 1));
@@ -1198,6 +1235,11 @@ video {
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover {
--tw-text-opacity: 1;
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
text-decoration-line: underline;
}

File diff suppressed because one or more lines are too long

View File

@@ -45,11 +45,21 @@
{% endfor %}
</div>
<!-- Submit Button -->
<div>
{{ form.submit(class="w-full bg-gradient-to-r from-blue-500 to-blue-700 text-white py-3 rounded-lg
font-semibold hover:from-blue-600 hover:to-blue-800 shadow-lg") }}
<!-- Buttons -->
<div class="flex justify-between items-center space-x-6">
<!-- Cancel Button -->
<a href="{{ url_for('main.dashboard') }}" class="w-full bg-gray-100 text-gray-700 py-3 rounded-lg font-semibold
hover:bg-gray-200 hover:text-gray-900 shadow-md text-center transition">
Cancel
</a>
<!-- Save Button -->
<button type="submit" class="w-full bg-blue-600 text-white py-3 rounded-lg font-semibold
hover:bg-blue-700 shadow-lg text-center transition">
Save
</button>
</div>
</form>
</div>
{% endblock %}