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';
}
},

View File

@ -98,7 +98,7 @@ stage {
background-color: #333;
border: 2px solid black;
border-radius: 8px;
transition-duration: 1000; /* One second */
transition-duration: 1s;
}
#transition-container:hover .transition-label {