You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

264 lines
5.1 KiB

  1. @charset "UTF-8";
  2. .richtext {
  3. ul, ol {
  4. margin: 1em 0 1.5em;
  5. padding: 0;
  6. li {
  7. position: relative;
  8. display: block;
  9. padding-left: 32px;
  10. margin-bottom: 0.4em;
  11. @media(max-width: 767px) {
  12. padding-left: 24px;
  13. }
  14. }
  15. }
  16. ul li:after, ol ul li:after {
  17. content: "";
  18. position: absolute;
  19. left: 0;
  20. width: 8px;
  21. height: 8px;
  22. border-radius: 3px;
  23. background-color: $color-secondary;
  24. background-color: var(--theme-color-secondary, $color-secondary);
  25. top: 12px;
  26. @media(max-width: 767px) {
  27. top: 10px;
  28. width: 6px;
  29. height: 6px;
  30. }
  31. }
  32. ul:not(.anchors) li:before, ol ul li:before {
  33. display: none;
  34. }
  35. ol > li:after {
  36. display: none;
  37. }
  38. ul ul {
  39. margin: 0.4em 0;
  40. li:after {
  41. background-color: transparent;
  42. border: 2px solid $color-secondary;
  43. border: 2px solid var(--theme-color-secondary, $color-secondary);
  44. box-sizing: border-box;
  45. }
  46. }
  47. ol {
  48. counter-reset: listcount;
  49. li:before {
  50. counter-increment: listcount;
  51. content: counter(listcount) ".";
  52. font-weight: 700;
  53. position: absolute;
  54. left: 0;
  55. }
  56. }
  57. .text a, .rte--list a, .strong a {
  58. color: $color-link;
  59. transition: 0.2s ease;
  60. display: inline;
  61. padding: 0 5px 2px;
  62. background-color: $color-secondary-light;
  63. //font-weight: 400;
  64. margin: 0 -1px -2px;
  65. opacity: 1;
  66. -webkit-box-decoration-break: clone;
  67. box-decoration-break: clone;
  68. &:hover {
  69. color: $color-link-hover;
  70. }
  71. &.external, &.extranet, &.intranet, &[data-linktypeicon="CMExternalLink"], &[data-linktypeicon="CMDownload"] {
  72. position: relative;
  73. padding-left: 7px;
  74. &:after {
  75. @include icon-small-link-external;
  76. font-family: "icons";
  77. color: $color-link-hover;
  78. font-size: 18px;
  79. margin-left: 3px;
  80. outline: 3px solid $color-secondary-light;
  81. outline-offset: -2px;
  82. text-decoration: underline;
  83. text-transform: none;
  84. font-weight: 400;
  85. font-style: normal;
  86. }
  87. }
  88. &.intranet:after {
  89. @include icon-small-schloss;
  90. }
  91. &.extranet:after {
  92. @include icon-small-stern;
  93. }
  94. &[data-linktypeicon="CMDownload"]:after {
  95. @include icon-small-download;
  96. text-decoration: none;
  97. display: inline-block;
  98. line-height: 0;
  99. outline: none;
  100. }
  101. }
  102. .text a.image-link{
  103. background-color: #fff;
  104. padding: 0;
  105. margin: 0;
  106. display: block;
  107. &:after{
  108. display: none;
  109. }
  110. }
  111. .responsive-table {
  112. tr > td > a {
  113. color: $color-link;
  114. transition: 0.2s ease;
  115. display: inline;
  116. padding: 0 5px 2px;
  117. background-color: $color-secondary-light;
  118. //font-weight: 400;
  119. margin: 0 -1px -2px;
  120. opacity: 1;
  121. -webkit-box-decoration-break: clone;
  122. box-decoration-break: clone;
  123. }
  124. a {
  125. &.external, &.extranet, &.intranet, &[data-linktypeicon="CMExternalLink"], &[data-linktypeicon="CMDownload"] {
  126. color: $color-link;
  127. transition: 0.2s ease;
  128. display: inline;
  129. background-color: $color-secondary-light;
  130. //font-weight: 400;
  131. margin: 0 -1px -2px;
  132. opacity: 1;
  133. -webkit-box-decoration-break: clone;
  134. box-decoration-break: clone;
  135. &:hover {
  136. color: $color-link-hover;
  137. }
  138. position: relative;
  139. padding: 0 5px 2px 7px;
  140. &:after {
  141. @include icon-small-link-external;
  142. font-family: "icons";
  143. color: $color-link-hover;
  144. font-size: 18px;
  145. margin-left: 3px;
  146. outline: 3px solid $color-secondary-light;
  147. outline-offset: -2px;
  148. text-decoration: underline;
  149. text-transform: none;
  150. font-weight: 400;
  151. font-style: normal;
  152. }
  153. }
  154. &.intranet:after {
  155. @include icon-small-schloss;
  156. }
  157. &.extranet:after {
  158. @include icon-small-stern;
  159. }
  160. &[data-linktypeicon="CMDownload"]:after {
  161. @include icon-small-download;
  162. text-decoration: none;
  163. display: inline-block;
  164. line-height: 0;
  165. outline: none;
  166. }
  167. }
  168. }
  169. ul.highcharts-menu {
  170. padding: 10px 0 !important;
  171. li {
  172. padding: 5px 20px;
  173. margin: 0;
  174. &:after {
  175. display: none;
  176. }
  177. }
  178. hr {
  179. margin: 5px 0 8px;
  180. }
  181. }
  182. ul.tab-buttons {
  183. margin: 0;
  184. li {
  185. display: inline-block;
  186. margin-bottom: 12px;
  187. padding-left: 0;
  188. &:after {
  189. content: "";
  190. height: 0;
  191. width: 0;
  192. border: 0;
  193. }
  194. }
  195. }
  196. .detail-text {
  197. overflow-x: hidden;
  198. }
  199. }
  200. blockquote {
  201. border-left: 6px solid $color-secondary;
  202. border-left: 6px solid var(--theme-color-secondary, $color-secondary);
  203. margin: 2em 0;
  204. padding-left: 26px;
  205. font-style: italic;
  206. @media(max-width: 767px) {
  207. padding-left: 18px;
  208. }
  209. .author {
  210. font-style: normal;
  211. font-size: 18px;
  212. line-height: 1.2;
  213. }
  214. }
  215. [data-browser="ie"] .richtext .text {
  216. a.external:after, a.external:after, a.external:after, a[data-linktypeicon="CMExternalLink"] {
  217. text-decoration: none;
  218. }
  219. }