Testing with links

This commit is contained in:
jose.gonzalez@pandorafms.com 2022-10-25 09:08:34 +02:00
parent 00de0faac3
commit 15f2a6ae88
2 changed files with 31 additions and 8 deletions

View File

@ -160,7 +160,18 @@ $table_styles->data[$row][1] = html_print_select(
'', '',
true true
); );
$table_styles->data[$row][1] .= ' '.html_print_button(__('View'), 'status_set_preview', false, '', 'class="sub camera logo_preview"', true); $table_styles->data[$row][1] .= html_print_button(
__('View'),
'status_set_preview',
false,
'',
[
'icon' => 'camera',
'mode' => 'link',
'class' => 'logo_preview',
],
true
);
$row++; $row++;
// Divs to show icon status Colours (Default). // Divs to show icon status Colours (Default).
@ -1579,9 +1590,19 @@ echo '<legend>'.__('Other configuration').' '.ui_print_help_icon('other_conf_tab
html_print_table($table_other); html_print_table($table_other);
echo '</fieldset>'; echo '</fieldset>';
echo '<div class="action-buttons" style="width: '.$table_other->width.'">'; html_print_div(
html_print_submit_button(__('Update'), 'update_button', false, 'class="sub upd"'); [
echo '</div>'; 'class' => 'action-buttons w100p',
'content' => html_print_submit_button(
__('Update'),
'update_button',
false,
[ 'icon' => 'next' ],
true
),
]
);
echo '</form>'; echo '</form>';

View File

@ -9071,7 +9071,6 @@ button.submitButton.mini {
button.buttonButton.link, button.buttonButton.link,
button.submitButton.link { button.submitButton.link {
height: 32px; height: 32px;
text-decoration: underline;
box-shadow: none; box-shadow: none;
background: rgba(0, 0, 0, 0) !important; background: rgba(0, 0, 0, 0) !important;
border-color: rgba(0, 0, 0, 0) !important; border-color: rgba(0, 0, 0, 0) !important;
@ -9091,11 +9090,14 @@ button.submitButton.link > div:hover {
} }
button.buttonButton.link:hover, button.buttonButton.link:hover,
button.submitButton.link:hover, button.submitButton.link:hover {
color: #1d7873;
text-decoration: underline;
font-family: "Pandora-Bold";
}
button.buttonButton.link > div:hover, button.buttonButton.link > div:hover,
button.submitButton.link > div:hover { button.submitButton.link > div:hover {
color: #fff; background-color: #1d7873;
background-color: #96a2bf;
} }
button.buttonButton:not(.secondary):not(.link), button.buttonButton:not(.secondary):not(.link),