-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: dashboard tab only shows move cursor when editing #11480
fix: dashboard tab only shows move cursor when editing #11480
Conversation
Codecov Report
@@ Coverage Diff @@
## master #11480 +/- ##
==========================================
- Coverage 66.60% 62.25% -4.36%
==========================================
Files 862 862
Lines 41212 41208 -4
Branches 3716 3716
==========================================
- Hits 27451 25654 -1797
- Misses 13660 15376 +1716
- Partials 101 178 +77
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
@@ -46,7 +46,7 @@ | |||
} | |||
} | |||
|
|||
& .dragdroppable-tab { | |||
& .dragdroppable-tab[draggable='true'] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this not a problem before? Was dragdroppable-tab
dynamically added but somehow it's not possible to do so in the new implementation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, it's all a big pile of overrides!
The prior situation was "cursor:move" all the way down to the tab text, which was an <input type="button">
which had an override with cursor:pointer
via this super simple selector:
.dashboard-component-tabs .nav-tabs>li .editable-title input[type=button]
Instead of a button, that tab text is now in a span
, so the override is not being applied. It happened here via #10936
thank you! |
SUMMARY
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before (display mode, wrong cursor):
After (display)
After (edit mode)
TEST PLAN
ADDITIONAL INFORMATION