overleaf/services/web/public/stylesheets/app/editor.less

141 lines
2.5 KiB
Text
Raw Normal View History

2014-06-26 11:39:52 -04:00
@import "./editor/file-tree.less";
@import "./editor/track-changes.less";
@import "./editor/toolbar.less";
@import "./editor/left-menu.less";
2014-06-28 08:25:06 -04:00
@import "./editor/pdf.less";
2014-07-01 09:12:28 -04:00
@import "./editor/share.less";
2014-06-26 11:39:52 -04:00
2014-06-24 15:28:53 -04:00
.full-size {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
2014-06-24 11:33:36 -04:00
.global-alerts {
position: absolute;
z-index: 20;
top: (@line-height-computed / 4);
width: 400px;
left: 50%;
margin-left: -200px;
}
#ide-body {
2014-06-24 15:28:53 -04:00
.full-size;
2014-06-24 11:33:36 -04:00
top: 40px;
}
2014-06-24 10:31:44 -04:00
#editor {
2014-06-24 15:28:53 -04:00
.full-size;
2014-06-26 12:25:25 -04:00
}
2014-06-24 10:31:44 -04:00
2014-06-27 07:45:37 -04:00
.loading-panel {
2014-06-26 12:25:25 -04:00
.full-size;
padding-top: 10rem;
font-family: @font-family-serif;
text-align: center;
background-color: #fafafa;
2014-06-24 12:50:59 -04:00
}
2014-06-27 07:45:37 -04:00
.error-panel {
.full-size;
padding: @line-height-computed;
background-color: #fafafa;
.alert {
max-width: 400px;
margin: auto;
}
}
2014-06-24 10:31:44 -04:00
// The internal components of the aceEditor directive
.ace-editor-wrapper {
2014-06-24 15:28:53 -04:00
.full-size;
2014-06-24 10:31:44 -04:00
.undo-conflict-warning {
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 10;
}
.ace-editor-body {
width: 100%;
height: 100%;
}
2014-06-25 11:06:04 -04:00
.spelling-highlight {
position: absolute;
background-image: url(/img/spellcheck-underline.png);
background-repeat: repeat-x;
background-position: bottom left;
}
2014-06-25 13:17:17 -04:00
.remote-cursor {
2014-06-30 09:01:39 -04:00
position: absolute;
2014-06-26 06:19:05 -04:00
border-left: 2px solid transparent;
2014-06-25 13:17:17 -04:00
.nubbin {
2014-06-26 06:19:05 -04:00
height: 5px;
width: 5px;
2014-06-25 13:17:17 -04:00
position: absolute;
2014-06-26 06:19:05 -04:00
left: -2px;
2014-06-25 13:17:17 -04:00
}
}
2014-06-26 06:19:05 -04:00
.annotation-label {
padding: (@line-height-computed / 4) (@line-height-computed / 2);
font-size: 0.8rem;
z-index: 100;
font-family: @font-family-sans-serif;
color: white;
font-weight: 700;
white-space: nowrap;
2014-06-26 06:19:05 -04:00
}
2014-06-27 07:45:37 -04:00
.annotation {
position: absolute;
z-index: 2;
}
2014-06-24 10:31:44 -04:00
}
2014-06-21 17:20:37 -04:00
.ui-layout-resizer {
width: 6px;
background-color: #f4f4f4;
2014-06-24 10:31:44 -04:00
border-left: 1px solid @toolbar-border-color;
border-right: 1px solid @toolbar-border-color;
2014-06-21 17:20:37 -04:00
.ui-layout-toggler {
color: #999;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 16px !important;
line-height: 50px;
2014-02-12 05:23:40 -05:00
&:hover {
2014-06-21 17:20:37 -04:00
background-color: #ddd;
2014-02-12 05:23:40 -05:00
color: #333;
}
}
}
2014-06-21 17:20:37 -04:00
.ui-layout-resizer-west.ui-layout-resizer-open, .ui-layout-resizer-east.ui-layout-resizer-closed {
.ui-layout-toggler {
&:before {
content: "\f104"
2014-02-12 05:23:40 -05:00
}
}
}
2014-06-21 17:20:37 -04:00
.ui-layout-resizer-east.ui-layout-resizer-open, .ui-layout-resizer-west.ui-layout-resizer-closed {
.ui-layout-toggler {
&:before {
content: "\f105"
2014-02-12 05:23:40 -05:00
}
}
}
2014-06-21 17:20:37 -04:00
.ui-layout-resizer-dragging {
2014-02-12 05:23:40 -05:00
background-color: #ddd;
2014-06-24 15:28:53 -04:00
}
2014-06-25 11:06:04 -04:00
.context-menu {
position: fixed;
z-index: 100;
}