. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 52.223.31.75 / Your IP : 172.31.6.220 [ Web Server : Apache/2.4.66 () OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux ip-172-31-14-81.eu-central-1.compute.internal 4.14.281-212.502.amzn2.x86_64 #1 SMP Thu May 26 09:52:17 UTC 2022 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE Domains : 4 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/ripara.co/admin/less/inc/ |
Upload File : |
#chat {
position: fixed;
background: #fff;
padding: 20px 0;
width: 260px;
box-shadow: 0 0 10px rgba(51, 51, 51, 0.38);
height: ~"calc(100% - 65px)";
right: -280px;
top: 65px;
.transition(all);
.transition-duration(300ms);
z-index: 10;
.opacity(0);
&.toggled {
right: 0;
.opacity(1);
}
.chat-search {
padding: 20px 20px 15px 20px;
.form-control {
.img-retina('../img/icons/search-2.png', '../img/icons/search-2@2x.png', 24px, 24px);
background-repeat: no-repeat;
background-position: left center;
padding-left: 30px;
.transition(all);
.transition-duration(300ms);
&:focus {
background-position: right center;
padding: 0 30px 0 0;
}
}
}
}
/*
* Chat Status Icons
*/
[class*="chat-status"] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
top: -3px;
right: 12px;
border: 2px solid #FFF;
}
/* Simple Mixin */
.chat-status(@color) {
box-shadow: 0 0 0 1px @color;
background: @color;
}
.chat-status-online {
.chat-status(#1EC01E);
}
.chat-status-offline {
.chat-status(#E73F3F);
}
.chat-status-busy {
.chat-status(#FFA500);
}
/*
* For Stupid IE9
*/
.ie9 {
#chat {
right: 0;
&:not(.toggled) {
display: none;
}
}
}