_layout.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. body {
  2. overflow-y: scroll !important;
  3. }
  4. .grw-logo {
  5. svg {
  6. width: $grw-logo-width;
  7. height: $grw-navbar-height;
  8. padding: ($grw-logo-width - $grw-logomark-width) / 2;
  9. }
  10. }
  11. .confidential {
  12. font-weight: bold;
  13. }
  14. .grw-modal-head {
  15. font-size: 1em;
  16. border-bottom: 1px solid $gray-500;
  17. }
  18. .grw-page-accessories-modal {
  19. .grw-modal-head-icons {
  20. width: 20px;
  21. height: 20px;
  22. }
  23. }
  24. // padding settings for GrowiNavbarBottom
  25. .page-wrapper {
  26. padding-bottom: $grw-navbar-bottom-height;
  27. @include media-breakpoint-up(md) {
  28. padding-bottom: unset;
  29. }
  30. }
  31. .main {
  32. margin-top: 1rem;
  33. }
  34. .revision-toc {
  35. // to get on the Attachment row
  36. z-index: 1;
  37. overflow: hidden;
  38. font-size: 0.9em;
  39. .revision-toc-content {
  40. padding: 10px;
  41. > ul {
  42. padding-left: 0;
  43. ul {
  44. padding-left: 1em;
  45. }
  46. }
  47. // first level of li
  48. > ul > li {
  49. padding: 5px;
  50. margin: 4px 4px 4px 17px;
  51. }
  52. }
  53. }
  54. .grw-fab {
  55. position: fixed;
  56. right: 1.5rem;
  57. bottom: 3rem;
  58. z-index: $zindex-fixed;
  59. transition: all 200ms linear;
  60. .btn-create-page {
  61. width: 60px;
  62. height: 60px;
  63. font-size: 24px;
  64. box-shadow: 2px 3px 6px #0000005d;
  65. }
  66. .btn-scroll-to-top {
  67. width: 40px;
  68. height: 40px;
  69. opacity: 0.4;
  70. i {
  71. display: inline-block;
  72. transform: rotate(90deg);
  73. }
  74. }
  75. }
  76. // printable style
  77. @media print {
  78. padding: 30px;
  79. a:after {
  80. display: none !important;
  81. }
  82. .main {
  83. header {
  84. border-bottom: solid 1px #666;
  85. h1 {
  86. font-size: 2em;
  87. color: #000;
  88. }
  89. }
  90. .row {
  91. display: block !important;
  92. }
  93. .revision-toc {
  94. float: none;
  95. max-width: 100%;
  96. margin-bottom: 20px;
  97. font-size: 0.9em;
  98. border: solid 1px #aaa;
  99. .revision-toc-head {
  100. display: inline-block;
  101. float: none;
  102. }
  103. .revision-toc-content.collapse {
  104. display: block;
  105. height: auto;
  106. }
  107. }
  108. .meta {
  109. margin-top: 32px;
  110. color: #666;
  111. border-top: solid 1px #ccc;
  112. }
  113. }
  114. }
  115. .system-version {
  116. position: fixed;
  117. right: 0.5em;
  118. bottom: 0;
  119. opacity: 0.6;
  120. > span {
  121. margin-left: 0.5em;
  122. }
  123. }
  124. .grw-table-top-icons {
  125. width: 16px;
  126. height: 16px;
  127. }
  128. .top-of-table-contents {
  129. flex-wrap: wrap;
  130. .seen-user-count {
  131. font-size: 12px;
  132. font-weight: bolder;
  133. }
  134. .icon-button-box {
  135. border-right: 1px solid;
  136. }
  137. .btn-seen-user-list {
  138. white-space: nowrap;
  139. }
  140. .seen-user-popover {
  141. max-width: 200px;
  142. }
  143. }