diff --git a/app/assets/stylesheets/admin/welcome.css.sass b/app/assets/stylesheets/admin/welcome.css.sass index 1ea3b1a0e5..f9e6a5e212 100644 --- a/app/assets/stylesheets/admin/welcome.css.sass +++ b/app/assets/stylesheets/admin/welcome.css.sass @@ -25,6 +25,21 @@ margin-top: -2em margin-bottom: 2em padding: 4em 2em 2em 1em + + .admin-cta + border: 1px solid #5498da + @include border-radius(3px) + text-align: center + padding: 1em + + .error + display: block + color: white + background: red + margin-bottom: 1em + padding: 0.5em + font-style: oblique + a.selector position: relative diff --git a/app/views/spree/admin/overview/welcome.html.haml b/app/views/spree/admin/overview/welcome.html.haml index dc44c3847f..68cd58a748 100644 --- a/app/views/spree/admin/overview/welcome.html.haml +++ b/app/views/spree/admin/overview/welcome.html.haml @@ -53,6 +53,11 @@ You want to use OFN as a place for people to find and contact you. .sixteen.columns.alpha - %span.error{ ng: { show: "(enterprise.sells.$error.pattern || enterprise.sells.$error.pattern) && submitted" } } - Please select an option - %input{ type: 'submit', ng: { click: "submit(enterprise)" } } \ No newline at end of file + .admin-cta + %span.error{ ng: { show: "(enterprise.sells.$error.pattern || enterprise.sells.$error.pattern) && submitted" } } + Please choose one of the options above. + %input{ type: 'submit', value: 'Next', ng: { click: "submit(enterprise)" } } + + + +