blob: ab21e6d7e823629d7c2d7ebffd0e7533ed790bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
.undoStack-outerContainer {
height: 100%;
display: flex;
flex-direction: column;
position: relative;
pointer-events: all;
padding-left: 4px;
}
.undoStack-resultContainer {
border-radius: 5px;
}
.undoStack-commandInput {
width: 100%;
}
.undoStack-commandResult,
.undoStack-commandString {
overflow-wrap: break-word;
}
.undoStack-commandsContainer {
background-color: whitesmoke;
flex: 1 1 auto;
overflow-y: scroll;
height: 30px;
border-radius: 5px;
}
|