Add optional token animation and vissual effects in visual styles configuration view - #1724
This commit is contained in:
parent
dca895c2a4
commit
74b4f2a5f3
|
@ -25,6 +25,24 @@ include_once($homedir . 'include/functions_ui.php');
|
|||
include_once($homedir . 'include/functions.php');
|
||||
include_once($homedir . 'include/functions_html.php');
|
||||
|
||||
|
||||
if($config['visual_animation']){
|
||||
echo
|
||||
'<style>
|
||||
@keyframes login_move {
|
||||
from {margin-left: 10%;margin-right: 10%;opacity:0.1}
|
||||
to {margin-left: 5%;margin-right: 5%;opacity:1}
|
||||
}
|
||||
|
||||
|
||||
div.container_login{
|
||||
animation-name: login_move;
|
||||
animation-duration: 3s;
|
||||
}
|
||||
</style>';
|
||||
}
|
||||
|
||||
|
||||
if (!isset($login_screen)) {
|
||||
$login_screen = 'login';
|
||||
}
|
||||
|
|
|
@ -282,6 +282,13 @@ $table_styles->data['autohidden'][0] = __('Autohidden menu');
|
|||
$table_styles->data['autohidden'][1] = html_print_checkbox('autohidden_menu',
|
||||
1, $config['autohidden_menu'], true);
|
||||
|
||||
$table_styles->data[$row][0] = __('Visual effects and animation');
|
||||
$table_styles->data[$row][1] = __('Yes') . ' ' .
|
||||
html_print_radio_button ('visual_animation', 1, '', $config["visual_animation"], true) .
|
||||
' ';
|
||||
$table_styles->data[$row][1] .= __('No') . ' ' .
|
||||
html_print_radio_button ('visual_animation', 0, '', $config["visual_animation"], true);
|
||||
|
||||
echo "<fieldset>";
|
||||
echo "<legend>" . __('Style configuration') . "</legend>";
|
||||
html_print_table ($table_styles);
|
||||
|
|
|
@ -555,6 +555,8 @@ function config_update_config () {
|
|||
$error_update[] = __('Default icon in GIS');
|
||||
if (!config_update_value ('autohidden_menu', get_parameter('autohidden_menu')))
|
||||
$error_update[] = __('Autohidden menu');
|
||||
if (!config_update_value ('visual_animation', get_parameter('visual_animation')))
|
||||
$error_update[] = __('visual_animation');
|
||||
if (!config_update_value ('fixed_graph', get_parameter('fixed_graph')))
|
||||
$error_update[] = __('Fixed graph');
|
||||
if (!config_update_value ('fixed_header', get_parameter('fixed_header')))
|
||||
|
@ -1819,6 +1821,10 @@ function config_process_config () {
|
|||
config_update_value ('autohidden_menu', 0);
|
||||
}
|
||||
|
||||
if (!isset($config['visual_animation'])) {
|
||||
config_update_value ('visual_animation', 1);
|
||||
}
|
||||
|
||||
if (!isset($config['networkmap_max_width'])) {
|
||||
config_update_value ('networkmap_max_width', 900);
|
||||
}
|
||||
|
|
|
@ -3928,16 +3928,7 @@ div.login_logo_icon img{
|
|||
width: 150px;
|
||||
}
|
||||
|
||||
@keyframes login_move {
|
||||
from {margin-left: 10%;margin-right: 10%;opacity:0.1}
|
||||
to {margin-left: 5%;margin-right: 5%;opacity:1}
|
||||
}
|
||||
|
||||
|
||||
div.container_login{
|
||||
animation-name: login_move;
|
||||
animation-duration: 3s;
|
||||
}
|
||||
div.login_double_auth_code,
|
||||
div.login_nick,
|
||||
div.login_pass {
|
||||
|
|
Loading…
Reference in New Issue