diff options
author | xengineering <me@xengineering.eu> | 2024-03-23 20:33:15 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-23 20:33:15 +0100 |
commit | a841381cc844776e3561cc1ce7189120a91ee655 (patch) | |
tree | ee9a377e0822af2405bfab66737b031f8aaa9fe1 /view | |
parent | 49ffaf0aac14272c2f64a3005ad651b78eb51ad1 (diff) | |
download | ceres-a841381cc844776e3561cc1ce7189120a91ee655.tar ceres-a841381cc844776e3561cc1ce7189120a91ee655.tar.zst ceres-a841381cc844776e3561cc1ce7189120a91ee655.zip |
view: Do not change button color
Design changes should be avoided for now since simple.css cares about
the CSS part of Ceres.
Diffstat (limited to 'view')
-rw-r--r-- | view/html/recipe-confirm-deletion.html | 2 | ||||
-rw-r--r-- | view/html/recipe.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html index 7ad08a3..8c89663 100644 --- a/view/html/recipe-confirm-deletion.html +++ b/view/html/recipe-confirm-deletion.html @@ -10,7 +10,7 @@ <main> <p>Do you really want to delete this recipe?</p> <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> - <button onclick="del('/recipe/{{.Id}}')" style="background-color:red">delete</button> + <button onclick="del('/recipe/{{.Id}}')">delete</button> </main> {{ template "footer" }} <script src="/static/view/static/ceres.js"></script> diff --git a/view/html/recipe.html b/view/html/recipe.html index c2d9ddc..a99690a 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -10,7 +10,7 @@ <main> <p> <button onclick="window.location.href='/recipe/{{.Id}}?view=recipe-edit';">edit</button> - <button style="background-color:red" onclick="window.location.href='/recipe/{{.Id}}?view=recipe-confirm-deletion';">delete</button> + <button onclick="window.location.href='/recipe/{{.Id}}?view=recipe-confirm-deletion';">delete</button> </p>{{ if ne .Portions "" }} <p><i>Portions:</i> {{.Portions}}</p>{{end}}{{ if ne .Url "" }} <p><i>Original recipe:</i> <a href="{{.Url}}">link</a></p>{{end}}{{ if ne .Notes "" }} |