blob: 4157f0f7edac414d0f43ca0f2ea2231783cfcefd (
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
30
31
32
33
34
|
.dockingViewButtonSelector {
div {
overflow: visible !important;
}
display: inline-block;
width:100%;
height:100%;
}
.dockingViewButtonSelector-flyout {
position: relative;
z-index: 9999;
background-color: #eeeeee;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
color: black;
padding: 10px;
border-radius: 3px;
display: inline-block;
height: 100%;
width: 100%;
border-radius: 3px;
hr {
height: 1px;
margin: 0px;
background-color: gray;
border-top: 0px;
border-bottom: 0px;
border-right: 0px;
border-left: 0px;
}
}
|