Fix toggle button not showing background image
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
This commit is contained in:
parent
261c39c815
commit
4a8bd1cf5c
@ -2594,11 +2594,9 @@ class Util
|
||||
'pma_theme_image' => $GLOBALS['pmaThemeImage'],
|
||||
'text_dir' => $GLOBALS['text_dir'],
|
||||
'link_on' => $link_on,
|
||||
'toggle_on' => str_replace(' ', ' ', htmlspecialchars(
|
||||
$options[1]['label'])),
|
||||
'toggle_off' => str_replace(' ', ' ', htmlspecialchars(
|
||||
$options[0]['label'])),
|
||||
'link_off' => $link_off,
|
||||
'toggle_on' => $options[1]['label'],
|
||||
'toggle_off' => $options[0]['label'],
|
||||
'callback' => $callback,
|
||||
'state' => $state
|
||||
]);
|
||||
|
||||
@ -2012,9 +2012,10 @@ fieldset .disabled-field td {
|
||||
.toggleButton .container {
|
||||
position: absolute;
|
||||
}
|
||||
.toggleButton .container td {
|
||||
.toggleButton .container td,
|
||||
.toggleButton .container tr {
|
||||
background-image: none;
|
||||
background: none;
|
||||
background: none !important;
|
||||
}
|
||||
.toggleButton .toggleOn {
|
||||
color: #fff;
|
||||
|
||||
@ -2529,9 +2529,10 @@ fieldset .disabled-field td {
|
||||
.toggleButton .container {
|
||||
position: absolute;
|
||||
}
|
||||
.toggleButton .container td {
|
||||
.toggleButton .container td,
|
||||
.toggleButton .container tr {
|
||||
background-image: none;
|
||||
background: none;
|
||||
background: none !important;
|
||||
}
|
||||
.toggleButton .toggleOn {
|
||||
color: #fff;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user