diff --git a/pandora_console/images/info@svg.svg b/pandora_console/images/info@svg.svg index 143ba524be..c98a52dd6c 100644 --- a/pandora_console/images/info@svg.svg +++ b/pandora_console/images/info@svg.svg @@ -4,7 +4,7 @@ Dark / 14 / info@svg Created with Sketch. - + diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 5b5497be22..0d2018ede2 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2831,7 +2831,7 @@ function html_print_input_password( } } - return html_print_input_text_extended($name, $value, 'password-'.$name, $alt, $size, $maxlength, $disabled, '', $attr, $return, true, '', $autocomplete); + return '
'.html_print_input_text_extended($name, $value, 'password-'.$name, $alt, $size, $maxlength, $disabled, '', $attr, $return, true, '', $autocomplete).'
'; } diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 7bd5e96647..2da237ac05 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -299,6 +299,10 @@ input[type="image"] { background-color: transparent; } +.container-div-input-password input { + width: 100%; +} + table, img { border: 0px; @@ -11362,14 +11366,14 @@ form#satellite_conf_edit > fieldset.full-column { } .show-hide-pass { - position: relative; - right: 48px; - top: 14px; + position: absolute; + right: 12px; + top: 4px; border: 0; outline: none; margin: 0; - height: 40px; - width: 40px; + height: 30px; + width: 30px; cursor: pointer; display: inline-block; } diff --git a/pandora_console/include/styles/tables.css b/pandora_console/include/styles/tables.css index 362979b2c2..e97a937067 100644 --- a/pandora_console/include/styles/tables.css +++ b/pandora_console/include/styles/tables.css @@ -720,10 +720,6 @@ tr.datos2 > td.datos2 > div > div > label { line-height: 16px; } -tr.datos2 > td.datos2 > div > div { - margin-top: 10px; -} - .mgn_tp_0_imp { margin-top: 0px !important; } @@ -742,3 +738,23 @@ tr.datos2 > td.datos2 > div > div { #text-vrf_name { width: 100%; } + +table.filter-table-adv td div.inline-radio-button { + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: center; +} + +table.filter-table-adv td div.inline-radio-button input[type="radio"] { + width: 20px; + background-color: #f6f7fb; + border: 2px solid #c0ccdc; + border-radius: 6px; + height: 20px; + font-family: "lato"; + font-size: 12px; + color: #333333; + padding-left: 12px; + margin-right: 10px; +}