_controlbox.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #conversejs:not(.fullscreen) {
  2. #controlbox {
  3. order: -1;
  4. min-width: $controlbox-width !important;
  5. width: $controlbox-width;
  6. .box-flyout {
  7. min-width: $controlbox-width !important;
  8. width: $controlbox-width;
  9. }
  10. &:not(.logged-out) {
  11. .controlbox-head {
  12. height: 15px;
  13. }
  14. }
  15. .controlbox-head {
  16. display: flex;
  17. flex-direction: row-reverse;
  18. flex-wrap: nowrap;
  19. justify-content: space-between;
  20. .brand-heading {
  21. @include make-col-ready();
  22. @include make-col(8);
  23. color: $text-color;
  24. font-size: 2em;
  25. }
  26. .chatbox-btn {
  27. color: $controlbox-head-color;
  28. margin: 0;
  29. }
  30. }
  31. #converse-register, #converse-login {
  32. @include make-col(12);
  33. padding-bottom: 0;
  34. }
  35. #converse-register {
  36. .button-cancel {
  37. font-size: 90%;
  38. }
  39. }
  40. .controlbox-panes {
  41. border-radius: $chatbox-border-radius;
  42. }
  43. }
  44. }