buttons inside v-card-action unclickable
See original GitHub issueSteps to reproduce
In a v-toolbar, create a v-menu with v-card and v-card-action containing one or two buttons. Apply CSS class to v-card with the style:
position: fixed !important;
v-card is now fixed at a position when menu clicked, However, buttons inside v-card-action can no longer be clicked. This seem to happen in Microsoft Edge and IE 11. Chrome and Firefox works ok.
Versions
v0.15.7, Microsoft Edge and IE 11.
What is expected ?
Ideally buttons clickable and functional after the absolute position style is applied.
What is actually happening ?
Buttons cannot be clicked.
Reproduction Link
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
javascript - css button set to unclickable
Try adding a class in your element and provide below css to it :- HTML <input type="button" value="Save" class="Disabled"/>.
Read more >Coding An Unclickable Button In JavaScript - YouTube
Normally we do practical tutorials on this channel.. but this time let's code a very simple button that will move away from your...
Read more >How to create UNCLICKABLE NAVIGATION BUTTONS in ...
Welcome to day 10 of my 100 Days of Freebies Christmas Countdown! Navigation bars are a great way to help your readers find...
Read more >Submit button petition not clickable (only very top of button)
Hi! I installed Civist and when I created a petition I noticed that the submit button is not working great. Only a very...
Read more >How to make buttons unclickable when one of them is clicked
Hello, I am using JDev 11.1.1.4.0. I have a jspx page that has 6 command buttons. Some of them process the data present...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
TIL that IE doesn’t support initial http://caniuse.com/#feat=css-initial-value
Does
auto
work instead?Use
content-class
on the menu instead of giving the card a class directly. This is caused by a quirk in IE where a positioned element must overlap all its parents for clicks to register.The blue rectangle below is the
menu__content
wrapper created by vuetify.https://codepen.io/anon/pen/dVRNqy