0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-10 14:51:37 -05:00
penpot/frontend/resources/styles/main/partials/sidebar-document-history.scss

45 lines
959 B
SCSS
Raw Normal View History

2016-03-01 20:39:13 +02:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
2020-09-15 11:37:54 +02:00
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, v. 2.0.
//
// Copyright (c) 2020 UXBOX Labs SL
2016-02-20 23:45:35 +01:00
2020-09-15 11:37:54 +02:00
.history-toolbox {
2016-02-20 23:45:35 +01:00
display: flex;
flex-direction: column;
2020-09-15 11:37:54 +02:00
}
2016-02-20 23:45:35 +01:00
2020-09-15 11:37:54 +02:00
.history-toolbox-title {
color: $color-gray-10;
font-size: $fs14;
padding: 0.5rem;
}
2016-02-20 23:45:35 +01:00
2020-09-15 11:37:54 +02:00
.undo-history {
font-size: $fs12;
color: $color-gray-10;
2016-02-20 23:45:35 +01:00
2020-09-15 11:37:54 +02:00
.undo-entry {
max-height: 10rem;
overflow: auto;
margin: 0.5rem;
2016-02-20 23:45:35 +01:00
&.transaction {
2020-09-15 11:37:54 +02:00
border: 2px solid $color-primary;
2016-02-20 23:45:35 +01:00
}
}
2020-09-15 11:37:54 +02:00
.undo-entry-change {
background-color: #1F1F1F;
padding: 0.5rem;
}
2016-02-20 23:45:35 +01:00
2020-09-15 11:37:54 +02:00
.separator {
margin: 0.5rem;
border-color: $color-primary;
}
2016-02-20 23:45:35 +01:00
}