Skip to content

Instantly share code, notes, and snippets.

@ekampp
Created March 23, 2018 09:10
Show Gist options
  • Save ekampp/1d2a5ac67e77558d27cd8784fbd03a5b to your computer and use it in GitHub Desktop.
Save ekampp/1d2a5ac67e77558d27cd8784fbd03a5b to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" />
</head>
<body style="background-color: #fff;">
<p>Current style:</p>
<button class="btn-flat">active</button>
<button class="btn-flat" disabled>disabled</button>
<p>Expected style:</p>
<button class="btn-flat">active</button>
<button class="btn-flat" disabled style="background: none !important;">disabled</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment