File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,3 +5,14 @@ textarea {
55legend {
66 width : 540px ;
77}
8+
9+ /* Bootstrap hides .tooltiptext with visibility:hidden (not display:none), so
10+ the span still occupies layout and can be reported by the browser as the
11+ topmost element at a nearby control's location — which makes Selenium fail
12+ with "element click intercepted: ... <span class="tooltiptext">". Marking
13+ hidden tooltips non-interactive keeps them from ever being a pointer/click
14+ target. (token_detail.css has the same rule for the token-detail page; this
15+ covers the debugger pages, which load common.css but not token_detail.css.) */
16+ .tooltip .tooltiptext {
17+ pointer-events : none;
18+ }
Original file line number Diff line number Diff line change @@ -34,3 +34,12 @@ legend {
3434 max-width : 100% ;
3535 box-sizing : border-box;
3636}
37+
38+ /* Bootstrap hides .tooltiptext with visibility:hidden (not display:none), so
39+ the span still occupies layout and can be reported as the topmost element at
40+ a control's location, making Selenium fail with "element click intercepted:
41+ ... <span class="tooltiptext">". debugger2.html loads this file (not
42+ common.css), so mirror common.css / token_detail.css here. */
43+ .tooltip .tooltiptext {
44+ pointer-events : none;
45+ }
You can’t perform that action at this time.
0 commit comments