_recent.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /**
  2. * This file provides styles for the recent changes (?do=recent) and
  3. * old revisions (?do=revisions).
  4. */
  5. /*____________ list of revisions / recent changes ____________*/
  6. /* select type of revisions (media/pages) */
  7. .dokuwiki .changeType {
  8. margin-bottom: .5em;
  9. }
  10. .dokuwiki form.changes ul li {
  11. list-style: none;
  12. margin-left: 0;
  13. }
  14. [dir=rtl] .dokuwiki form.changes ul li {
  15. margin-right: 0;
  16. }
  17. .dokuwiki form.changes ul li span,
  18. .dokuwiki form.changes ul li a {
  19. vertical-align: middle;
  20. }
  21. .dokuwiki form.changes ul li span.user a {
  22. vertical-align: bottom;
  23. }
  24. .dokuwiki form.changes ul li.minor {
  25. opacity: .7;
  26. }
  27. .dokuwiki form.changes li span.date {
  28. }
  29. .dokuwiki form.changes li a.diff_link {
  30. vertical-align: baseline;
  31. }
  32. .dokuwiki form.changes li a.revisions_link {
  33. vertical-align: baseline;
  34. }
  35. .dokuwiki form.changes li a.wikilink1,
  36. .dokuwiki form.changes li a.wikilink2 {
  37. }
  38. .dokuwiki form.changes li span.sum {
  39. font-weight: bold;
  40. }
  41. .dokuwiki form.changes li span.user {
  42. }
  43. /*____________ size differences ____________*/
  44. .dokuwiki form.changes li .sizechange {
  45. font-size: 80%;
  46. border-radius: .2em;
  47. padding: .1em .2em;
  48. /* cannot use non-guaranteed style.ini colour placeholders, dark templates need to overwrite */
  49. background-color: #ddd;
  50. }
  51. .dokuwiki form.changes li .sizechange.positive {
  52. background-color: #cfc;;
  53. }
  54. .dokuwiki form.changes li .sizechange.negative {
  55. background-color: #fdd;
  56. }
  57. /*____________ page navigator ____________*/
  58. .dokuwiki div.pagenav {
  59. text-align: center;
  60. margin: 1.4em 0;
  61. }
  62. .dokuwiki div.pagenav-prev,
  63. .dokuwiki div.pagenav-next {
  64. display: inline;
  65. margin: 0 .5em;
  66. }