1
mirror of https://github.com/pure-css/pure synced 2024-11-18 02:36:30 +01:00

Buttons - Remove css for IE 6-8 (#794)

May need to be tested on mobile.
This commit is contained in:
magikstm 2020-05-10 17:28:59 -04:00 committed by GitHub
parent 7593ed2ca6
commit 4b3cdbc595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,10 +4,8 @@
font-family: inherit;
font-size: 100%;
padding: 0.5em 1em;
color: #444; /* rgba not supported (IE 8) */
color: rgba(0, 0, 0, 0.80); /* rgba supported */
border: 1px solid #999; /*IE 6/7/8*/
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
color: rgba(0, 0, 0, 0.80);
border: none rgba(0, 0, 0, 0);
background-color: #E6E6E6;
text-decoration: none;
border-radius: 2px;
@ -56,7 +54,6 @@ a.pure-button-selected {
.pure-button-group .pure-button {
margin: 0;
border-radius: 0;
border-right: 1px solid #111; /* fallback color for rgba() for IE7/8 */
border-right: 1px solid rgba(0, 0, 0, 0.2);
}