diff --git a/css/app.css b/css/app.css index e7e9edd03..118fa64ea 100644 --- a/css/app.css +++ b/css/app.css @@ -920,7 +920,8 @@ div.typeahead a:first-child { border-radius: 0 0 4px 4px; } -.modal-section:only-child { border-radius: 4px; +.modal-section:only-child { + border-radius: 4px; } .modal-section .buttons { @@ -949,9 +950,14 @@ div.typeahead a:first-child { text-align: center; } -/* Intro Modal +/* Splash Modal ------------------------------------------------------- */ +.modal-splash { + width: 33.3333%; + left: 33.3333%; +} + .logo { height: 100px; width: 100px; @@ -1028,10 +1034,6 @@ div.typeahead a:first-child { border-radius: 4px 4px 0 0; } -.modal-section:last-child { - border-radius: 0 0 4px 4px; -} - .modal-section .buttons { padding-top: 10px; width: 100%; diff --git a/js/id/ui/splash.js b/js/id/ui/splash.js index 4f8a40935..43489fab1 100644 --- a/js/id/ui/splash.js +++ b/js/id/ui/splash.js @@ -6,11 +6,11 @@ iD.ui.splash = function() { var introModal = modal.select('.content') .append('div') - .attr('class', 'header modal-section fillL'); + .attr('class', 'modal-section fillL'); introModal.append('div').attr('class','logo'); - introModal.append('div').html("

Welcome to the iD OpenStreetMap editor

This is development version 0.0.0-alpha1. For more information see ideditor.com and report bugs at github.com.systemed/iD.

"); + introModal.append('div').html("

Welcome to the iD OpenStreetMap editor

This is development version 0.0.0-alpha1. For more information see ideditor.com and report bugs at github.com.systemed/iD.

"); return modal; }; \ No newline at end of file