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

508 lines
9.2 KiB
Text
Raw Normal View History

2014-06-26 11:39:52 -04:00
@import "./editor/file-tree.less";
@import "./editor/history.less";
2014-06-26 11:39:52 -04:00
@import "./editor/toolbar.less";
@import "./editor/left-menu.less";
2014-06-28 08:25:06 -04:00
@import "./editor/pdf.less";
2015-08-04 05:45:19 -04:00
@import "./editor/enago.less";
2014-07-01 09:12:28 -04:00
@import "./editor/share.less";
2014-07-02 10:56:09 -04:00
@import "./editor/chat.less";
2014-07-03 12:05:50 -04:00
@import "./editor/binary-file.less";
2014-07-10 12:27:19 -04:00
@import "./editor/search.less";
2014-07-15 12:56:09 -04:00
@import "./editor/publish-template.less";
2014-07-17 10:25:22 -04:00
@import "./editor/online-users.less";
2014-07-22 09:38:32 -04:00
@import "./editor/hotkeys.less";
2016-10-11 09:24:01 -04:00
@import "./editor/review-panel.less";
2016-10-20 07:24:07 -04:00
@import "./editor/feature-onboarding.less";
2014-06-26 11:39:52 -04:00
2017-02-23 10:47:48 -05:00
@keyframes blink {
0% {
opacity: 0.2;
}
20% {
opacity: 1;
}
100% {
opacity: 0.2;
}
}
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;
2014-07-02 11:41:29 -04:00
top: 2px;
left: 0;
right: 0;
text-align: center;
2014-07-02 11:41:29 -04:00
.alert {
display: inline-block;
text-align: left;
min-width: 400px;
2014-07-02 11:41:29 -04:00
padding: (@line-height-computed / 4);
font-size: 14px;
margin-bottom: (@line-height-computed / 4);
}
2014-06-24 11:33:36 -04:00
}
#try-reconnect-now-button {
margin-left: 20px;
}
2014-06-24 11:33:36 -04:00
#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-07-10 08:41:54 -04:00
.loading-screen {
2017-02-23 10:47:48 -05:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: #FFF;
}
.loading-screen-lion-container {
width: 15%;
min-width: 200px;
2014-07-10 08:41:54 -04:00
text-align: center;
}
2017-02-23 10:47:48 -05:00
.loading-screen-lion {
position: relative;
width: 100%;
padding-top: 86.2%;
height: 0;
background: url(/img/brand/lion-grey.svg) no-repeat bottom / 100%;
&::after {
content: '';
position: absolute;
height: inherit;
right: 0;
bottom: 0;
left: 0;
background: url(/img/brand/lion.svg) no-repeat bottom / 100%;
transition: height .5s;
}
}
.loading-screen-label {
margin: 0;
padding-top: 1em;
font-size: 2em;
color: @gray-dark;
}
.loading-screen-ellip {
animation: blink 1.4s both infinite;
&:nth-child(2) {
animation-delay: 0.2s;
}
&:nth-child(3) {
animation-delay: 0.4s;
}
}
.loading-screen-error {
margin: 0;
padding-top: 1em;
color: @state-danger-text;
}
2014-07-10 08:41:54 -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-07-03 11:18:49 -04:00
.project-name {
.name {
display: inline-block;
max-width: 250px;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
padding: 6px;
color: @gray;
font-weight: 700;
white-space: nowrap;
}
input {
height: 30px;
margin-top: 4px;
text-align: center;
padding: 6px;
font-weight: 700;
}
a.rename {
visibility: hidden;
2016-02-23 10:00:15 -05:00
display: inline-block;
color: @gray-light;
padding: 5px;
border-radius: @border-radius-small;
&:hover {
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
color: @gray-dark;
text-decoration: none;
}
2014-07-03 11:18:49 -04:00
}
&:hover {
a.rename {
visibility: visible;
}
}
}
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);
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
background-image: url(/img/spellcheck-underline@2x.png);
2016-11-30 09:34:50 -05:00
background-size: 5px 4px;
}
2014-06-25 11:06:04 -04:00
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-10-08 11:32:42 -04:00
.highlights-before-label, .highlights-after-label {
position: absolute;
right: @line-height-computed;
2014-10-08 11:32:42 -04:00
z-index: 1;
}
.highlights-before-label {
top: @line-height-computed / 2;
}
.highlights-after-label {
bottom: @line-height-computed / 2;
}
2014-06-24 10:31:44 -04:00
}
// Hack to solve an issue where scrollbars aren't visible in Safari.
// Safari seems to clip part of the scrollbar element. By giving the
// element a background, we're telling Safari that it *really* needs to
// paint the whole area. See https://github.com/ajaxorg/ace/issues/2872
.ace_scrollbar-inner {
background-color: #FFF;
opacity: 0.01;
.ace_dark & {
background-color: #000;
}
}
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;
}
.editor-dark {
color: @gray-lighter;
background-color: @editor-dark-background-color;
.ui-layout-resizer {
background-color: darken(@editor-dark-background-color, 10%);
border: none;
}
.btn-default {
color: white;
background-color: @gray;
border-color: darken(@gray-dark, 10%);
&:hover {
background-color: darken(@gray, 5%);
border-color: darken(@gray-dark, 20%);
}
}
}
2015-12-08 03:50:11 -05:00
.modal-alert {
margin-top:10px;
margin-bottom:0px;
}
2016-02-10 05:39:04 -05:00
2016-11-02 12:59:57 -04:00
// vertically centre the "connection down" modal so it does not hide
// the reconnecting indicator
.modal.lock-editor-modal {
display: flex !important;
.modal-dialog {
margin: auto;
}
}
.sl_references_search_hint-varDefault {
position: absolute;
bottom: -22px;
left: -1px;
right: 0px;
text-align: center;
padding: 2px;
background: rgb(202, 214, 250);
border: 1px solid lightgray;
box-shadow: 3px 3px 5px rgba(0,0,0,.2);
span {
color: black;
}
}
2016-07-21 09:11:17 -04:00
.sl_references_search_hint-varButton {
position: absolute;
2016-07-20 12:04:25 -04:00
bottom: -65px;
left: -1px;
right: 0px;
2016-07-20 12:04:02 -04:00
padding: 0 6px 6px;
text-align: center;
2016-07-20 12:04:02 -04:00
background: #fbfbfb;
color: #FFF;
box-shadow: 3px 3px 5px rgba(0,0,0,.2);
border-left: 1px solid lightgray;
2016-07-20 10:32:10 -04:00
font-family: @font-family-sans-serif;
font-size: 13px;
font-weight: 600;
2016-07-20 12:04:25 -04:00
hr {
margin: 6px -6px;
}
button {
width: 100%;
font-size: inherit;
line-height: 1.4;
}
span {
padding-left: 10px;
}
kbd {
2016-07-20 12:04:25 -04:00
display: block;
font-family: inherit;
2016-07-20 12:04:25 -04:00
font-size: 12px;
font-weight: normal;
}
}
2016-07-21 09:11:17 -04:00
// -- References Search Modal --
.references-search-modal-backdrop {
// don't grey out the editor when the
// modal is active
background-color: transparent;
}
2016-02-10 05:39:04 -05:00
.references-search-modal {
// upgrade prompt
2016-02-17 09:49:37 -05:00
.references-search-upgrade-prompt {
2016-02-17 11:44:41 -05:00
padding: 24px;
padding-bottom: 48px;
.upgrade-prompt {
2016-02-17 09:49:37 -05:00
text-align: center;
2016-02-17 11:44:41 -05:00
width: 400px;
padding-top: 14px;
padding-bottom: 14px;
padding-left: 38px;
padding-right: 38px;
margin: auto;
background: white;
opacity: 0.95;
border-radius: 8px;
.message {
margin-top: 15px;
&.call-to-action {
font-weight: bold;
}
ul.list-unstyled {
text-align: left;
}
}
a.btn {
opacity: 1.0;
}
2016-02-17 09:49:37 -05:00
}
}
2016-02-10 05:39:04 -05:00
.search-form {
// position the spinner inside the input element
2016-02-15 11:11:59 -05:00
i.fa-spinner {
margin-top: -30px;
2016-02-10 05:39:04 -05:00
}
}
2016-02-12 11:24:35 -05:00
.alert-danger {
margin-top: 12px;
margin-bottom: 0px;
}
// search result items list
2016-02-10 05:39:04 -05:00
.search-results {
font-size: 12px;
2016-02-12 11:24:35 -05:00
.no-results-message {
font-size: 16px;
}
.search-result-hit {
2016-02-12 11:24:35 -05:00
&:hover {
cursor: pointer;
}
2016-02-10 08:24:07 -05:00
border-bottom: 1px solid #ddd;
padding: 8px;
2016-02-10 08:24:07 -05:00
&:last-child {
border-bottom: 1px solid transparent;
}
2016-02-11 10:03:19 -05:00
border-left: 4px solid transparent;
&.selected-search-result-hit {
2016-02-12 11:24:35 -05:00
background-color: @red;
color: white;
2016-02-15 11:11:59 -05:00
.hit-year.small {
color: white;
}
2016-03-01 11:29:19 -05:00
.hit-journal.small {
color: white;
}
2016-02-11 10:03:19 -05:00
}
.hit-title {
font-size: 1.3em;
font-style: italic;
}
2016-02-10 08:24:07 -05:00
}
2016-02-10 05:39:04 -05:00
}
2016-07-18 11:07:00 -04:00
}
.referencesImportModal {
.referencesImportPreview {
margin-top: 15px;
.referencesImportPreviewScroller {
font-family: monospace;
font-size: 0.8em;
max-height: 360px;
overflow: scroll;
white-space: pre;
padding: 8px 12px;
margin-bottom: 15px;
border: 1px solid @gray-lighter;
background-color: @gray-lightest;
}
}
2016-10-04 06:57:42 -04:00
}
2016-10-27 05:29:38 -04:00
.teaser-title,
2016-10-04 06:57:42 -04:00
.dropbox-teaser-title {
margin-top: 0;
text-align: center;
}
2016-10-27 05:29:38 -04:00
.teaser-img,
2016-10-04 06:57:42 -04:00
.dropbox-teaser-img {
.img-responsive;
margin-bottom: 5px;
}
2016-11-03 12:14:13 -04:00
.teaser-video-container,
.dropbox-teaser-video-container {
margin-top: -@modal-inner-padding;
margin-left: -@modal-inner-padding;
margin-right: -@modal-inner-padding;
margin-bottom: 5px;
overflow: hidden;
}
2016-11-03 12:14:13 -04:00
.teaser-video,
.dropbox-teaser-video {
width: 100%;
height: auto;
2016-11-03 12:14:13 -04:00
border-bottom: 1px solid @modal-header-border-color;
}