user-options.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // User Options Forms
  3. // --------------------------------------------------
  4. // Edit signature form
  5. .edit-signature-form {
  6. .panel-body {
  7. .misago-editor {
  8. margin-bottom: @line-height-computed;
  9. }
  10. .well {
  11. margin-top: @line-height-computed;
  12. margin-bottom: 0px;
  13. .well-label {
  14. font-size: @font-size-small;
  15. }
  16. }
  17. }
  18. }
  19. // Change username
  20. .last-username-changes {
  21. .side-avatar {
  22. float: left;
  23. img, .img-preview {
  24. border-radius: @avatar-radius;
  25. }
  26. }
  27. .first-row {
  28. margin-left: 42px + @padding-large-horizontal;
  29. img, .avatar-preview {
  30. border-radius: @avatar-radius-small;
  31. }
  32. }
  33. .second-row {
  34. margin-top: @line-height-computed / 4;
  35. margin-left: 42px + @padding-large-horizontal;
  36. font-size: @font-size-small;
  37. }
  38. // Larger displays
  39. @media (min-width: @screen-md-min) {
  40. // don't offset rows
  41. .first-row, .second-row {
  42. margin: 0px;
  43. font-size: @font-size-base;
  44. }
  45. // Even rows
  46. .list-group-item, .list-group-preview>.fill {
  47. overflow: auto;
  48. .first-row {
  49. float: left;
  50. }
  51. .second-row {
  52. float: right;
  53. }
  54. }
  55. }
  56. }