-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable behaviour #46
Open
Sparviero-Sughero
wants to merge
41
commits into
michenriksen:master
Choose a base branch
from
necolas:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
…perty values. Addition of :focus and :active styles to improve accessibility and provide feedback to keyboard users.
…value set in demo.css. Changed padding and border-radius values to em units, works better with different font sizes.
…ge with CSS gradient. Easier to modify and gives further independence from font size. Interaction states modified to be much closer to github's style.
… and merged what was needed into demo.css, removed empty spans used for icons
…volved modifying how backgrounds are applied to the default button. Restructured CSS file.
… and changed the page's look so that buttons are more prominent
…distinct from normal buttons, and it works in older browsers
… Redesigned example page and using prettyPrint for code syntax highlighting. Changed icon classes on the buttons
…, updated CSS background positions
Remove vendor prefixed `border-radius` as it is widely supported without prefix by contemporary browsers. Remove any prefixed versions of `background-clip` that are no longer needed. Add `-ms-` prefixed linear gradients.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
.button.disable {
opacity: 0.5;
cursor: default;
}
.button.disable:hover
.button.disable:focus,
.button.disable:active {
background-color: #ececec;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
background: -moz-linear-gradient(#f4f4f4, #ececec);
background: -ms-linear-gradient(#f4f4f4, #ececec);
background: -o-linear-gradient(#f4f4f4, #ececec);
background: linear-gradient(#f4f4f4, #ececec);
}