mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
92 lines
No EOL
1.5 KiB
Text
92 lines
No EOL
1.5 KiB
Text
.pdf-viewer, .logs {
|
|
.full-size;
|
|
top: 58px;
|
|
}
|
|
|
|
.pdf-viewer {
|
|
.pdfjs-viewer {
|
|
.full-size;
|
|
background-color: @gray-lighter;
|
|
overflow: scroll;
|
|
canvas {
|
|
background: white;
|
|
box-shadow: black 0px 0px 10px;
|
|
}
|
|
.page-container {
|
|
margin: 10px auto;
|
|
padding: 0 10px;
|
|
box-sizing: content-box;
|
|
}
|
|
}
|
|
.progress-thin {
|
|
position: absolute;
|
|
top: -2px;
|
|
height: 3px;
|
|
left: 0;
|
|
right: 0;
|
|
.progress-bar {
|
|
height: 100%;
|
|
background-color: @link-color;
|
|
}
|
|
}
|
|
.pdfjs-controls {
|
|
position: absolute;
|
|
padding: @line-height-computed / 2;
|
|
top: 0;
|
|
left: 0;
|
|
display: inline-block;
|
|
.btn-group {
|
|
transition: opacity 0.5s ease, visibility 0 linear 0.5s;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
&:hover, &.flash {
|
|
.btn-group {
|
|
transition: none;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
i.fa-arrows-h {
|
|
border-right: 2px solid white;
|
|
border-left: 2px solid white;
|
|
}
|
|
i.fa-arrows-v {
|
|
border-top: 2px solid white;
|
|
border-bottom: 2px solid white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.log-btn {
|
|
.label {
|
|
margin-left: .4em;
|
|
padding: .2em .4em .3em;
|
|
vertical-align: text-bottom;
|
|
line-height: inherit;
|
|
}
|
|
}
|
|
|
|
.logs {
|
|
padding: @line-height-computed / 2;
|
|
overflow: auto;
|
|
.alert {
|
|
font-size: 0.9rem;
|
|
margin-bottom: @line-height-computed / 2;
|
|
.line-no {
|
|
float: right;
|
|
color: @gray;
|
|
font-weight: 700;
|
|
}
|
|
.entry-message {
|
|
font-weight: 700;
|
|
//font-family: @font-family-monospace;
|
|
}
|
|
.entry-content {
|
|
white-space: pre-wrap;
|
|
font-size: 0.8rem;
|
|
//font-family: @font-family-monospace;
|
|
}
|
|
}
|
|
}
|
|
|