diff --git a/css/ui.css b/css/ui.css index be3c9b1d..aedd07db 100644 --- a/css/ui.css +++ b/css/ui.css @@ -283,14 +283,16 @@ canvas.pixelated { font-family: TinyFont; src: url(04B_03__.TTF); } -#booksMenuButton { - border-width:3px; - border-color:#99ff99; - background-color:#006600; +.toolbarMenuButton { + background-color:#666; border-style:solid; font-family: "Andale Mono", "Menlo", "Lucida Console", monospace; position:relative; - top:-0.25em; + margin-left:0.5em; + margin-right:0.5em; +} +a.toolbarMenuButton { + padding:0.3em; } a.dropdown-toggle { } @@ -540,5 +542,5 @@ div.asset_toolbar { color: #ccc; } .book-title { - font-size:14pt; + font-size:12pt; } diff --git a/index.html b/index.html index 5ab73cf5..57e52b10 100644 --- a/index.html +++ b/index.html @@ -44,12 +44,12 @@ if (window.location.host.endsWith('8bitworkshop.com')) {
- - - - - - - - - - - - - -   - -
diff --git a/src/ui.ts b/src/ui.ts index c2c199f3..5aed755e 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -472,7 +472,7 @@ function _publishProjectToGithub(e) { } var modal = $("#publishGithubModal"); var btn = $("#publishGithubButton"); - $("#githubRepoName").val(getFilenamePrefix(current_project.mainPath)); + $("#githubRepoName").val(getFilenamePrefix(getFilenameForPath(current_project.mainPath))); modal.modal('show'); btn.off('click').on('click', () => { var name = $("#githubRepoName").val()+"";