1
1
mirror of https://github.com/primer/css.git synced 2025-01-06 05:33:07 +03:00

Remove .text-placeholder + .text-disabled again

This seems better to only have as variables
This commit is contained in:
simurai 2020-10-05 21:59:27 +09:00
parent 822ecd8608
commit 7b0893c0b4
2 changed files with 2 additions and 6 deletions

View File

@ -27,8 +27,6 @@ No changes should be needed. Components get updated without automatically withou
`.text-white` | `.text-inverse`
`.link-gray-dark` | `.text-link-secondary`
`.link-gray` | `.text-link-tertiary`
n/a | `.text-placeholder`
n/a | `.text-disabled`
`.text-black` | n/a
`.text-orange` | n/a
`.text-orange-light` | n/a
@ -117,8 +115,8 @@ n/a | `.bg-canvas`
`$text-green` (`$green-600`) | `var(--color-text-success)`
`$text-red` (`$red-600`) | `var(--color-text-danger)`
`$text-yellow` (`$yellow-800`) | `var(--color-text-warning)`
n/a | `var(--color-text-placeholder)` (`$gray-300`)
n/a | `var(--color-text-disabled)` (`$gray-300`)
n/a | `var(--color-text-placeholder)` (`$gray-500`)
n/a | `var(--color-text-disabled)` (`$gray-500`)
n/a | `var(--color-text-link-secondary)` (`$gray-900`)
n/a | `var(--color-text-link-tertiary)` (`$gray-600`)
`$text-black` (`$black`) | n/a

View File

@ -6,8 +6,6 @@
.text-primary { color: var(--color-text-primary) !important; }
.text-secondary { color: var(--color-text-secondary) !important; }
.text-tertiary { color: var(--color-text-tertiary) !important; }
.text-placeholder { color: var(--color-text-placeholder) !important; }
.text-disabled { color: var(--color-text-disabled) !important; }
.text-inverse { color: var(--color-text-inverse) !important; }
.text-link-primary { color: var(--color-text-link-primary) !important; }
.text-link-secondary { color: var(--color-text-link-secondary) !important; }