Fixed terms and conditions on signup page, also removed script tag that is no longer being used

This commit is contained in:
Sahat Yalkabov
2013-12-11 22:29:43 -05:00
parent d148004d56
commit b76e67d3a4
2 changed files with 94 additions and 101 deletions

View File

@ -5,15 +5,14 @@ body {
// TODO: Refactor // TODO: Refactor
// //
.navbar-nav img { .navbar-nav img {
border-radius: 50%;
width: 40px; width: 40px;
height: 40px; height: 40px;
margin: -10px 0 -10px 0; vertical-align: baseline;
border-radius: 50%; margin-top: -15px;
background-color: #1a242f; margin-bottom: -15px;
position: relative;
img { left: -10px;
max-height: 100%;
}
} }
[class^="fa-"], [class^="fa-"],
@ -40,16 +39,15 @@ body {
.github { .github {
background-color: #333; background-color: #333;
border-color: #333; border-color: #333;
}
// TODO: REFACTOR
}// TODO: REFACTOR
// Search field // Search field
.dataTables_filter { .dataTables_filter {
float: right; float: right;
input { input {
.form-control;
display: inline-block; display: inline-block;
width: inherit; width: inherit;
height: 30px; height: 30px;
@ -176,3 +174,4 @@ body {
pointer-events: none; pointer-events: none;
} }
} }

View File

@ -29,7 +29,7 @@ block content
.col-sm-offset-3.col-sm-7 .col-sm-offset-3.col-sm-7
button.btn.btn-primary(type='submit') Signup button.btn.btn-primary(type='submit') Signup
#terms-conditions.modal.fade(tabindex='-1', role='dialog', aria-labelledby='myModalLabel', aria-hidden='true') #terms-conditions.modal.fade(tabindex='-1', role='dialog', aria-labelledby='myModalLabel', aria-hidden='true')
.modal-dialog .modal-dialog
.modal-content .modal-content
.modal-header .modal-header
@ -118,9 +118,3 @@ block content
button.btn.btn-primary(type='button', data-dismiss='modal') button.btn.btn-primary(type='button', data-dismiss='modal')
i.fa.fa-times-circle i.fa.fa-times-circle
| Close | Close
script
$(function() {
$('.navbar').remove();
$('body').addClass('signup-body');
});