diff.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // components.scss
  2. .compose-form {
  3. .compose-form__modifiers {
  4. .compose-form__upload {
  5. &-description {
  6. input {
  7. &::placeholder {
  8. opacity: 1;
  9. }
  10. }
  11. }
  12. }
  13. }
  14. }
  15. .status__content a,
  16. .reply-indicator__content a {
  17. color: lighten($ui-highlight-color, 12%);
  18. text-decoration: underline;
  19. &.mention {
  20. text-decoration: none;
  21. }
  22. &.mention span {
  23. text-decoration: underline;
  24. &:hover,
  25. &:focus,
  26. &:active {
  27. text-decoration: none;
  28. }
  29. }
  30. &:hover,
  31. &:focus,
  32. &:active {
  33. text-decoration: none;
  34. }
  35. &.status__content__spoiler-link {
  36. color: $secondary-text-color;
  37. text-decoration: none;
  38. }
  39. }
  40. .status__content__read-more-button {
  41. text-decoration: underline;
  42. &:hover,
  43. &:focus,
  44. &:active {
  45. text-decoration: none;
  46. }
  47. }
  48. .getting-started__footer a {
  49. text-decoration: underline;
  50. &:hover,
  51. &:focus,
  52. &:active {
  53. text-decoration: none;
  54. }
  55. }
  56. .nothing-here {
  57. color: $darker-text-color;
  58. }
  59. .compose-form .autosuggest-textarea__textarea::placeholder,
  60. .compose-form .spoiler-input__input::placeholder {
  61. color: $inverted-text-color;
  62. }