1 .jquery-confirmable-button {
2 /* Automatically flipped */
6 .jquery-confirmable-wrapper {
7 /* Line breaks within the interface text are unpleasant */
9 /* Hiding the original text when it slides to the left */
13 .jquery-confirmable-wrapper
,
14 .jquery-confirmable-element
,
15 .jquery-confirmable-interface {
16 /* We need inline-block to be able to size the elements and calculate their dimensions */
17 display: inline-block
;
18 /* inline-block elements in this context align to baseline by default */
19 vertical-align: bottom
;
22 .jquery-confirmable-element {
23 transition: margin
250ms cubic-bezier
( 0.2, 0.8, 0.2, 0.8 );
26 .jquery-confirmable-interface {
27 transition: width
250ms cubic-bezier
( 0.2, 0.8, 0.2, 0.8 );