user-options.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. .item-name {
  30. display: none;
  31. }
  32. img, .avatar-preview {
  33. border-radius: @avatar-radius-small;
  34. }
  35. }
  36. .second-row {
  37. margin-top: @line-height-computed / 4;
  38. margin-left: 42px + @padding-large-horizontal;
  39. font-size: @font-size-small;
  40. }
  41. // Larger displays
  42. @media (min-width: @screen-md-min) {
  43. // don't offset rows
  44. .first-row, .second-row {
  45. margin: 0px;
  46. font-size: @font-size-base;
  47. }
  48. // display names in right rows
  49. .first-row .item-name {
  50. display: inline-block;
  51. }
  52. .second-row .item-name {
  53. display: none;
  54. }
  55. // Even rows
  56. .list-group-item, .list-group-preview>.fill {
  57. overflow: auto;
  58. .first-row {
  59. float: left;
  60. }
  61. .second-row {
  62. float: right;
  63. }
  64. }
  65. }
  66. }