_page_list.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. margin: 0;
  26. padding-left: 0;
  27. > li {
  28. margin: 0;
  29. list-style: none;
  30. color: #666;
  31. .page-list-option {
  32. float: right;
  33. margin-left: 4px;
  34. }
  35. .picture {
  36. width: 16px;
  37. height: 16px;
  38. }
  39. > a {
  40. display: inline;
  41. padding: 0 4px;
  42. color: inherit;
  43. strong {
  44. color: #333;
  45. }
  46. }
  47. > span.page-list-meta {
  48. font-size: .9em;
  49. color: #999;
  50. >span {
  51. margin-right: .3rem;
  52. }
  53. }
  54. }
  55. // after second level indent
  56. .page-list-ul {
  57. padding-left: 2rem;
  58. }
  59. // override .page-list-ul
  60. &.page-list-ul-flat {
  61. padding-left: 0;
  62. }
  63. }
  64. }