style.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #changeSummary {
  2. padding: 25px 32px 32px 32px;
  3. h1 {
  4. font-size: 22px;
  5. margin-bottom: 20px;
  6. }
  7. table {
  8. border: 1px solid var(--border-strong);
  9. caption {
  10. text-align: left;
  11. font-size: 16px;
  12. margin-bottom: 10px;
  13. }
  14. tbody {
  15. tr {
  16. th, td {
  17. text-align: left;
  18. font-size: 14px;
  19. font-weight: normal;
  20. padding: 12px 13px;
  21. }
  22. th {
  23. background: var(--bg-elevated);
  24. border: 1px solid var(--border-strong);
  25. }
  26. td {
  27. border-bottom: 1px solid var(--border-strong);
  28. a {
  29. padding: 3px 16px;
  30. }
  31. &:nth-of-type(2) {
  32. text-align: right;
  33. }
  34. input {
  35. width: 100%;
  36. }
  37. }
  38. }
  39. }
  40. tfoot {
  41. background: var(--bg-elevated);
  42. tr {
  43. td {
  44. text-align: center;
  45. padding: 8px;
  46. button, a {
  47. padding: 6px 20px;
  48. }
  49. .btn-delete {
  50. background-color: #e6f4fa;
  51. color: var(--text-primary);
  52. border: 1px solid #b3b3b3;
  53. -webkit-box-shadow: inset 0 -1px 0 0 #b3b3b3;
  54. box-shadow: inset 0 -1px 0 0 #b3b3b3;
  55. &:hover {
  56. background-color: #c6e7f3;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. }
  63. dl {
  64. background-color: var(--bg-subtle);
  65. border: 1px solid var(--border-strong);
  66. line-height: 1.5;
  67. padding: 15px 16px 12px 16px;
  68. dt, dd {
  69. font-size: 14px;
  70. }
  71. dt {
  72. font-weight: bold;
  73. margin-bottom: 7px;
  74. }
  75. dd {
  76. ol {
  77. list-style: disc;
  78. padding: 0 20px;
  79. }
  80. }
  81. }
  82. blockquote {
  83. line-height: 1.9;
  84. }
  85. }