diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-05-13 12:29:39 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-13 19:55:41 +0200 |
commit | e39879ec9ab9613e1555eb7fc164d14b9cf6f8fe (patch) | |
tree | 9d8da449adb47607a1b5cab14e4ef26cfdcf9c53 /themes/alps/compose.html | |
parent | aab1f866f6185329fca31a8bbe0dc74aa5416302 (diff) | |
download | alps-e39879ec9ab9613e1555eb7fc164d14b9cf6f8fe.tar.gz alps-e39879ec9ab9613e1555eb7fc164d14b9cf6f8fe.zip |
alps theme: overhaul tables and action lists
This patch contains a whole lot of layout improvements for the alps
theme, mainly replacing the table soup with flexbox and CSS grids, and
fixing up a number of loose ends. This gives us a lot more flexibility
over how the page is laid out. I also cleaned up a lot of other
low-hanging fruit in the layout & styles.
Diffstat (limited to 'themes/alps/compose.html')
-rw-r--r-- | themes/alps/compose.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/themes/alps/compose.html b/themes/alps/compose.html index 6bd516e..fe951e2 100644 --- a/themes/alps/compose.html +++ b/themes/alps/compose.html @@ -29,10 +29,9 @@ <textarea name="text" class="body">{{.Message.Text}}</textarea> <div class="actions"> - <a href="/mailbox/INBOX">Cancel</a> - - <button type="submit" name="save_as_draft">Save as draft</button> <button type="submit">Send Message</button> + <button type="submit" name="save_as_draft">Save as draft</button> + <a class="button-link" href="/mailbox/INBOX">Cancel</a> </div> </form> |