_embedded.scss 1.8 KB

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