_page_list.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. @use './bootstrap/variables' as var;
  2. body .page-list {
  3. .page-list-container {
  4. font-size: 15px;
  5. line-height: 1.6em;
  6. }
  7. .btn-page-item-control {
  8. width: 20px;
  9. height: 20px;
  10. padding: 0px;
  11. }
  12. .page-list-ul {
  13. padding-left: 0;
  14. margin: 0;
  15. > li {
  16. list-style: none;
  17. > a {
  18. padding: 0px;
  19. color: inherit;
  20. &:hover {
  21. color: inherit;
  22. }
  23. }
  24. }
  25. .picture {
  26. width: 16px;
  27. height: 16px;
  28. vertical-align: text-bottom;
  29. &.picture-md {
  30. width: 20px;
  31. height: 20px;
  32. }
  33. }
  34. .page-list-meta {
  35. font-size: 0.9em;
  36. > span {
  37. margin-right: 0.3rem;
  38. }
  39. i {
  40. margin-right: 2px;
  41. }
  42. .footstamp-icon {
  43. svg {
  44. width: 14px;
  45. height: 14px;
  46. }
  47. }
  48. .seen-users-count {
  49. &.strength-0,
  50. &.strength-1,
  51. &.strength-2 {
  52. font-weight: bold;
  53. }
  54. &.strength-3 {
  55. font-weight: normal;
  56. }
  57. &.strength-4 {
  58. opacity: 0.5;
  59. }
  60. }
  61. }
  62. // after second level indent
  63. .page-list-ul {
  64. padding-left: 2rem;
  65. }
  66. // override .page-list-ul
  67. &.page-list-ul-flat {
  68. padding-left: 0;
  69. }
  70. }
  71. // List group
  72. .list-group {
  73. .list-group-item {
  74. min-height: 136px;
  75. .page-list-updated-at {
  76. font-size: 12px;
  77. }
  78. &.list-group-item-action {
  79. border-left: solid 3px transparent;
  80. }
  81. }
  82. }
  83. }