Update import modal to be less scary

This commit is contained in:
James Allen 2018-03-26 15:11:17 +01:00
parent 0c89f488bd
commit dc1b30dc8e
2 changed files with 11 additions and 14 deletions

View file

@ -342,17 +342,17 @@ script(type="text/ng-template", id="v1ImportModalTemplate")
.v1-import-step-2(ng-show="step === 2") .v1-import-step-2(ng-show="step === 2")
.v1-import-row .v1-import-row
.v1-import-warning.v1-import-col(aria-label="Warning symbol.") .v1-import-warning.v1-import-col(aria-label="Warning symbol.")
i.fa.fa-exclamation-triangle i.fa.fa-flask
.v1-import-col .v1-import-col
h2.v1-import-title #[strong Warning:] Overleaf v2 is Experimental h2.v1-import-title #[strong Warning:] Overleaf v2 is Experimental
p We are still working hard to bring some Overleaf v1 features to the v2 editor. If you move this project to v2 now, you will: p We are still working hard to bring some Overleaf v1 features to the v2 editor. In v2 there is:
ul ul
li Lose access your project via git li <strong>No Journals and Services</strong> menu to submit directly to our partners yet
li Not be able to use the Journals and Services menu to submit directly to our partners li <strong>No Rich Text (WYSIWYG)</strong> mode yet
li Not be able to use the Rich Text (WYSIWYG) mode li <strong>No linked files</strong> (to URLs or to files in other Overleaf projects) yet
li Not be able to use linked files (to URLs or to files in other Overleaf projects) li <strong>No Zotero and CiteULike</strong> integrations yet
li Not be able to use some bibliography integrations (Zotero, CiteULike) li <strong>No labelled versions</strong> yet
li Lose access to your labelled versions and not be able to create new labelled versions p.row-spaced-small If you currently use the <strong>Overleaf Git bridge</strong> with your v1 project, you can migrate your project to the Overleaf v2 GitHub integration.
.v1-import-cta .v1-import-cta
p p
strong Please note: you cannot move this project back to v1 once you have moved it to v2. If this is an important project, please consider making a clone in v1 before you move the project to v2. strong Please note: you cannot move this project back to v1 once you have moved it to v2. If this is an important project, please consider making a clone in v1 before you move the project to v2.

View file

@ -1,5 +1,6 @@
.v1-import-title { .v1-import-title {
text-align: center; text-align: center;
margin-top: @line-height-computed / 2;
} }
.v1-import-row { .v1-import-row {
@ -8,9 +9,6 @@
} }
.v1-import-col { .v1-import-col {
flex-basis: 50%;
flex-grow: 0;
flex-shrink: 0;
padding-left: 15px; padding-left: 15px;
padding-right: 15px; padding-right: 15px;
} }
@ -33,9 +31,8 @@
} }
.v1-import-warning { .v1-import-warning {
text-align: center; color: #4B7FD1;
color: #fdce02; font-size: 10em;
font-size: 14em;
line-height: 1em; line-height: 1em;
} }