OLD | NEW |
---|---|
1 .popover { | 1 .popover { |
2 position: absolute; | 2 position: absolute; |
3 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; | 3 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; |
4 border-width: 25px; | 4 border-width: 25px; |
5 z-index: 100; | 5 z-index: 600; |
vsevik
2014/03/19 16:27:27
I am not sure this is safe.
Shall we make splitter
| |
6 pointer-events: none; | 6 pointer-events: none; |
7 } | 7 } |
8 | 8 |
9 .popover .content { | 9 .popover .content { |
10 position: absolute; | 10 position: absolute; |
11 top: 0; | 11 top: 0; |
12 bottom: 0; | 12 bottom: 0; |
13 left: 0; | 13 left: 0; |
14 right: 0; | 14 right: 0; |
15 pointer-events: auto; | 15 pointer-events: auto; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
86 | 86 |
87 .popover.right-bottom-arrow .arrow { | 87 .popover.right-bottom-arrow .arrow { |
88 right: 0; | 88 right: 0; |
89 left: auto; | 89 left: auto; |
90 top: auto; | 90 top: auto; |
91 bottom: 0; | 91 bottom: 0; |
92 margin-bottom: 15px; | 92 margin-bottom: 15px; |
93 margin-right: -25px; | 93 margin-right: -25px; |
94 background-position: 0 -57px; | 94 background-position: 0 -57px; |
95 } | 95 } |
OLD | NEW |