Dashboard sipadu mbip
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. /** =====================
  2. Chatting css start
  3. ========================== **/
  4. .chat-bg{
  5. background-image: url('../images/chat-bg.jpg');
  6. background-size: cover;
  7. background-blend-mode: overlay;
  8. background-color: rgba(255, 255, 255, 0.45);
  9. }
  10. #main-chat {
  11. .chat-single-box.active {
  12. .chat-header {
  13. background-color: $primary-color;
  14. a {
  15. color: #fff;
  16. }
  17. }
  18. }
  19. .chat-single-box {
  20. .chat-header {
  21. a {
  22. color: #fff;
  23. }
  24. }
  25. }
  26. .chat-box ul.boxs li.chat-single-box .chat-header.custom-collapsed {
  27. position: absolute;
  28. bottom: 0;
  29. width: 300px;
  30. }
  31. .minimized {
  32. background-color: #1e2730;
  33. }
  34. .user-groups {
  35. padding-left: 20px;
  36. padding-bottom: 20px;
  37. border-bottom: 1px solid #ddd;
  38. margin-bottom: 20px;
  39. .userlist-box {
  40. border-bottom: none;
  41. &:last-child {
  42. padding-bottom: 0;
  43. margin-bottom: 0;
  44. }
  45. }
  46. .media {
  47. padding-left: 0;
  48. }
  49. h6 {
  50. font-size: 15px;
  51. font-weight: 500;
  52. margin-bottom: 20px;
  53. }
  54. li {
  55. margin-bottom: 20px;
  56. &:last-child {
  57. margin-bottom: 0;
  58. }
  59. &.work {
  60. position: relative;
  61. padding-left: 20px;
  62. &:before {
  63. content: '';
  64. position: absolute;
  65. height: 10px;
  66. width: 10px;
  67. background-color: $success-color;
  68. border-radius: 50px;
  69. left: 0;
  70. top: 6px;
  71. }
  72. }
  73. &.frnds {
  74. @extend .work;
  75. &:before {
  76. background-color: $danger-color;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. .user-box {
  83. height: 100%;
  84. }
  85. .close {
  86. opacity: 1;
  87. }
  88. .chat-search-box{
  89. padding: 1.25rem 1.25rem 1.25rem 2.75rem;
  90. }
  91. .write-msg {
  92. padding: 12px;
  93. bottom: 10px;
  94. border-top: 1px solid #ddd;
  95. #paper-btn {
  96. i {
  97. font-size: 18px;
  98. margin-right: 0;
  99. cursor: pointer;
  100. }
  101. }
  102. }
  103. .chat-box .secondary:active:hover {
  104. background-color: #fff;
  105. }
  106. #main-chat .chat-box ul.boxs li.minimized {
  107. height: 30px;
  108. width: 30px;
  109. bottom: 0;
  110. position: absolute;
  111. left: -50px;
  112. -webkit-border-radius: 5px 5px 0 0;
  113. -moz-border-radius: 5px 5px 0 0;
  114. border-radius: 5px 5px 0 0;
  115. cursor: pointer;
  116. }
  117. #main-chat .chat-box ul.boxs li.minimized .count {
  118. color: #fff;
  119. text-align: center;
  120. margin: 5px;
  121. }
  122. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown {
  123. list-style: none;
  124. display: none;
  125. position: absolute;
  126. background-color: #f5f5f5;
  127. -webkit-box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
  128. -moz-box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
  129. box-shadow: 0 1px 8px 0 rgba(5, 5, 5, 0.5);
  130. width: 150px;
  131. z-index: 100;
  132. -webkit-border-radius: 5px;
  133. -moz-border-radius: 5px;
  134. border-radius: 5px;
  135. padding: 5px 0;
  136. }
  137. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li {
  138. padding: 2px 5px;
  139. }
  140. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li div {
  141. display: inline-block;
  142. }
  143. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .username {
  144. width: 85%;
  145. height: 22px;
  146. }
  147. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .remove {
  148. width: 13%;
  149. padding: 2PX 4PX;
  150. float: right;
  151. }
  152. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li .remove:hover {
  153. background-color: #c0c0c0 !important;
  154. }
  155. #main-chat .chat-box ul.boxs li.minimized .chat-dropdown li:hover {
  156. color: black;
  157. }
  158. #main-chat .chat-box ul.boxs li.hidden {
  159. display: none;
  160. }
  161. .chat-single-box {
  162. height: 440px;
  163. float: right;
  164. width: 300px;
  165. margin-right: 15px;
  166. direction: ltr;
  167. z-index: 999;
  168. bottom: 0;
  169. .chat-header {
  170. background-color: $default-color;
  171. color: #fff;
  172. .close{
  173. margin-top: 0;
  174. }
  175. }
  176. }
  177. .box-live-status {
  178. height: 10px;
  179. width: 10px;
  180. border-radius: 100%;
  181. border: 1px solid;
  182. }
  183. .chat-msg-img {
  184. height: 50px;
  185. width: 50px;
  186. }
  187. .msg-reply {
  188. padding: 5px;
  189. position: relative;
  190. right: 10px;
  191. border-radius: 2px;
  192. top: 6px;
  193. margin-bottom: 10px;
  194. }
  195. .header-users {
  196. right: 0;
  197. top: 103px;
  198. width: 300px;
  199. height: 100%;
  200. }
  201. .users {
  202. right: 0;
  203. top: 103px;
  204. width: 300px;
  205. height: 100%;
  206. }
  207. .p-chat-user {
  208. position: fixed;
  209. top: 56px;
  210. z-index: 99;
  211. border-left: 1px solid #ccc;
  212. }
  213. .users-main {
  214. height: 100%;
  215. width: 300px;
  216. position: fixed;
  217. border-radius: 0px;
  218. }
  219. .userlist-box {
  220. cursor: pointer;
  221. border-bottom: 1px solid #efefef;
  222. .media-left {
  223. padding-right: 10px;
  224. }
  225. }
  226. .users-main .media {
  227. display: flex;
  228. align-items: center;
  229. padding-top: 0;
  230. padding-bottom: 10px;
  231. margin-bottom: 10px;
  232. padding-left: 20px;
  233. padding-right: 20px;
  234. position: relative;
  235. }
  236. .user-box .media-object {
  237. height: 45px;
  238. width: 45px;
  239. display: inline-block;
  240. }
  241. .chat-menu-content,
  242. .chat-menu-reply {
  243. background: #f3f3f3;
  244. position: relative;
  245. overflow: visible;
  246. border-radius: 4px;
  247. }
  248. .chat-menu-content:before {
  249. position: absolute;
  250. top: 20px;
  251. left: -14px;
  252. width: 0;
  253. height: 0;
  254. content: '';
  255. border: 8px solid transparent;
  256. border-right-color: #f3f3f3;
  257. }
  258. .chat-menu-reply:before {
  259. position: absolute;
  260. top: 20px;
  261. right: -14px;
  262. width: 0;
  263. height: 0;
  264. content: '';
  265. border: 8px solid transparent;
  266. border-left-color: $primary-color;
  267. }
  268. .chat-reply-box {
  269. background-color: #fff;
  270. position: absolute;
  271. bottom: 50px;
  272. width: 100%;
  273. padding-top: 15px;
  274. padding-left: 20px;
  275. padding-right: 20px;
  276. padding-bottom: 0px;
  277. border-top: 1px solid #ccc;
  278. }
  279. .chat-inner-header {
  280. text-align: center;
  281. margin-bottom: 20px;
  282. border-bottom: 1px solid #ccc;
  283. padding: 20px;
  284. }
  285. .chat-send {
  286. position: absolute;
  287. bottom: 5px;
  288. right: 0;
  289. border: none;
  290. background-color: transparent;
  291. color: $primary-color;
  292. transform: rotate(45deg);
  293. }
  294. .showChat_inner .chat-messages {
  295. padding-bottom: 20px;
  296. padding-left: 15px;
  297. padding-right: 15px;
  298. }
  299. .chat-menu-content .chat-cont,
  300. .chat-menu-reply .chat-cont {
  301. padding: 10px;
  302. }
  303. .chat-menu-content .chat-time,
  304. .chat-menu-reply .chat-time {
  305. padding-left: 10px;
  306. padding-bottom: 10px;
  307. }
  308. .back_chatBox,.back_friendlist {
  309. margin: 0 auto;
  310. font-weight: 500;
  311. i {
  312. float: left;
  313. position: absolute;
  314. margin-top: 5px;
  315. left: 20px;
  316. cursor: pointer;
  317. }
  318. }
  319. .back_friendlist {
  320. i {
  321. top: 25px;
  322. }
  323. }
  324. .designation {
  325. cursor: pointer;
  326. }
  327. .extra-profile-list {
  328. display: none;
  329. }
  330. .chat-menu-reply .chat-cont,
  331. .chat-menu-reply .chat-time {
  332. color: #fff;
  333. }
  334. .chat-menu-reply {
  335. background: $primary-color;
  336. margin-right: 10px;
  337. }
  338. .users-main .media .chat-header {
  339. font-size: 14px;
  340. font-weight: 500;
  341. }
  342. .users-main .media-body div + div {
  343. font-size: 12px;
  344. }
  345. .chat-body {
  346. overflow-y: auto;
  347. height: 340px;
  348. }
  349. .users-main-fix {
  350. height: auto;
  351. position: fixed;
  352. bottom: 0px;
  353. top: 151px;
  354. }
  355. .chat-footer,
  356. .chat-link {
  357. border-color: $primary-color;
  358. }
  359. .chat-footer .input-group-addon {
  360. padding: 7px .75rem;
  361. }
  362. .form-control:focus ~ .chat-send {
  363. border-color: $primary-color;
  364. }
  365. .minimized-box {
  366. padding: 5px 10px;
  367. }
  368. .write-msg input {
  369. border-radius: 0;
  370. border-right: 0;
  371. }
  372. .write-msg .btn {
  373. box-shadow: none;
  374. border-left: 0;
  375. font-size: 14px;
  376. }
  377. .write-msg .btn-secondary:hover {
  378. background-color: #fff;
  379. border: 1px solid rgba(0, 0, 0, .15);
  380. border-left: 0;
  381. }
  382. .form-control:focus ~ .input-group-btn .btn-secondary {
  383. border-color: #66afe9;
  384. color: $primary-color;
  385. }
  386. .img-chat-profile {
  387. height: 45px;
  388. width: 45px;
  389. }
  390. .chat-minimize .chat-body,
  391. .chat-minimize .chat-footer {
  392. display: none;
  393. }
  394. .chat-box {
  395. margin-right: 290px;
  396. height: 440px;
  397. position: fixed;
  398. bottom: 0;
  399. right: 0;
  400. z-index: 99;
  401. }
  402. .user-box .media-object,
  403. .friend-box .media-object {
  404. height: 45px;
  405. width: 45px;
  406. display: inline-block;
  407. }
  408. .friend-box img {
  409. margin-right: 10px;
  410. margin-bottom: 10px;
  411. }
  412. .chat-header {
  413. color: #222222;
  414. }
  415. .live-status {
  416. height: 10px;
  417. width: 10px;
  418. position: absolute;
  419. top: 20px;
  420. right: 20px;
  421. border-radius: 100%;
  422. border: 1px solid;
  423. }
  424. // Inner chat css start
  425. .showChat {
  426. display: none;
  427. }
  428. .showChat_inner {
  429. position: fixed;
  430. top: 56px;
  431. background-color: white;
  432. right: 0;
  433. display: none;
  434. width: 300px;
  435. height: 100%;
  436. z-index: 99;
  437. border-left: 1px solid #ccc;
  438. .img-circle {
  439. border-radius: 0 !important
  440. }
  441. }
  442. /**====== Chatting css end ======**/