Skip to content

Commit

Permalink
Unprefixed CSS transitions and @Keyframes
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianZ committed Apr 25, 2013
1 parent 9045b38 commit 322ed22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extension/content/firebug/firebug.css
Expand Up @@ -343,7 +343,7 @@ panelTab > panelTabMenu .menuPopup:-moz-locale-dir(rtl) {

/************************************************************************************************/

@-moz-keyframes armedBlinking {
@keyframes armedBlinking {
100% {
text-shadow: 1px 1px 2px darkGray, 0px 0px 1em orange, 0px 0px 0.2em orange;
}
Expand All @@ -357,8 +357,8 @@ panelTab[breakOnNextArmed="true"] > .panelTab-text {
/* see issue 5618
panelTab.highlighted {
text-shadow: 1px 1px 2px darkGray, 0px 0px 1em orange, 0px 0px 0.2em orange !important;
-moz-transition-property: text-shadow;
-moz-transition-duration: 0.8s;
transition-property: text-shadow;
transition-duration: 0.8s;
}
*/

Expand Down

0 comments on commit 322ed22

Please sign in to comment.