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.
 
 
 
 

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