|
299 | 299 | @mixin kbq-markdown-base-typography() { |
300 | 300 | // h1, h2, h3, h4, h5, h6 |
301 | 301 | @for $i from 1 through 6 { |
| 302 | + // DEPRECATED: .md-h# class is deprecated, use .kbq-md-h# instead |
| 303 | + .md-h#{$i}, |
302 | 304 | .kbq-md-h#{$i} { |
303 | 305 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-h#{$i}); |
304 | 306 | } |
305 | 307 | } |
306 | 308 |
|
| 309 | + // DEPRECATED: .md-body class is deprecated, use .kbq-md-body instead |
| 310 | + /* stylelint-disable-next-line selector-class-pattern */ |
| 311 | + .md-body, |
307 | 312 | .kbq-md-body { |
308 | 313 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-body); |
309 | 314 | } |
310 | 315 |
|
| 316 | + // DEPRECATED: .md-body-mono class is deprecated, use .kbq-md-body-mono instead |
| 317 | + /* stylelint-disable-next-line selector-class-pattern */ |
| 318 | + .md-body-mono, |
311 | 319 | .kbq-md-body-mono { |
312 | 320 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-body-mono); |
313 | 321 | } |
314 | 322 |
|
| 323 | + // DEPRECATED: .md-caption class is deprecated, use .kbq-md-caption instead |
| 324 | + /* stylelint-disable-next-line selector-class-pattern */ |
| 325 | + .md-caption, |
315 | 326 | .kbq-md-caption { |
316 | 327 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-caption); |
317 | 328 | } |
318 | 329 |
|
| 330 | + // DEPRECATED: .md-table-cell class is deprecated, use .kbq-md-table-cell instead |
| 331 | + /* stylelint-disable-next-line selector-class-pattern */ |
| 332 | + .md-table-cell, |
319 | 333 | .kbq-md-table-cell { |
320 | 334 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-table-cell); |
321 | 335 | } |
322 | 336 |
|
| 337 | + // DEPRECATED: .md-table-header class is deprecated, use .kbq-md-table-header instead |
| 338 | + /* stylelint-disable-next-line selector-class-pattern */ |
| 339 | + .md-table-header, |
323 | 340 | .kbq-md-table-header { |
324 | 341 | @include kbq-typography-level-to-styles-css-variables(md-typography, md-table-header); |
325 | 342 | } |
|
0 commit comments