mirror of
https://github.com/penpot/penpot.git
synced 2025-01-29 18:09:19 -05:00
44 lines
959 B
SCSS
44 lines
959 B
SCSS
// 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/.
|
|
//
|
|
// 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
|
|
|
|
.history-toolbox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.history-toolbox-title {
|
|
color: $color-gray-10;
|
|
font-size: $fs14;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.undo-history {
|
|
font-size: $fs12;
|
|
color: $color-gray-10;
|
|
|
|
.undo-entry {
|
|
max-height: 10rem;
|
|
overflow: auto;
|
|
margin: 0.5rem;
|
|
|
|
&.transaction {
|
|
border: 2px solid $color-primary;
|
|
}
|
|
}
|
|
|
|
.undo-entry-change {
|
|
background-color: #1F1F1F;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.separator {
|
|
margin: 0.5rem;
|
|
border-color: $color-primary;
|
|
}
|
|
}
|