diff --git a/css/app.css b/css/app.css index 296985c5b..56a4062f8 100644 --- a/css/app.css +++ b/css/app.css @@ -991,6 +991,11 @@ a.selected:hover .toggle.icon { background-position: -40px -180px;} /* adding additional preset fields */ +.more-buttons { + margin-top: 20px; + border-top: 1px solid #CCC; +} + button.preset-add-field { width: 16.6666%; height: 40px; @@ -1873,15 +1878,7 @@ a.action.twitter:before { /* Splash Modal ------------------------------------------------------- */ -.logo { - height: 100px; - width: 100px; - background: url(../img/logo.png) 0 0 repeat; - margin: auto; -} - .modal-splash h3 { - padding-top: 20px; text-align: center; } diff --git a/js/id/ui/splash.js b/js/id/ui/splash.js index d18bc7bf7..7c96171ef 100644 --- a/js/id/ui/splash.js +++ b/js/id/ui/splash.js @@ -14,12 +14,9 @@ iD.ui.Splash = function(context) { .append('div') .attr('class', 'fillL'); - var header = introModal.append('div') - .attr('class','modal-section cf'); - - header.append('div').attr('class', 'logo'); - - header.append('h3').text(t('splash.welcome')); + introModal.append('div') + .attr('class','modal-section cf') + .append('h3').text(t('splash.welcome')); var buttons = introModal.append('div').attr('class', 'cf');