| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- /** =====================
- Chatting css start
- ========================== **/
- .chat-bg{
- background-image: url('../images/chat-bg.jpg');
- background-size: cover;
- background-blend-mode: overlay;
- background-color: rgba(255, 255, 255, 0.45);
- }
- #main-chat {
- .chat-single-box.active {
- .chat-header {
- background-color: $primary-color;
- a {
- color: #fff;
- }
- }
- }
- .chat-single-box {
- .chat-header {
- a {
- color: #fff;
- }
- }
- }
- .chat-box ul.boxs li.chat-single-box .chat-header.custom-collapsed {
- position: absolute;
- bottom: 0;
- width: 300px;
- }
- .minimized {
- background-color: #1e2730;
- }
- .user-groups {
- padding-left: 20px;
- padding-bottom: 20px;
- border-bottom: 1px solid #ddd;
- margin-bottom: 20px;
- .userlist-box {
- border-bottom: none;
- &:last-child {
- padding-bottom: 0;
- margin-bottom: 0;
- }
- }
- .media {
- padding-left: 0;
- }
- h6 {
- font-size: 15px;
- font-weight: 500;
- margin-bottom: 20px;
- }
- li {
- margin-bottom: 20px;
- &:last-child {
- margin-bottom: 0;
- }
- &.work {
- position: relative;
- padding-left: 20px;
- &:before {
- content: '';
- position: absolute;
- height: 10px;
- width: 10px;
- background-color: $success-color;
- border-radius: 50px;
- left: 0;
- top: 6px;
- }
- }
- &.frnds {
- @extend .work;
- &:before {
- background-color: $danger-color;
- }
- }
- }
- }
- }
-
- .user-box {
- height: 100%;
- }
-
- .close {
- opacity: 1;
- }
- .chat-search-box{
- padding: 1.25rem 1.25rem 1.25rem 2.75rem;
-
- }
- .write-msg {
- padding: 12px;
- bottom: 10px;
- border-top: 1px solid #ddd;
- #paper-btn {
- i {
- font-size: 18px;
- margin-right: 0;
- cursor: pointer;
- }
- }
- }
-
- .chat-box .secondary:active:hover {
- background-color: #fff;
- }
-
- #main-chat .chat-box ul.boxs li.minimized {
- height: 30px;
- width: 30px;
- bottom: 0;
- position: absolute;
- left: -50px;
- -webkit-border-radius: 5px 5px 0 0;
- -moz-border-radius: 5px 5px 0 0;
- border-radius: 5px 5px 0 0;
- cursor: pointer;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .count {
- color: #fff;
- text-align: center;
- margin: 5px;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown {
- list-style: none;
- display: none;
- position: absolute;
- background-color: #f5f5f5;
- -webkit-box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
- -moz-box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
- box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
- width: 150px;
- z-index: 100;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- padding: 5px 0;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li {
- padding: 2px 5px;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li div {
- display: inline-block;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .username {
- width: 85%;
- height: 22px;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .remove {
- width: 13%;
- padding: 2PX 4PX;
- float: right;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .remove:hover {
- background-color: #c0c0c0 !important;
- }
-
- #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li:hover {
- color: black;
- }
-
- #main-chat .chat-box ul.boxs li.hidden {
- display: none;
- }
-
- .chat-single-box {
- height: 440px;
- float: right;
- width: 300px;
- margin-right: 15px;
- direction: ltr;
- z-index: 999;
- bottom: 0;
- .chat-header {
- background-color: $default-color;
- color: #fff;
- .close{
- margin-top: 0;
- }
- }
- }
-
- .box-live-status {
- height: 10px;
- width: 10px;
- border-radius: 100%;
- border: 1px solid;
- }
-
- .chat-msg-img {
- height: 50px;
- width: 50px;
- }
-
- .msg-reply {
- padding: 5px;
- position: relative;
- right: 10px;
- border-radius: 2px;
- top: 6px;
- margin-bottom: 10px;
- }
-
- .header-users {
- right: 0;
- top: 103px;
- width: 300px;
- height: 100%;
- }
-
- .users {
- right: 0;
- top: 103px;
- width: 300px;
- height: 100%;
- }
-
- .p-chat-user {
- position: fixed;
- top: 56px;
- z-index: 99;
- border-left: 1px solid #ccc;
- }
-
- .users-main {
- height: 100%;
- width: 300px;
- position: fixed;
- border-radius: 0px;
- }
-
- .userlist-box {
- cursor: pointer;
- border-bottom: 1px solid #efefef;
- .media-left {
- padding-right: 10px;
- }
- }
-
- .users-main .media {
- display: flex;
- align-items: center;
- padding-top: 0;
- padding-bottom: 10px;
- margin-bottom: 10px;
- padding-left: 20px;
- padding-right: 20px;
- position: relative;
- }
-
- .user-box .media-object {
- height: 45px;
- width: 45px;
- display: inline-block;
- }
-
- .chat-menu-content,
- .chat-menu-reply {
- background: #f3f3f3;
- position: relative;
- overflow: visible;
- border-radius: 4px;
- }
-
- .chat-menu-content:before {
- position: absolute;
- top: 20px;
- left: -14px;
- width: 0;
- height: 0;
- content: '';
- border: 8px solid transparent;
- border-right-color: #f3f3f3;
- }
-
- .chat-menu-reply:before {
- position: absolute;
- top: 20px;
- right: -14px;
- width: 0;
- height: 0;
- content: '';
- border: 8px solid transparent;
- border-left-color: $primary-color;
- }
-
- .chat-reply-box {
- background-color: #fff;
- position: absolute;
- bottom: 50px;
- width: 100%;
- padding-top: 15px;
- padding-left: 20px;
- padding-right: 20px;
- padding-bottom: 0px;
- border-top: 1px solid #ccc;
- }
-
- .chat-inner-header {
- text-align: center;
- margin-bottom: 20px;
- border-bottom: 1px solid #ccc;
- padding: 20px;
- }
-
- .chat-send {
- position: absolute;
- bottom: 5px;
- right: 0;
- border: none;
- background-color: transparent;
- color: $primary-color;
- transform: rotate(45deg);
- }
-
- .showChat_inner .chat-messages {
- padding-bottom: 20px;
- padding-left: 15px;
- padding-right: 15px;
- }
-
- .chat-menu-content .chat-cont,
- .chat-menu-reply .chat-cont {
- padding: 10px;
- }
-
- .chat-menu-content .chat-time,
- .chat-menu-reply .chat-time {
- padding-left: 10px;
- padding-bottom: 10px;
- }
-
- .back_chatBox,.back_friendlist {
- margin: 0 auto;
- font-weight: 500;
- i {
- float: left;
- position: absolute;
- margin-top: 5px;
- left: 20px;
- cursor: pointer;
- }
- }
- .back_friendlist {
- i {
- top: 25px;
- }
- }
-
- .designation {
- cursor: pointer;
- }
-
- .extra-profile-list {
- display: none;
- }
-
- .chat-menu-reply .chat-cont,
- .chat-menu-reply .chat-time {
- color: #fff;
- }
-
- .chat-menu-reply {
- background: $primary-color;
- margin-right: 10px;
- }
-
- .users-main .media .chat-header {
- font-size: 14px;
- font-weight: 500;
- }
-
- .users-main .media-body div + div {
- font-size: 12px;
- }
-
- .chat-body {
- overflow-y: auto;
- height: 340px;
- }
-
- .users-main-fix {
- height: auto;
- position: fixed;
- bottom: 0px;
- top: 151px;
- }
-
- .chat-footer,
- .chat-link {
- border-color: $primary-color;
- }
-
- .chat-footer .input-group-addon {
- padding: 7px .75rem;
- }
-
- .form-control:focus ~ .chat-send {
- border-color: $primary-color;
- }
-
- .minimized-box {
- padding: 5px 10px;
- }
-
- .write-msg input {
- border-radius: 0;
- border-right: 0;
- }
-
- .write-msg .btn {
- box-shadow: none;
- border-left: 0;
- font-size: 14px;
- }
-
- .write-msg .btn-secondary:hover {
- background-color: #fff;
- border: 1px solid rgba(0, 0, 0, .15);
- border-left: 0;
- }
-
- .form-control:focus ~ .input-group-btn .btn-secondary {
- border-color: #66afe9;
- color: $primary-color;
- }
-
- .img-chat-profile {
- height: 45px;
- width: 45px;
- }
-
- .chat-minimize .chat-body,
- .chat-minimize .chat-footer {
- display: none;
- }
-
- .chat-box {
- margin-right: 290px;
- height: 440px;
- position: fixed;
- bottom: 0;
- right: 0;
- z-index: 99;
- }
-
- .user-box .media-object,
- .friend-box .media-object {
- height: 45px;
- width: 45px;
- display: inline-block;
- }
-
- .friend-box img {
- margin-right: 10px;
- margin-bottom: 10px;
- }
-
- .chat-header {
- color: #222222;
- }
-
- .live-status {
- height: 10px;
- width: 10px;
- position: absolute;
- top: 20px;
- right: 20px;
- border-radius: 100%;
- border: 1px solid;
- }
-
- // Inner chat css start
- .showChat {
- display: none;
- }
-
- .showChat_inner {
- position: fixed;
- top: 56px;
- background-color: white;
- right: 0;
- display: none;
- width: 300px;
- height: 100%;
- z-index: 99;
- border-left: 1px solid #ccc;
- .img-circle {
- border-radius: 0 !important
- }
- }
- /**====== Chatting css end ======**/
|