Buttons: Don't transform disabled buttons by 1px on :active.

Fixes #34717.
Built from https://develop.svn.wordpress.org/trunk@35657


git-svn-id: http://core.svn.wordpress.org/trunk@35621 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling
2015-11-17 23:18:29 +00:00
parent aa71d8b7ff
commit 31ca684bb4
5 changed files with 9 additions and 3 deletions

View File

@@ -193,6 +193,9 @@ TABLE OF CONTENTS:
box-shadow: none !important;
text-shadow: 0 1px 0 #fff !important;
cursor: default;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
/* Buttons that look like links, for a cross of good semantics with the visual */

File diff suppressed because one or more lines are too long

View File

@@ -193,6 +193,9 @@ TABLE OF CONTENTS:
box-shadow: none !important;
text-shadow: 0 1px 0 #fff !important;
cursor: default;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
/* Buttons that look like links, for a cross of good semantics with the visual */

File diff suppressed because one or more lines are too long