overleaf/services/web/public/stylesheets/less/trackchanges.less

205 lines
3.2 KiB
Text
Raw Normal View History

2014-03-06 11:32:18 -05:00
@changesListWidth: 250px;
@changesListPadding: 10px;
#trackChangesPanel {
.track-changes-diff {
position: absolute;
2014-03-06 11:32:18 -05:00
right: @changesListWidth + 1px;
2014-03-06 09:08:12 -05:00
left: 0;
top: 0;
bottom: 0;
padding: 0px 12px;
height: 100%;
2014-03-06 09:08:12 -05:00
.ace_editor {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
}
.track-changes-side-bar {
border-left: 1px solid #999;
height: 100%;
2014-03-06 11:32:18 -05:00
width: @changesListWidth;
position: absolute;
right: 0;
2014-03-07 06:24:11 -05:00
background-color: white;
2014-03-07 08:05:59 -05:00
.track-changes-header {
background-color: #282828;
2014-03-07 08:05:59 -05:00
h3 {
color: white;
padding-left: 8px;
font-size: 1.2em;
}
a {
color: white;
position: absolute;
top: 6px;
right: 8px;
}
height: 30px;
}
.change-list-area {
overflow: scroll;
position: absolute;
left: 0px;
right: 0px;
top: 30px;
bottom: 0px;
}
}
2014-03-06 09:08:12 -05:00
.deleted-change-background, .deleted-change-foreground, .inserted-change, .change-name-marker {
position: absolute;
z-index: 2;
}
.change-name-marker {
.name {
font-size: 0.8em;
padding: 2px 6px;
.border-radius(3px 3px 3px 3px);
position: absolute;
border: 1px solid #999;
2014-03-06 09:08:12 -05:00
left: 0;
}
}
2014-03-06 11:32:18 -05:00
ul.change-list {
li {
position: relative;
2014-03-07 06:24:11 -05:00
border-bottom: 1px solid #ccc;
cursor: pointer;
2014-03-06 11:32:18 -05:00
.change-selectors {
.change-selector-from {
position: absolute;
bottom: 5px;
left: 8px;
opacity: 0.8;
2014-03-06 11:32:18 -05:00
}
.change-selector-to {
position: absolute;
top: 5px;
left: 8px;
opacity: 0.8;
}
.range {
position: absolute;
left: 12px;
width: 4px;
2014-03-06 11:32:18 -05:00
top: 0;
bottom: 0;
2014-03-06 11:32:18 -05:00
}
}
.change-description {
2014-03-11 08:13:46 -04:00
padding: 6px 4px 6px 30px;
min-height: 38px;
2014-03-07 06:24:11 -05:00
}
.change-name {
font-size: 0.9em;
color: #666;
text-transform: capitalize;
2014-03-07 06:24:11 -05:00
}
.color-square {
display: inline-block;
height: 10px;
width: 10px;
margin-right: 4px;
margin-bottom: -1px;
}
2014-03-11 08:13:46 -04:00
.restore {
a {
display: block;
padding: 4px;
text-align: center;
border-top: 1px solid #ccc;
}
display: none;
}
2014-03-07 06:24:11 -05:00
&:hover {
background-color: #eaeaea;
2014-03-06 11:32:18 -05:00
}
}
li.selected {
2014-03-07 06:24:11 -05:00
background-color: #eaeaea;
.change-selectors {
.range {
background-color: rgb(0, 143, 255);
}
}
}
li.selected-to {
.change-selectors {
.range {
top: 10px;
}
.change-selector-to {
opacity: 1;
}
}
}
li.selected-from {
.change-selectors {
.range {
2014-03-11 08:13:46 -04:00
bottom: 37px;
}
.change-selector-from {
opacity: 1;
2014-03-11 08:13:46 -04:00
bottom: 32px;
}
}
2014-03-11 08:13:46 -04:00
.restore {
display: block;
}
}
}
ul.change-list.hover-state {
li {
.change-selectors {
.range {
background-color: transparent;
top: 0;
bottom: 0;
}
}
}
li.hover-selected {
.change-selectors {
.range {
background-color: #999;
}
}
}
li.hover-selected-to {
.change-selectors {
.range {
top: 10px;
}
.change-selector-to {
opacity: 1;
}
}
}
li.hover-selected-from {
.change-selectors {
.range {
bottom: 10px;
}
.change-selector-from {
opacity: 1;
}
}
2014-03-06 11:32:18 -05:00
}
2014-03-11 08:13:46 -04:00
li.selected-from.hover-selected-from {
.change-selectors {
.range {
bottom: 37px;
}
}
}
2014-03-06 11:32:18 -05:00
}
}