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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
.popover-container {
pointer-events: none;
overflow: hidden;
}
.popover {
position: absolute;
-webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
border-width: 25px;
z-index: 600;
pointer-events: none;
display: flex;
}
.popover .content {
pointer-events: auto;
overflow: auto;
-webkit-user-select: text;
line-height: 11px;
flex: auto;
}
.popover .content.fixed-height {
overflow: hidden;
}
.popover .arrow {
position: absolute;
background-image: url(Images/popoverArrows.png);
width: 19px;
height: 19px;
margin-left: 15px;
margin-top: -24px;
top: 0;
left: 0;
}
.popover.top-left-arrow .arrow {
/* The default is top-left, no styles needed. */
}
.popover.top-right-arrow .arrow {
right: 24px;
left: auto;
}
.popover.bottom-left-arrow .arrow {
top: auto;
bottom: 0;
margin-top: 0;
margin-bottom: -24px;
background-position: 0 -19px;
}
.popover.bottom-right-arrow .arrow {
right: 15px;
left: auto;
top: auto;
bottom: 0;
margin-top: 0;
margin-bottom: -24px;
background-position: 0 -19px;
}
.source-frame-popover-title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-weight: bold;
padding-left: 18px;
}
.source-frame-popover-tree {
border-top: 1px solid rgb(184, 184, 184);
overflow: auto;
position: absolute;
top: 15px;
bottom: 0;
left: 0;
right: 0;
}
/* Custom popup scrollers */
.custom-popup-horizontal-scroll ::-webkit-scrollbar,
.custom-popup-vertical-scroll ::-webkit-scrollbar {
width: 11px;
height: 11px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-corner,
.custom-popup-vertical-scroll ::-webkit-scrollbar-corner {
display: none;
}
.custom-popup-horizontal-scroll ::-webkit-resizer,
.custom-popup-vertical-scroll ::-webkit-resizer {
display: none;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-button,
.custom-popup-vertical-scroll ::-webkit-scrollbar-button {
display: none;
}
/* Custom Horizontal Scrollbar Styles */
.custom-popup-horizontal-scroll ::-webkit-scrollbar:horizontal:corner-present {
border-right-width: 0;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb:horizontal {
-webkit-border-image: url(Images/thumbHoriz.png) 0 11 0 11;
border-color: transparent;
border-width: 0 11px;
min-width: 20px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb:horizontal:hover {
-webkit-border-image: url(Images/thumbHoverHoriz.png) 0 11 0 11;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-thumb:horizontal:active {
-webkit-border-image: url(Images/thumbActiveHoriz.png) 0 11 0 11;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:start {
margin-left: 5px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:end {
margin-right: 5px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:end:corner-present {
margin-right: 4px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:decrement {
-webkit-border-image: url(Images/thumbHoriz.png) 0 11 0 11;
border-color: transparent;
border-width: 0 0 0 11px;
}
.custom-popup-horizontal-scroll ::-webkit-scrollbar-track-piece:horizontal:increment {
-webkit-border-image: url(Images/thumbHoriz.png) 0 11 0 11;
border-color: transparent;
border-width: 0 11px 0 0;
}
/* Custom Vertical Scrollbar Styles */
.custom-popup-vertical-scroll ::-webkit-scrollbar:vertical:corner-present {
border-bottom-width: 0;
}
.custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical {
-webkit-border-image: url(Images/thumbVert.png) 11 0 11 0;
border-color: transparent;
border-width: 11px 0;
min-height: 20px;
}
.custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:hover {
-webkit-border-image: url(Images/thumbHoverVert.png) 11 0 11 0;
}
.custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:active {
-webkit-border-image: url(Images/thumbActiveVert.png) 11 0 11 0;
}
.custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:decrement {
}
.custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical {
background: linear-gradient(to right, rgb(80, 80, 80), rgb(192, 192, 192) 25%, rgb(192, 192, 192));
border-radius: 5px;
margin: 5px;
}
|