Created
March 23, 2018 09:10
-
-
Save ekampp/1d2a5ac67e77558d27cd8784fbd03a5b to your computer and use it in GitHub Desktop.
// source https://jsbin.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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