diff --git a/css/window.css b/css/window.css index d4630dd..32b4b91 100644 --- a/css/window.css +++ b/css/window.css @@ -955,14 +955,27 @@ .format_entry i.fa_big { font-size: 16pt; } + .format_entry.start_screen_link:hover { + text-decoration: underline; + } + .format_entry.start_screen_link::after { + float: right; + content: "\f08e"; + font-family: 'Font Awesome 6 Free'; + font-weight: 900; + color: var(--color-subtle_text); + font-size: 15px; + margin-right: 10px; + } .format_target { padding: 10px 0; } .format_target span { padding: 2px 4px; margin: 0 2px; - background-color: var(--color-button); + background-color: var(--color-accent); border-radius: 5px; + color: var(--color-accent_text); } #start_files .button_bar { text-align: left; diff --git a/js/interface/start_screen.js b/js/interface/start_screen.js index fe7ad50..9bff00a 100644 --- a/js/interface/start_screen.js +++ b/js/interface/start_screen.js @@ -207,6 +207,9 @@ onVueSetup(function() { if (format_entry.onStart) format_entry.onStart(); if (typeof format_entry.new == 'function') format_entry.new(); }, + openLink(link) { + Blockbench.openLink(link); + }, tl }, computed: { @@ -228,12 +231,6 @@ onVueSetup(function() {