Merge branch 'master-redesign' of https://github.com/sharelatex/web-sharelatex into master-redesign

This commit is contained in:
Henry Oswald 2014-07-23 12:17:14 +01:00
commit e46bc51c67
4 changed files with 48 additions and 1 deletions

View file

@ -1,5 +1,10 @@
script(type='text/ng-template', id='newTagModalTemplate') script(type='text/ng-template', id='newTagModalTemplate')
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 Create New Folder h3 Create New Folder
.modal-body .modal-body
form(name="newTagForm", novalidate) form(name="newTagForm", novalidate)
@ -27,6 +32,11 @@ script(type='text/ng-template', id='newTagModalTemplate')
script(type='text/ng-template', id='renameProjectModalTemplate') script(type='text/ng-template', id='renameProjectModalTemplate')
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 Rename Project h3 Rename Project
.modal-body .modal-body
form(name="renameProjectForm", novalidate) form(name="renameProjectForm", novalidate)
@ -47,6 +57,11 @@ script(type='text/ng-template', id='renameProjectModalTemplate')
script(type='text/ng-template', id='cloneProjectModalTemplate') script(type='text/ng-template', id='cloneProjectModalTemplate')
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 Copy Project h3 Copy Project
.modal-body .modal-body
form(name="cloneProjectForm", novalidate) form(name="cloneProjectForm", novalidate)
@ -74,6 +89,11 @@ script(type='text/ng-template', id='cloneProjectModalTemplate')
script(type='text/ng-template', id='newProjectModalTemplate') script(type='text/ng-template', id='newProjectModalTemplate')
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 New Project h3 New Project
.modal-body .modal-body
form(novalidate, name="newProjectForm") form(novalidate, name="newProjectForm")
@ -99,6 +119,11 @@ script(type='text/ng-template', id='newProjectModalTemplate')
script(type='text/ng-template', id='deleteProjectsModalTemplate') script(type='text/ng-template', id='deleteProjectsModalTemplate')
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 {{action}} Projects h3 {{action}} Projects
.modal-body .modal-body
div(ng-show="projectsToDelete.length > 0") div(ng-show="projectsToDelete.length > 0")
@ -121,6 +146,11 @@ script(type='text/ng-template', id='deleteProjectsModalTemplate')
script(type="text/ng-template", id="uploadProjectModalTemplate") script(type="text/ng-template", id="uploadProjectModalTemplate")
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 Upload Zipped Project h3 Upload Zipped Project
.modal-body( .modal-body(
fine-upload fine-upload
@ -139,6 +169,11 @@ script(type="text/ng-template", id="uploadProjectModalTemplate")
script(type="text/ng-template", id="userProfileModalTemplate") script(type="text/ng-template", id="userProfileModalTemplate")
.modal-header .modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="done()"
) ×
h3 Your Profile h3 Your Profile
.modal-body .modal-body
form(enctype='multipart/form-data', method='post') form(enctype='multipart/form-data', method='post')

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -371,11 +371,23 @@
.navbar-brand { .navbar-brand {
background-image: url('/img/logo.png'); background-image: url('/img/logo.png');
background-size: 135px 16px;
background-repeat: no-repeat; background-repeat: no-repeat;
height: 16px; height: 16px;
margin-top: 10px; margin-top: 10px;
padding: 0; padding: 0;
width: 128px; width: 135px;
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
.navbar-brand {
background-image: url('/img/logo@2x.png');
}
} }
.navbar-text { .navbar-text {