blob: f636ca070cb6f9d6a709fcc2d1e2732ba65025f4 (
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
|
@import "globalCssVariables";
.mainOverlayTextBox-textInput {
background-color: rgba(248, 6, 6, 0.001);
width: 400px;
height: 200px;
position:absolute;
overflow: visible;
top: 0;
left: 0;
pointer-events: none;
z-index: $mainTextInput-zindex;
.formattedTextBox-cont {
background-color: rgba(248, 6, 6, 0.001);
width: 100%;
height: 100%;
position:absolute;
top: 0;
left: 0;
}
}
.mainOverlayTextBox-.unscaled_div{
z-index: 10000;
position: absolute;
pointer-events: none;
}
|