Fix remaining uses of transition-duration without time units

Commit 8be3c5ed21 changed the CSS parser
to only accept values with explicit time units.
This commit is contained in:
Rui Matos
2013-01-12 01:29:10 +01:00
parent c106347c59
commit 3b31774dd3
2 changed files with 2 additions and 2 deletions

View File

@ -852,7 +852,7 @@ const PanelCorner = new Lang.Class({
// The corner doesn't support theme transitions, so override
// the .panel-button default
button.style = 'transition-duration: 0';
button.style = 'transition-duration: 0ms';
}
},