styled notifications
This commit is contained in:
parent
4e8fc6fe06
commit
ec9fe66bfe
3 changed files with 5 additions and 8 deletions
|
@ -368,12 +368,10 @@ input[type="submit"] {
|
|||
|
||||
.notice.metamaps, .alert.metamaps {
|
||||
position: absolute;
|
||||
margin: 20px;
|
||||
background: url(/assets/black_bg.png);
|
||||
margin: 5px 0 0 45px;
|
||||
background: #0F1519;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
|
||||
border:1px solid #000;
|
||||
}
|
||||
|
||||
.headertop {
|
||||
|
@ -2033,7 +2031,6 @@ font-family: 'vinyl';
|
|||
font-size: 40px;
|
||||
margin: 40px 20px 25px;
|
||||
text-align:center;
|
||||
background: url('home_bg2.png') no-repeat center -46px;
|
||||
}
|
||||
|
||||
.home_content .request {
|
||||
|
|
|
@ -30,6 +30,6 @@
|
|||
<div class="clearfloat"></div>
|
||||
|
||||
<h1 class="index">
|
||||
Welcome
|
||||
Welcome!
|
||||
</h1>
|
||||
</div>
|
||||
|
|
|
@ -22,10 +22,10 @@ form.find('.mapCommonsIcon').addClass('selected');
|
|||
|
||||
var tempForm = form.html();
|
||||
if (mapid == null) {
|
||||
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='javascript:closeIt(); return false;'>Stay on this page?</a>");
|
||||
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='#' onclick='closeIt(); return false;'>Stay on this page?</a>");
|
||||
}
|
||||
else if (mapid != null) {
|
||||
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='javascript:closeIt(); return false;'>Stay on this map?</a>");
|
||||
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='#' onclick='closeIt(); return false;'>Stay on this map?</a>");
|
||||
}
|
||||
$('#lightbox_main').css('margin-top', '-' + ($('#lightbox_main').height() / 2) + 'px' );
|
||||
|
||||
|
|
Loading…
Reference in a new issue