Tuesday, July 22, 2014

How to apply style to all disabled buttons throughout the application? Asp.Net, CSS

To apply style to disabled button in Asp.net like this:

  .button:disabled
  { 
    color:gray;
    CURSOR: default;
  }


To apply style to button only in Asp.net like this:

  .button
  { 
    CURSOR:pointer; 
  }


No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...