Redesign - gumb help na desni strani (zacasno)

This commit is contained in:
pero1203 2022-06-17 09:27:52 +02:00
parent e3c018d83f
commit 9e8b98b9b8
3 changed files with 1500 additions and 1445 deletions

View File

@ -2066,8 +2066,12 @@ class SurveyAdmin
} }
else{ else{
// Slovenski jezik // Slovenski jezik
if ($lang['id'] == 1) if ($lang['id'] == 1){
echo '<a href="https://www.1ka.si/a/72864?Q1=292032" target="_blank"><span class="faicon inline_comment"></span> '.$lang['srv_footer_reportabug'].'</a>'; echo '<a href="https://www.1ka.si/a/72864?Q1=292032" target="_blank"><span class="faicon inline_comment"></span> '.$lang['srv_footer_reportabug'].'</a>';
// Zacasen gumb na desni
echo '<a href="https://www.1ka.si/a/72864?Q1=292032"><div class="right_help_button">'.$lang['srv_footer_reportabug'].'</div></a>';
}
// Angleski jezik // Angleski jezik
else else
echo '<a href="https://www.1ka.si/a/72864?Q1=292032&language=2" target="_blank"><span class="faicon inline_comment"></span> '.$lang['srv_footer_reportabug'].'</a>'; echo '<a href="https://www.1ka.si/a/72864?Q1=292032&language=2" target="_blank"><span class="faicon inline_comment"></span> '.$lang['srv_footer_reportabug'].'</a>';

File diff suppressed because it is too large Load Diff

View File

@ -54,5 +54,34 @@ footer#srv_footer{
font-size: 14px !important; font-size: 14px !important;
margin-right: 3px; margin-right: 3px;
} }
.right_help_button{
position: fixed;
right: -121px;
top: calc(50%);
width: 250px;
padding: 4px 8px;
border: 1px $blue solid;
text-align: center;
font-weight: 600;
font-size: 15px;
background-color: $white;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: 0.3s;
&:hover{
color: $white;
background-color: $blue;
}
}
} }
} }