username-history.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //
  2. // Username History
  3. // --------------------------------------------------
  4. .username-history {
  5. .username-change-avatar {
  6. float: left;
  7. a, span {
  8. margin-right: @line-height-computed / 2;
  9. img {
  10. width: 42px;
  11. height: 42px;
  12. }
  13. }
  14. }
  15. .empty-message {
  16. text-align: center;
  17. }
  18. .username-change {
  19. overflow: auto;
  20. span {
  21. display: block;
  22. float: left;
  23. }
  24. .material-icon {
  25. margin: 0px @font-size-base / 2;
  26. position: relative;
  27. top: 4px;
  28. }
  29. }
  30. .username-change-date {
  31. color: @text-muted;
  32. font-size: @font-size-small;
  33. }
  34. }
  35. // Full displays
  36. @media screen and (min-width: @screen-md-min) {
  37. .username-history {
  38. li {
  39. display: block;
  40. overflow: auto;
  41. }
  42. .username-change-avatar {
  43. a, span {
  44. img {
  45. width: 18px;
  46. height: 18px;
  47. position: relative;
  48. bottom: 1px;
  49. }
  50. }
  51. }
  52. .username-change-author {
  53. float: left;
  54. width: 30%;
  55. }
  56. .username-change {
  57. float: left;
  58. width: 40%;
  59. }
  60. .username-change-date {
  61. float: left;
  62. width: 20%;
  63. }
  64. &.ui-ready {
  65. .username-change-date {
  66. position: relative;
  67. top: 2px;
  68. }
  69. }
  70. }
  71. }