modals.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // Modals
  3. // --------------------------------------------------
  4. .modal-content {
  5. border: none;
  6. .shadow-16dp();
  7. }
  8. .modal-message {
  9. padding-top: @line-height-computed * 1.5;
  10. padding-bottom: @line-height-computed * 1.5;
  11. .message-icon {
  12. padding-bottom: @line-height-computed;
  13. text-align: center;
  14. .material-icons {
  15. font-size: @font-size-large * 3;
  16. }
  17. }
  18. p {
  19. margin: 0px;
  20. margin-top: @line-height-computed / 3;
  21. text-align: center;
  22. &.lead {
  23. margin-top: 0px;
  24. font-size: @font-size-large;
  25. }
  26. }
  27. }
  28. // Sign-in modal
  29. .modal-sign-in {
  30. .modal-body {
  31. padding-top: @padding-base-vertical;
  32. padding-bottom: @padding-base-vertical;
  33. .form-group {
  34. margin: @padding-large-vertical 0px;
  35. }
  36. &.modal-ban-message {
  37. p {
  38. margin-top: @padding-large-vertical;
  39. margin-bottom: @padding-large-vertical;
  40. }
  41. }
  42. }
  43. .modal-footer {
  44. &>* {
  45. display: block;
  46. text-align: center;
  47. }
  48. }
  49. }
  50. // Register modal
  51. .modal-register-form {
  52. .modal-body {
  53. padding-bottom: 0px;
  54. .lead {
  55. margin-bottom: @line-height-computed;
  56. }
  57. }
  58. }