Built files from Bizgaze WebServer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.chat.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. 
  2. .chatapp {
  3. position: relative;
  4. height: 100%;
  5. width: 100%;
  6. background-color: #fff;
  7. }
  8. .chatapp .header {
  9. border-bottom: solid 1px #eee !important;
  10. background-color: #f6f6f6;
  11. position: relative;
  12. }
  13. .chatapp .chat-header {
  14. height: 55px;
  15. flex-shrink: 0;
  16. padding: 0px 10px;
  17. }
  18. .chatapp .nav-tabs .nav-item {
  19. position: relative;
  20. }
  21. .chatapp .chat-header-nav-tabs .nav-item .nav-link {
  22. padding: 5px 5px 2px 5px;
  23. font-weight: 500;
  24. font-size: 12px;
  25. height: 100%;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-between;
  29. row-gap: 3px;
  30. }
  31. .chatapp .dropdown-menu .dropdown-icon {
  32. color: #00B0FF;
  33. }
  34. .chatapp .div-chat-search {
  35. display: flex;
  36. justify-content: space-between;
  37. align-items: center;
  38. flex-shrink: 0;
  39. height: 50px;
  40. }
  41. .chatapp .chatapp-search-div {
  42. position: relative;
  43. }
  44. .chatapp .custom-chat-input {
  45. display: block;
  46. overflow: hidden;
  47. margin: 0;
  48. padding: 8px 10px;
  49. border-radius: 10px;
  50. border: 1px solid #DADDE1;
  51. outline: 0;
  52. width: 100%;
  53. resize: none;
  54. }
  55. .chatapp .search-input {
  56. padding-left: 25px;
  57. padding-right: 20px;
  58. }
  59. .chatapp .chatapp-search-div .search-icon, .chatapp .chatapp-search-div .search-close {
  60. position: absolute;
  61. top: 50%;
  62. transform: translateY(-50%);
  63. }
  64. .chatapp .chatapp-search-div .search-icon {
  65. left: 5px;
  66. }
  67. .chatapp .chatapp-search-div .search-close {
  68. right: 5px;
  69. cursor: pointer;
  70. color: red;
  71. }
  72. .chatapp .userlist .online-status-icon {
  73. width: 12px;
  74. height: 12px;
  75. position: absolute;
  76. bottom: 0px;
  77. right: 0px;
  78. display: none;
  79. }
  80. .chatapp .userlist .online-status-icon.active {
  81. display: block;
  82. }
  83. .chatapp .last-chat-msg, .chatapp .user-about {
  84. font-size: 12px;
  85. color: #5b676d;
  86. overflow: hidden;
  87. text-overflow: ellipsis;
  88. white-space: nowrap;
  89. }
  90. .chatapp .last-chat-time, .chatapp .mute-status-icon {
  91. color: #5b676d;
  92. }
  93. .chatapp .list-chat-contacts .list-group-item:first-child {
  94. border: none;
  95. }
  96. .chatapp .chatapp-body .list-group-item:hover {
  97. background-color: #F6F5F5;
  98. }
  99. .chatapp .chat-footer {
  100. padding: 8px 10px;
  101. background-color: #f6f6f6;
  102. position: relative;
  103. width: 100%;
  104. min-height: 55px;
  105. display: flex;
  106. flex-direction: column;
  107. row-gap: 8px;
  108. flex: none;
  109. z-index: 9;
  110. }
  111. .chatapp .chat-footer .quote-msg-wrap:not(:empty) {
  112. padding: 3px 10px;
  113. border-radius: 10px;
  114. }
  115. .chat-footer .div_selected_files {
  116. display: none;
  117. }
  118. .chat-footer .div_selected_files:not(:empty) {
  119. display: flex;
  120. margin-top: 5px;
  121. }
  122. .chatapp .txt_SearchChat:focus, .chatapp .txt_chatGroupName:focus {
  123. outline: none;
  124. box-shadow: none;
  125. }
  126. .chatapp .chat-group-top-header {
  127. padding: 5px 0px;
  128. }
  129. .chat-call-options .custom-checkbox .custom-control-label::before {
  130. border-radius: .5rem;
  131. background-color: transparent;
  132. border: 2px solid #9f9f9ffc;
  133. }
  134. .chatapp .chat-group-footer {
  135. text-align: center;
  136. background-color: #F3F6F9;
  137. width: 100%;
  138. padding: 10px 10px;
  139. z-index: 9;
  140. }
  141. /* Chat Message Box Styles*/
  142. .chatapp .messageslist .message-div {
  143. max-width: 85%;
  144. font-size: 12px;
  145. margin: 0px 10px;
  146. word-break: break-all;
  147. }
  148. .chatapp .messageslist .messagemedia-body {
  149. margin-bottom: 15px;
  150. }
  151. .chatapp .messageslist .recived-messages {
  152. display: flex;
  153. align-items: center;
  154. }
  155. .chatapp .messageslist .star-msg-icon {
  156. position: absolute;
  157. right: 1px;
  158. bottom: -10px;
  159. }
  160. .chatapp .star-msg-body .message-wrapper {
  161. margin-bottom: 8px;
  162. }
  163. .chatapp .message-wrapper {
  164. display: flex;
  165. align-items: center;
  166. flex-wrap: wrap;
  167. min-width: 0;
  168. position: relative;
  169. }
  170. .chatapp .messageslist .recived-messages .message-wrapper {
  171. background-color: #f6f5f5;
  172. padding: 5px 10px;
  173. border-radius: 10px;
  174. color: #000;
  175. box-shadow: 0 4px 5px rgb(0 0 0 / 10%);
  176. }
  177. .chatapp .messageslist .recived-messages .single-message {
  178. display: flex;
  179. align-items: center;
  180. }
  181. .chatapp .messageslist .sent-messages .single-message {
  182. display: flex;
  183. flex-direction: row-reverse;
  184. align-items: center
  185. }
  186. .chatapp .messageslist .sent-messages {
  187. display: flex;
  188. flex-direction: row-reverse;
  189. align-items: center;
  190. }
  191. .chatapp .messageslist .sent-messages .message-wrapper {
  192. background-color: #DEF7F9;
  193. color: #2C343E;
  194. padding: 5px 10px;
  195. border-radius: 10px;
  196. box-shadow: 0 4px 5px rgb(0 0 0 / 10%);
  197. }
  198. .chatapp .messageslist .message-span {
  199. min-width: 0;
  200. color: #1F2327;
  201. }
  202. .chatapp .messageslist .message-div .time {
  203. color: #000;
  204. margin-top: 5px;
  205. font-size: 10px;
  206. }
  207. .chatapp .messageslist .recived-messages .time {
  208. text-align: left;
  209. margin-left: 10px;
  210. }
  211. .chatapp .messageslist .sent-messages .time {
  212. text-align: right;
  213. margin-right: 10px;
  214. }
  215. .chatapp .messageslist .date {
  216. position: relative;
  217. font-size: 12px;
  218. z-index: 1;
  219. overflow: hidden;
  220. text-align: center;
  221. color: #000000;
  222. margin-bottom: 10px;
  223. }
  224. .chatapp .messageslist .date:before, .chatapp .messageslist .date:after {
  225. position: absolute;
  226. top: 51%;
  227. overflow: hidden;
  228. height: 2px;
  229. content: '\a0';
  230. background-color: #EEEEEE;
  231. }
  232. .chatapp.chatapp .messageslist .date:before {
  233. margin-left: -39%;
  234. text-align: right;
  235. width: 35%;
  236. }
  237. .chatapp .messageslist .date:after {
  238. margin-left: 3%;
  239. width: 35%;
  240. }
  241. .chatapp .messageslist .dropdown-menu .dropdown-item {
  242. font-size: 13px;
  243. padding-left: 5px;
  244. }
  245. .chat-group-top-header .txt_SearchChat, .chatapp .chat-group-top-header .input-group-text {
  246. background-color: #F3F6F9;
  247. }
  248. .chatapp .messageslist .admindetails {
  249. display: block;
  250. text-align: center;
  251. }
  252. .chatapp .admindetails .admin-msg {
  253. margin-bottom: 15px;
  254. color: #5b676d;
  255. font-weight: 500;
  256. font-size: 11px;
  257. }
  258. .chatapp .message-div .single-message {
  259. color: #444447;
  260. }
  261. .chatapp .message-wrapper .msg-status {
  262. color: #00B0FF;
  263. }
  264. .chatapp .message-wrapper .msg-status, .chatapp .message-wrapper .msg-status-delivery {
  265. margin-left: 5px;
  266. align-self: flex-end;
  267. }
  268. .chatapp .messagemedia-body .msg-status {
  269. margin-left: auto;
  270. }
  271. .chatapp .message-wrapper .delete-msg {
  272. color: #f83f37;
  273. }
  274. .chatapp .message-wrapper .delete-msg .del-icon:hover {
  275. color: #FF0000;
  276. background-color: #FFEBEB;
  277. border-color: #FFEBEB;
  278. }
  279. .chatapp .message-wrapper .quotemessage .normalmessage {
  280. background-color: #fff;
  281. padding: 5px 10px;
  282. border-radius: 10px;
  283. color: #1F2327;
  284. margin-top: 5px;
  285. }
  286. .chatapp .message-wrapper .message-download {
  287. margin-left: 10px;
  288. border-left: 1px solid #29E1B3;
  289. }
  290. .chatapp .message-wrapper .thumb_file {
  291. width: 40px;
  292. height: 40px;
  293. }
  294. .chatapp .message-wrapper .thumb_file.audio-thumb-img {
  295. width: 100%;
  296. height: 30px;
  297. }
  298. /*Profile Styles*/
  299. .chatapp .profiledetails .btn_AddChatParticipants i {
  300. font-size: 17px;
  301. color: #1F2327;
  302. margin-left: 5px;
  303. }
  304. .chatapp .profile-media-tabs {
  305. display: flex;
  306. justify-content: space-between;
  307. border: 0;
  308. }
  309. .chatapp .profile-media-tabs .nav-item .nav-link {
  310. position: relative;
  311. height: 100%;
  312. font-weight: 500;
  313. font-size: 15px;
  314. }
  315. .chatapp .profile-media-tabs .nav-link .count-span {
  316. position: absolute;
  317. top: 0px;
  318. right: -10px;
  319. font-size: 12px;
  320. }
  321. .chatapp .div-Chat-Participants .dropdown-menu .dropdown-item {
  322. font-size: 13px;
  323. padding-left: 5px;
  324. }
  325. .chatapp .profiledetails .list-group-item:first-child {
  326. border-top: 0;
  327. }
  328. .chatapp .div_selected_files .thumb-span {
  329. display: inline-block;
  330. height: 40px;
  331. width: 40px;
  332. position: relative;
  333. border-radius: 10px;
  334. }
  335. .chatapp .div_selected_files .remove-btn {
  336. width: 15px;
  337. height: 15px;
  338. position: absolute;
  339. top: -8px;
  340. right: -7px;
  341. border-radius: 50%;
  342. }
  343. .chatapp .list-chat-contacts .list-group-item.border-0 {
  344. border-bottom: 1px solid rgba(0,0,0,.125);
  345. }
  346. .chatapp span.badge.badge-success.unread_messages.rounded-circle {
  347. font-size: 8px;
  348. padding: 5px;
  349. align-items: center;
  350. text-align: center;
  351. line-height: 0.9;
  352. }
  353. .chatapp .chatapp-search-div .chatAppSearch:focus {
  354. color: #495057;
  355. background-color: #fff;
  356. border-color: #80bdff;
  357. outline: 0;
  358. box-shadow: none !important;
  359. }
  360. .chatapp .simplebar-track.simplebar-horizontal {
  361. visibility: hidden;
  362. display: none !important;
  363. }
  364. .chatapp #search_chatmsg:active {
  365. background-color: #F4F5F6 !important;
  366. }
  367. .chatapp .media-img-wrap .avatar-img {
  368. border-radius: 50%;
  369. }
  370. .chatapp .media-img-wrap {
  371. height: 40px;
  372. width: 40px;
  373. }
  374. .chatapp .searchmsgcount {
  375. position: absolute;
  376. left: 0;
  377. right: 0;
  378. top: 50px;
  379. z-index: 1;
  380. background-color: #fff;
  381. padding: 5px 10px;
  382. height: 35px;
  383. box-shadow: 0 4px 5px rgb(0 0 0 / 10%);
  384. border-radius: 8px;
  385. }
  386. .chatapp .msg-search-wrap .search-left-icon {
  387. position: absolute;
  388. left: 5px;
  389. top: 50%;
  390. transform: translateY(-50%);
  391. }
  392. .chatapp .chat-scrollbar {
  393. padding-bottom: 10px;
  394. }
  395. .chatapp .dot_wave {
  396. display: flex;
  397. }
  398. .chatapp .dot {
  399. height: 5px;
  400. width: 5px;
  401. margin-right: 2px;
  402. border-radius: 50%;
  403. background-color: black;
  404. animation: loading 1s infinite;
  405. }
  406. @keyframes loading {
  407. 0% {
  408. transform: translateX(0);
  409. }
  410. 25% {
  411. transform: translateX(15px);
  412. }
  413. 50% {
  414. transform: translateX(20px);
  415. }
  416. }
  417. .chatapp .dot:nth-child(1) {
  418. animation-delay: 0.1s;
  419. }
  420. .chatapp .dot:nth-child(2) {
  421. animation-delay: 0.2s;
  422. }
  423. .chatapp .dot:nth-child(3) {
  424. animation-delay: 0.3s;
  425. }
  426. .div-user-group-Name .edit_groupdetails:focus {
  427. box-shadow: 0 0 0 0.1rem rgb(0 123 255 / 25%);
  428. }
  429. .chatapp .webcam {
  430. position: absolute;
  431. top: 50%;
  432. left: 50%;
  433. transform: translate(-50%,-50%);
  434. height: 250px;
  435. width: 90%;
  436. }
  437. .chatapp .webcam .camera-controls {
  438. display: flex;
  439. justify-content: center;
  440. align-items: center;
  441. column-gap: 20px;
  442. font-size: 24px;
  443. position: absolute;
  444. left: 0;
  445. right: 0;
  446. bottom: 0;
  447. }
  448. .chatapp .webcam .camera-controls i {
  449. color: #fff;
  450. }
  451. .chatapp .chat-emojis, .chatapp .mentionable-contact-list {
  452. position: absolute;
  453. left: 50%;
  454. bottom: 100%;
  455. transform: translateX(-50%);
  456. width: 100%;
  457. }
  458. .chatapp .chat-emojis .emojis-tab-content, .chatapp .mentionable-contact-list {
  459. max-height: 40vh;
  460. }
  461. .chatapp .emoji-cat-tabs {
  462. padding: 0 5px;
  463. }
  464. .chatapp .emoji-cat-tabs .nav-item {
  465. margin-bottom: 0;
  466. }
  467. .chatapp .chat-emojis .emoji-cat {
  468. padding: 0 2px;
  469. border: 0;
  470. font-size: 18px;
  471. }
  472. .chatapp .emojis-tab-content {
  473. padding: 5px 10px;
  474. }
  475. .chatapp .emojis-content .emoji-icon {
  476. font-size: 16px;
  477. }
  478. .chatapp .edit_grpdetails {
  479. visibility: hidden;
  480. margin-right: -30px
  481. }
  482. .chatapp .profile-name-wrap:hover .edit_grpdetails {
  483. visibility: visible;
  484. }
  485. .chatapp .edit-group-input-wrap .save_changes {
  486. position: absolute;
  487. right: 5px;
  488. top: 50%;
  489. transform: translateY(-50%);
  490. }
  491. .chatapp .chat-popup {
  492. position: absolute;
  493. width: 95%;
  494. z-index: 1090;
  495. margin: auto;
  496. top: 50%;
  497. left: 50%;
  498. transform: translate(-50%,-50%);
  499. }
  500. .chatapp .chat-message-wrap .chatoptions-wrapper {
  501. visibility: hidden;
  502. }
  503. .chatapp .chat-message-wrap:hover .chatoptions-wrapper {
  504. visibility: visible;
  505. }
  506. .chatapp .avatar-group.avatar-group-sm.avatar-group-overlapped .avatar:last-of-type {
  507. margin-right: 0;
  508. }
  509. .chatapp .chat-flex-column {
  510. display: flex;
  511. flex-direction: column;
  512. height: 100%;
  513. }
  514. .chatapp .msg-compose-options {
  515. display: flex;
  516. }
  517. .chatapp .selected-msgs-count {
  518. min-width: 12px;
  519. }
  520. .chatapp .searched-msg {
  521. background-color: #fff;
  522. border-radius: 5px;
  523. padding: 2px 4px;
  524. }
  525. .chatapp .searched-msg.active {
  526. background-color: rgb(255 255 0);
  527. }
  528. .chatapp .panel-preview .modal-content {
  529. background-color: transparent;
  530. }
  531. .chatapp .panel-preview .modal-body {
  532. display: flex;
  533. justify-content: center;
  534. padding: 0 10px;
  535. max-height: 70vh;
  536. }
  537. .chatapp .preview-img {
  538. object-fit: contain;
  539. }
  540. .chatapp .more_msg {
  541. position: absolute;
  542. right: 15px;
  543. top: 4px;
  544. z-index: 9;
  545. }
  546. .chatapp .recived-messages .msg-check {
  547. margin-right: 10px;
  548. }
  549. .chatapp .sent-messages .msg-check {
  550. margin-left: 10px;
  551. }
  552. .chatapp .profile-details-wrap{
  553. display: flex;
  554. flex-direction: column;
  555. row-gap: 15px;
  556. }
  557. /* Fullscreen styles*/
  558. .chat-fullscreen {
  559. position: fixed;
  560. left: 0;
  561. right: 0;
  562. height: 100%;
  563. z-index: 99999;
  564. }
  565. .chat-fullscreen .chatapp {
  566. display: flex;
  567. }
  568. .chat-fullscreen .chatapp-body {
  569. width: 350px;
  570. }
  571. .chat-fullscreen .chat-convo-section {
  572. display: flex;
  573. flex-direction: column;
  574. flex-grow: 1;
  575. height: 100%;
  576. }
  577. .chat-fullscreen .chat-convo-body {
  578. flex-grow: 1;
  579. overflow-y: auto;
  580. }
  581. .chat-fullscreen .msg-info-body {
  582. overflow-y: auto;
  583. }
  584. .chat-fullscreen li.list-group-item {
  585. border-radius: 10px !important;
  586. border: none !important;
  587. }
  588. .chat-fullscreen li.list-group-item:hover {
  589. border-radius: 10px !important;
  590. }
  591. .chat-fullscreen .list-group {
  592. row-gap: 5px;
  593. }
  594. .chat-fullscreen .fullscreen-modal .list-group {
  595. row-gap: 8px;
  596. }
  597. .chat-fullscreen .webcam {
  598. max-width: 400px;
  599. z-index: 9;
  600. }
  601. .chat-fullscreen .fullscreen-modal .modal-content {
  602. height: 100%;
  603. max-height: 85vh;
  604. }
  605. .chat-fullscreen .fullscreen-modal .chat-header {
  606. border-top-left-radius: 8px;
  607. border-top-right-radius: 8px;
  608. }
  609. .chat-fullscreen .emojis-content {
  610. column-gap: 10px;
  611. }
  612. .chat-fullscreen .emoji-cat-tabs {
  613. padding: 0 15px;
  614. }
  615. .chat-fullscreen .emojis-content .emoji-icon {
  616. font-size: 24px;
  617. }
  618. .chat-fullscreen .chat-emojis .emoji-cat {
  619. font-size: 26px;
  620. }
  621. .chat-fullscreen .emojis-tab-content {
  622. padding: 10px 15px;
  623. }
  624. .chat-fullscreen .webcam {
  625. height: 300px;
  626. }
  627. .chat-fullscreen .chat-popup .modal-content {
  628. width: 95%;
  629. margin: auto;
  630. }
  631. .chat-fullscreen .chat-popup-backdrop {
  632. z-index: 1060;
  633. }