This repository was archived by the owner on Dec 19, 2024. It is now read-only.
  
  
  
  
  
Description
The current default style applies a background color to all disabled buttons.
But according to the material spec, flat disabled buttons don't have a background, just gray text.
Can we split the style and align it closer with the spec (also using the theme colors for disabled text instead of the hardcoded grey value etc)
:host([disabled]:not([raised])) {
  ...
  @apply(--paper-button-disabled);
  @apply(--paper-button-flat-disabled);
}
:host([disabled][raised]) {
  ...
  @apply(--paper-button-disabled);
  @apply(--paper-button-raised-disabled);
}