2
0

_embedded.scss 1.8 KB

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