Release 16 (devel -> main) #39

Merged
ChaoticByte merged 13 commits from devel into main 2023-04-17 19:10:52 +00:00
5 changed files with 11 additions and 2 deletions
Showing only changes of commit 79d148bfd0 - Show all commits

View file

@ -155,7 +155,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE.
Source: https://github.com/google/material-design-icons Source: https://github.com/google/material-design-icons
Files: Files:
- `./app/static/menu-icon.svg` - `./app/static/material-icons/*`
- `./data/profilepictures/default.svg` - `./data/profilepictures/default.svg`
``` ```

View file

@ -79,7 +79,15 @@ input[type="text"], input[type="password"], input[type="number"], select {
} }
select { select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
height: 2.5rem; height: 2.5rem;
background-image: url("/static/material-icons/arrow-drop-down.svg");
background-repeat: no-repeat;
background-position: right;
background-size: 1.5rem;
padding-right: 1.8rem;
} }
table { table {

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="48" viewBox="0 96 960 960" width="48"><path d="M480 696 280 497h400L480 696Z"/></svg>

After

Width:  |  Height:  |  Size: 145 B

View file

After

Width:  |  Height:  |  Size: 240 B

View file

@ -18,7 +18,7 @@
<a class="button" href="/deposit">{% translate "Deposit" %}</a> <a class="button" href="/deposit">{% translate "Deposit" %}</a>
<a class="button" href="/accounts/logout">{% translate "Logout" %}</a> <a class="button" href="/accounts/logout">{% translate "Logout" %}</a>
<div class="dropdownmenu" id="dropdownmenu"> <div class="dropdownmenu" id="dropdownmenu">
<button class="dropdownbutton" id="dropdownmenu-button"><img src="/static/menu-icon.svg"></button> <button class="dropdownbutton" id="dropdownmenu-button"><img src="/static/material-icons/menu.svg"></button>
<div class="dropdownlist"> <div class="dropdownlist">
<a class="button dropdownchoice" href="/history">{% translate "History" %}</a> <a class="button dropdownchoice" href="/history">{% translate "History" %}</a>
<a class="button dropdownchoice" href="/statistics">{% translate "Statistics" %}</a> <a class="button dropdownchoice" href="/statistics">{% translate "Statistics" %}</a>