2018-05-22 10:40:57 -04:00
|
|
|
.history-toolbar {
|
2019-12-05 14:09:31 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
top: @ide-body-top-offset;
|
|
|
|
height: @editor-toolbar-height;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
background-color: @history-toolbar-bg-color;
|
|
|
|
color: @history-toolbar-color;
|
|
|
|
padding-left: (@line-height-computed / 2);
|
2018-05-29 11:50:15 -04:00
|
|
|
}
|
2018-08-27 07:39:53 -04:00
|
|
|
|
2018-12-17 04:53:20 -05:00
|
|
|
.history-compare-mode-toolbar {
|
2019-12-05 14:09:31 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
justify-content: center;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
background-color: @history-toolbar-bg-color;
|
|
|
|
height: @editor-toolbar-height;
|
|
|
|
color: @history-toolbar-color;
|
|
|
|
padding: 0 10px;
|
2018-12-17 04:53:20 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 10:45:49 -04:00
|
|
|
.history-toolbar when (@is-overleaf-light) {
|
2019-12-05 14:09:31 -05:00
|
|
|
border-bottom: @toolbar-border-bottom;
|
2018-05-22 10:40:57 -04:00
|
|
|
}
|
2018-08-27 07:39:53 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-toolbar-selected-version {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin-right: (@line-height-computed / 2);
|
|
|
|
}
|
|
|
|
.history-toolbar-time,
|
|
|
|
.history-toolbar-selected-label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history-toolbar-actions {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
.history-toolbar-btn,
|
|
|
|
.history-toolbar-btn-danger {
|
|
|
|
.btn;
|
|
|
|
.btn-xs;
|
|
|
|
padding-left: @padding-small-horizontal;
|
|
|
|
padding-right: @padding-small-horizontal;
|
|
|
|
margin-right: (@line-height-computed / 2);
|
|
|
|
}
|
|
|
|
.history-toolbar-btn {
|
|
|
|
.btn-info;
|
|
|
|
}
|
|
|
|
.history-toolbar-btn-danger {
|
|
|
|
.btn-danger;
|
|
|
|
}
|
|
|
|
.history-toolbar-entries-list {
|
|
|
|
flex: 0 0 @changesListWidth;
|
|
|
|
padding: 0 10px;
|
|
|
|
border-left: 1px solid @editor-border-color;
|
2022-12-07 05:52:05 -05:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
2018-08-08 06:01:51 -04:00
|
|
|
|
2018-04-27 10:59:28 -04:00
|
|
|
.history-entries {
|
2019-12-05 14:09:31 -05:00
|
|
|
font-size: @history-base-font-size;
|
|
|
|
color: @history-base-color;
|
|
|
|
height: 100%;
|
|
|
|
background-color: @history-base-bg;
|
|
|
|
position: relative;
|
|
|
|
&.history-entries-dragging {
|
|
|
|
cursor: row-resize;
|
|
|
|
}
|
2018-04-27 10:59:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.history-entry-day {
|
2019-12-05 14:09:31 -05:00
|
|
|
display: block;
|
|
|
|
background-color: @history-entry-day-bg;
|
2020-11-30 09:56:38 -05:00
|
|
|
color: @history-entry-day-color;
|
2019-12-05 14:09:31 -05:00
|
|
|
padding: 5px 10px;
|
|
|
|
line-height: 1;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2018-04-27 10:59:28 -04:00
|
|
|
}
|
|
|
|
|
2019-04-09 05:56:45 -04:00
|
|
|
.history-entry-toV-handle,
|
|
|
|
.history-entry-fromV-handle {
|
2019-12-05 14:09:31 -05:00
|
|
|
position: absolute;
|
|
|
|
background-color: @history-entry-handle-bg;
|
|
|
|
height: @history-entry-handle-height;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 2;
|
|
|
|
cursor: row-resize;
|
|
|
|
|
|
|
|
&.ui-draggable-dragging {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '\00b7\00b7\00b7\00b7';
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 20px;
|
|
|
|
color: #fff;
|
|
|
|
height: @history-entry-handle-height;
|
|
|
|
line-height: @history-entry-handle-height / 2;
|
|
|
|
}
|
2019-04-09 05:56:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.history-entry-fromV-handle {
|
2019-12-05 14:09:31 -05:00
|
|
|
top: auto;
|
|
|
|
bottom: 0;
|
2019-04-09 05:56:45 -04:00
|
|
|
}
|
|
|
|
|
2018-04-27 10:59:28 -04:00
|
|
|
.history-entry-details {
|
2019-12-05 14:09:31 -05:00
|
|
|
position: relative;
|
|
|
|
background-color: #fff;
|
|
|
|
border-bottom: solid 2px @history-base-bg;
|
|
|
|
padding: 5px 10px;
|
|
|
|
cursor: pointer;
|
2019-04-09 05:56:45 -04:00
|
|
|
}
|
2018-05-01 12:27:51 -04:00
|
|
|
|
2019-04-09 05:56:45 -04:00
|
|
|
.history-version-with-label {
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-details;
|
|
|
|
padding: 7px 10px;
|
2019-04-09 05:56:45 -04:00
|
|
|
}
|
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-selected .history-entry-details,
|
|
|
|
.history-version-with-label-selected & {
|
|
|
|
background-color: @history-entry-selected-bg;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-04-09 05:56:45 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-hover-selected .history-entry-details,
|
|
|
|
.history-entry-hover-selected.history-entry-selected .history-entry-details,
|
|
|
|
.history-version-with-label-hover-selected &,
|
|
|
|
.history-version-with-label-hover-selected.history-entry-selected & {
|
|
|
|
background-color: tint(@history-entry-selected-bg, 20%);
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-04-09 05:56:45 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-selected-to .history-entry-details,
|
|
|
|
.history-entry-hover-selected-to .history-entry-details,
|
|
|
|
.history-version-with-label-selected-to &,
|
|
|
|
.history-version-with-label-hover-selected-to & {
|
|
|
|
padding-top: @history-entry-handle-height + 5px;
|
|
|
|
}
|
2018-12-17 04:53:20 -05:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-selected-from .history-entry-details,
|
|
|
|
.history-entry-hover-selected-from .history-entry-details,
|
|
|
|
.history-version-with-label-selected-from &,
|
|
|
|
.history-version-with-label-hover-selected-from & {
|
|
|
|
padding-bottom: @history-entry-handle-height + 5px;
|
|
|
|
}
|
2018-07-26 11:49:04 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-label {
|
|
|
|
display: inline-block;
|
|
|
|
color: @history-entry-label-color;
|
|
|
|
font-size: @font-size-small;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
margin-right: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
.history-entry-selected &,
|
|
|
|
.history-entry-hover-selected &,
|
|
|
|
.history-version-with-label-selected &,
|
|
|
|
.history-version-with-label-hover-selected & {
|
|
|
|
color: @history-entry-selected-label-color;
|
|
|
|
}
|
|
|
|
&.history-label-pseudo-current-state {
|
|
|
|
.history-entry-selected &,
|
|
|
|
.history-entry-hover-selected &,
|
|
|
|
.history-version-with-label-selected &,
|
|
|
|
.history-version-with-label-hover-selected & {
|
|
|
|
color: @history-entry-selected-pseudo-label-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-label-comment,
|
|
|
|
.history-label-delete-btn {
|
|
|
|
padding: 0 @padding-xs-horizontal 1px @padding-xs-horizontal;
|
|
|
|
border: 0;
|
|
|
|
background-color: @history-entry-label-bg-color;
|
|
|
|
.history-label-pseudo-current-state & {
|
|
|
|
background-color: @history-entry-pseudo-label-bg-color;
|
|
|
|
}
|
|
|
|
.history-entry-selected &,
|
|
|
|
.history-entry-hover-selected &,
|
|
|
|
.history-version-with-label-selected &,
|
|
|
|
.history-version-with-label-hover-selected & {
|
|
|
|
background-color: @history-entry-selected-label-bg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-label-comment {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
border-radius: 9999px;
|
|
|
|
max-width: 190px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
.history-label-own & {
|
|
|
|
padding-right: (@padding-xs-horizontal / 2);
|
|
|
|
border-radius: 9999px 0 0 9999px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-label-delete-btn {
|
|
|
|
padding-left: (@padding-xs-horizontal / 2);
|
|
|
|
padding-right: @padding-xs-horizontal;
|
|
|
|
border-radius: 0 9999px 9999px 0;
|
|
|
|
&:hover {
|
|
|
|
background-color: darken(@history-entry-label-bg-color, 8%);
|
|
|
|
.history-entry-selected &,
|
|
|
|
.history-entry-hover-selected &,
|
|
|
|
.history-version-with-label-selected &,
|
|
|
|
.history-version-with-label-hover-selected & {
|
|
|
|
background-color: darken(@history-entry-selected-label-bg-color, 8%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-02 10:29:12 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-label-tooltip {
|
|
|
|
white-space: normal;
|
|
|
|
padding: (@line-height-computed / 4);
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.history-label-tooltip-title,
|
|
|
|
.history-label-tooltip-owner,
|
|
|
|
.history-label-tooltip-datetime {
|
|
|
|
margin: 0 0 (@line-height-computed / 4) 0;
|
|
|
|
}
|
|
|
|
.history-label-tooltip-title {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.history-label-tooltip-datetime {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-04-27 10:59:28 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-changes {
|
|
|
|
.list-unstyled;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
.history-entry-change {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
.history-entry-change-action {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2019-05-28 07:04:35 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-change-doc {
|
|
|
|
color: @history-highlight-color;
|
|
|
|
font-weight: bold;
|
2018-04-27 10:59:28 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-selected &,
|
|
|
|
.history-entry-hover-selected &,
|
|
|
|
.history-version-with-label-selected & {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-entry-metadata {
|
|
|
|
}
|
|
|
|
.history-entry-metadata-time {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-04-27 10:59:28 -04:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entry-metadata-users {
|
|
|
|
display: inline;
|
|
|
|
padding: 0;
|
2022-08-25 08:01:48 -04:00
|
|
|
margin-right: 0.5em;
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
|
|
|
.history-entry-metadata-user {
|
|
|
|
display: inline;
|
|
|
|
&::after {
|
|
|
|
content: ', ';
|
|
|
|
}
|
|
|
|
&:last-of-type::after {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
}
|
2018-04-27 10:59:28 -04:00
|
|
|
|
2018-08-17 11:04:31 -04:00
|
|
|
.history-entries-list-upgrade-prompt {
|
2019-12-05 14:09:31 -05:00
|
|
|
background-color: #fff;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
.change-list-compare & {
|
|
|
|
font-size: @font-size-small;
|
|
|
|
}
|
2018-08-17 11:04:31 -04:00
|
|
|
}
|
|
|
|
|
2018-12-17 04:53:20 -05:00
|
|
|
.history-labels-list,
|
|
|
|
.history-labels-list-compare {
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-entries;
|
|
|
|
overflow-y: auto;
|
2018-12-17 04:53:20 -05:00
|
|
|
}
|
|
|
|
.history-labels-list-compare {
|
2019-12-05 14:09:31 -05:00
|
|
|
background-color: transparent;
|
2018-08-08 08:46:43 -04:00
|
|
|
}
|
|
|
|
|
2018-05-22 10:40:57 -04:00
|
|
|
.history-file-tree-inner {
|
2019-12-05 14:09:31 -05:00
|
|
|
.full-size;
|
|
|
|
overflow-y: auto;
|
|
|
|
background-color: @file-tree-bg;
|
|
|
|
|
|
|
|
.loading {
|
|
|
|
color: #fff;
|
|
|
|
font-size: @history-base-font-size;
|
|
|
|
text-align: center;
|
|
|
|
font-family: @font-family-serif;
|
|
|
|
}
|
2018-05-21 10:13:16 -04:00
|
|
|
}
|
2018-05-30 10:00:20 -04:00
|
|
|
|
2018-12-17 04:53:20 -05:00
|
|
|
.tooltip-history-file-tree {
|
2019-12-05 14:09:31 -05:00
|
|
|
font-size: 12px;
|
|
|
|
.tooltip-inner {
|
|
|
|
max-width: 400px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2018-12-17 04:53:20 -05:00
|
|
|
}
|
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-file-entity-wrapper {
|
|
|
|
color: #fff;
|
|
|
|
margin-left: (@line-height-computed / 2);
|
|
|
|
}
|
|
|
|
.history-file-entity-link {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
color: @file-tree-item-color;
|
|
|
|
line-height: @file-tree-line-height;
|
|
|
|
&:hover {
|
2020-11-30 09:56:38 -05:00
|
|
|
.fake-full-width-bg(@file-tree-item-hover-bg);
|
2019-12-05 14:09:31 -05:00
|
|
|
background-color: @file-tree-item-hover-bg;
|
|
|
|
color: @file-tree-item-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
color: @file-tree-item-focus-color;
|
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-file-entity-link-selected {
|
|
|
|
background-color: @file-tree-item-selected-bg;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #fff;
|
|
|
|
.fake-full-width-bg(@file-tree-item-selected-bg);
|
2020-11-30 09:56:38 -05:00
|
|
|
&:hover,
|
2019-12-05 14:09:31 -05:00
|
|
|
&:focus {
|
2020-11-30 09:56:38 -05:00
|
|
|
background-color: @file-tree-item-selected-bg;
|
|
|
|
.fake-full-width-bg(@file-tree-item-selected-bg);
|
|
|
|
color: #fff;
|
|
|
|
pointer-events: none;
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.history-file-entity-name-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.history-file-entity-name {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.history-file-entity-operation-badge {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
text-transform: lowercase;
|
|
|
|
margin-left: 0.5em;
|
|
|
|
font-size: 0.7em;
|
|
|
|
background: @history-file-badge-bg;
|
|
|
|
color: @history-file-badge-color;
|
|
|
|
border-radius: 8px;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 2px 4px 3px;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
2018-12-17 04:53:20 -05:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-file-entity-icon,
|
|
|
|
.history-file-operation-icon {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
color: @file-tree-item-icon-color;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
.history-file-entity-link-selected & {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
2018-12-17 04:53:20 -05:00
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
.history-file-operation-icon {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.history-file-entity-name-edited,
|
|
|
|
.history-file-entity-name-added,
|
|
|
|
.history-file-entity-name-removed,
|
|
|
|
.history-file-entity-name-renamed {
|
|
|
|
}
|
|
|
|
.history-file-entity-name-removed {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|