Issue #1937824 follow-up by echoz, mariacha1: Simpler fix for Improve button-link spacing on confirm form.
parent
58e8125104
commit
8253ee964d
|
@ -157,12 +157,14 @@ ol.task-list li.active {
|
||||||
#user-login-form .openid-links .user-link {
|
#user-login-form .openid-links .user-link {
|
||||||
margin-right: 1.5em;
|
margin-right: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Improve form element usability
|
* Improve spacing of cancel link.
|
||||||
*/
|
*/
|
||||||
.form-actions #edit-cancel {
|
#edit-cancel {
|
||||||
margin: 0 10px 0 0;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Views styling
|
* Views styling
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -749,6 +749,13 @@ select.form-select:focus {
|
||||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25);
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Improve spacing of cancel link.
|
||||||
|
*/
|
||||||
|
#edit-cancel {
|
||||||
|
margin-left: 10px; /* LTR */
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Improve form element usability on narrow devices.
|
* Improve form element usability on narrow devices.
|
||||||
*/
|
*/
|
||||||
|
@ -788,11 +795,6 @@ select.form-select:focus {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
}
|
}
|
||||||
.form-actions a#edit-cancel {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 10px 0;
|
|
||||||
margin: 10px 0;
|
|
||||||
}
|
|
||||||
.form-actions input,
|
.form-actions input,
|
||||||
.form-wrapper input[type="submit"] {
|
.form-wrapper input[type="submit"] {
|
||||||
float: none;
|
float: none;
|
||||||
|
@ -825,13 +827,10 @@ select.form-select:focus {
|
||||||
float: none;
|
float: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
#edit-cancel {
|
||||||
|
display: block;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Improve form element usability on normal and wide screens
|
|
||||||
*/
|
|
||||||
.form-actions #edit-cancel {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Exceptions */
|
/* Exceptions */
|
||||||
|
|
Loading…
Reference in New Issue