_embedded.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #conversejs.converse-embedded {
  2. @include box-sizing(border-box);
  3. *, *:before, *:after {
  4. @include box-sizing(border-box);
  5. }
  6. bottom: auto;
  7. height: 100%; // When embedded, it fills the containing element
  8. position: relative;
  9. right: auto;
  10. width: 100%;
  11. .converse-chatboxes {
  12. z-index: 1031; // One more than bootstrap navbar
  13. position: inherit;
  14. bottom: auto;
  15. height: 100%;
  16. width: 100%;
  17. }
  18. .chatbox {
  19. margin: 0;
  20. height: 100%;
  21. width: 100%;
  22. .flyout.box-flyout {
  23. bottom: 0;
  24. box-shadow: none;
  25. height: 100%;
  26. min-width: auto;
  27. width: 100%;
  28. }
  29. .chat-title {
  30. padding: 0.3em;
  31. font-size: 120%;
  32. }
  33. }
  34. .chatbox-btn {
  35. display: none;
  36. }
  37. .chatroom {
  38. margin: 0;
  39. width: 100%;
  40. .box-flyout {
  41. .occupants-heading {
  42. font-size: 120%;
  43. }
  44. .chat-content {
  45. .chat-message {
  46. margin: 0.5em;
  47. font-size: 120%;
  48. }
  49. }
  50. .sendXMPPMessage {
  51. .chat-textarea {
  52. padding: 0.5em;
  53. font-size: 110%;
  54. }
  55. }
  56. .chatroom-body {
  57. height: 100%;
  58. .chatroom-form-container {
  59. height: 100%;
  60. position: relative;
  61. }
  62. }
  63. .occupants {
  64. .occupant-list {
  65. padding-left: 0.3em;
  66. li.occupant {
  67. font-size: 120%;
  68. }
  69. }
  70. }
  71. }
  72. }
  73. }