Bug 661889 - Wrap notification buttons onto a second row instead of cropping the overflow [r=vingtetun]

This commit is contained in:
Mark Finkle 2011-06-08 01:19:47 -04:00
parent 94a29910cd
commit d6f78c82fa
3 changed files with 14 additions and 1 deletions

View File

@ -752,3 +752,9 @@ dialog {
padding: @padding_xlarge@ 0px;
}
}
/* because the buttons can wrap, we need to use the margin to create inter-button
spacing and a bottom margin for the notification */
notification > button {
margin-bottom: @margin_normal@;
}

View File

@ -28,5 +28,6 @@ notification .outset {
}
notification .buttons {
padding: @padding_normal@;
display: block; /* allow the buttons to wrap */
padding: @padding_normal@ @padding_normal@ 0 @padding_normal@;
}

View File

@ -766,3 +766,9 @@ dialog {
padding: @padding_xlarge@ 0px;
}
}
/* because the buttons can wrap, we need to use the margin to create inter-button
spacing and a bottom margin for the notification */
notification > button {
margin-bottom: @margin_normal@;
}