Bootstrapping.

This commit is contained in:
Paulo Reis 2016-10-20 12:24:07 +01:00
parent 3a07b785db
commit e60f67dacb
4 changed files with 18 additions and 0 deletions

View file

@ -72,6 +72,7 @@ block content
include ./editor/chat
include ./editor/hotkeys
include ./editor/feature-onboarding
script(type="text/ng-template", id="genericMessageModalTemplate")
.modal-header

View file

@ -0,0 +1,8 @@
.feat-onboard
.feat-onboard-wrapper
h1.feat-onboard-title
| Introducing
span.feat-onboard-title-name Code check
p.feat-onboard-description
span.feat-onboard-description-name Code check
| will highlight potential problems in your LaTeX code, allowing you to handle errors earlier and become more productive.

View file

@ -11,6 +11,7 @@
@import "./editor/publish-template.less";
@import "./editor/online-users.less";
@import "./editor/hotkeys.less";
@import "./editor/feature-onboarding.less";
.full-size {
position: absolute;

View file

@ -0,0 +1,8 @@
.feat-onboard {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, .8);
}