Issue #846182 by reglogge, szantog, geerlingguy: Fixed Seven theme form buttons have no hover state.
parent
f2e4ea1f57
commit
b787545fb5
Binary file not shown.
After Width: | Height: | Size: 367 B |
|
@ -1104,7 +1104,7 @@ function field_ui_display_overview_form($form, &$form_state, $entity_type, $bund
|
|||
$table[$name]['settings_edit'] = $base_button + array(
|
||||
'#type' => 'image_button',
|
||||
'#name' => $name . '_formatter_settings_edit',
|
||||
'#src' => 'core/misc/configure.png',
|
||||
'#src' => 'core/misc/configure-dark.png',
|
||||
'#attributes' => array('class' => array('field-formatter-settings-edit'), 'alt' => t('Edit')),
|
||||
'#op' => 'edit',
|
||||
// Do not check errors for the 'Edit' button, but make sure we get
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 786 B After Width: | Height: | Size: 503 B |
|
@ -361,10 +361,22 @@
|
|||
background: url(images/buttons.png) 0 0 repeat-x;
|
||||
border-radius: 20px;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane button:hover,
|
||||
.ui-dialog .ui-dialog-buttonpane button:focus {
|
||||
background-position: 0 -40px;
|
||||
border: 1px solid #bebebe;
|
||||
border-left-color: #afafaf;
|
||||
border-right-color: #afafaf;
|
||||
border-bottom-color: #9b9b9b;
|
||||
color: #2e2e2e;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane button:active {
|
||||
background: #666;
|
||||
background-position: 0 -80px;
|
||||
border: 1px solid #333;
|
||||
border-left-color: #222;
|
||||
border-right-color: #222;
|
||||
border-bottom-color: #111;
|
||||
color: #fff;
|
||||
border-color: #555;
|
||||
text-shadow: #222 0px -1px 0px;
|
||||
}
|
||||
.overlay {
|
||||
|
|
|
@ -621,21 +621,26 @@ a.button:visited,
|
|||
a.button:hover,
|
||||
a.button:active {
|
||||
text-decoration: none;
|
||||
color: #5a5a5a;
|
||||
}
|
||||
.node-form input#edit-submit,
|
||||
.node-form input#edit-submit-1 {
|
||||
border: 1px solid #8eB7cd;
|
||||
border-left-color: #8eB7cd;
|
||||
border-right-color: #8eB7cd;
|
||||
border-bottom-color: #7691a2;
|
||||
background: url(images/buttons.png) 0 -40px repeat-x;
|
||||
color: #133B54;
|
||||
input.form-submit:hover,
|
||||
input.form-submit:focus,
|
||||
a.button:hover,
|
||||
a.button:focus {
|
||||
background-position: 0 -40px;
|
||||
border: 1px solid #bebebe;
|
||||
border-left-color: #afafaf;
|
||||
border-right-color: #afafaf;
|
||||
border-bottom-color: #9b9b9b;
|
||||
color: #2e2e2e;
|
||||
}
|
||||
input.form-submit:active {
|
||||
background: #666;
|
||||
input.form-submit:active,
|
||||
a.button:active {
|
||||
background-position: 0 -80px;
|
||||
border: 1px solid #333;
|
||||
border-left-color: #222;
|
||||
border-right-color: #222;
|
||||
border-bottom-color: #111;
|
||||
color: #fff;
|
||||
border-color: #555;
|
||||
text-shadow: #222 0 -1px 0;
|
||||
}
|
||||
input.form-button-disabled,
|
||||
|
|
Loading…
Reference in New Issue