_page_list.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .crowi.main-container .main .content-main .timeline-body { // {{{
  2. .revision-path {
  3. margin-top: 1.6em;
  4. margin-bottom: 0;
  5. border: solid 2px #ddd;
  6. border-bottom: none;
  7. padding: 16px;
  8. background: #ddd;
  9. }
  10. .revision-body {
  11. font-size: 14px;
  12. border: solid 2px #ddd;
  13. padding: 16px;
  14. background: #fdfdfd;
  15. }
  16. } // }}}
  17. .page-list {
  18. .page-list-container {
  19. line-height: 1.6em;
  20. font-size: 15px;
  21. }
  22. }
  23. .page-list, .content-main {
  24. .page-list-ul {
  25. padding-left: 1rem;
  26. > li {
  27. line-height: 1.8em;
  28. .page-list-option {
  29. float: right;
  30. margin-left: 4px;
  31. }
  32. .picture {
  33. width: 16px;
  34. height: 16px;
  35. }
  36. > a {
  37. display: inline;
  38. padding: 0 4px;
  39. font-size: 1.1em;
  40. color: #666;
  41. strong {
  42. color: #333;
  43. }
  44. }
  45. > span.page-list-meta {
  46. font-size: .9em;
  47. color: #999;
  48. }
  49. }
  50. // override .page-list-ul
  51. &.page-list-ul-flat {
  52. padding-left: 0;
  53. > li {
  54. list-style: none;
  55. }
  56. }
  57. }
  58. }