overleaf/services/web/frontend/stylesheets/app/editor/history-react.less
ilkin-overleaf 867b37b76f Merge pull request #12417 from overleaf/ii-history-react-toggle-switch
[web] Toggle switch history migration

GitOrigin-RevId: c0812d03d576bc66dd8878fa80d4ac18dd8576d0
2023-03-30 08:04:22 +00:00

57 lines
1,005 B
Text

@versions-list-width: 320px;
@history-toolbar-height: 40px;
history-root {
height: 100%;
display: block;
}
.history-react {
display: flex;
height: 100%;
background-color: @history-main-bg;
.history-header {
height: @history-toolbar-height;
background-color: @history-react-header-bg;
color: @history-react-header-color;
font-size: 14px;
display: flex;
flex-direction: column;
justify-content: center;
box-sizing: border-box;
}
.doc-panel {
flex: 1;
display: flex;
flex-direction: column;
.toolbar-container {
border-bottom: 1px solid @history-react-separator-color;
padding: 0 8px;
}
.doc-container {
flex: 1;
}
}
.change-list {
width: @versions-list-width;
border-left: 1px solid @history-react-separator-color;
box-sizing: content-box;
.toggle-switch-container {
padding: 0 16px;
}
}
.toggle-switch-label {
flex: 1;
span {
display: block;
}
}
}