diff.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .compose-form {
  2. .compose-form__modifiers {
  3. .compose-form__upload {
  4. &-description {
  5. input {
  6. &::placeholder {
  7. opacity: 1;
  8. }
  9. }
  10. }
  11. }
  12. }
  13. }
  14. .status__content a,
  15. .link-footer a,
  16. .reply-indicator__content a,
  17. .status__content__read-more-button,
  18. .status__content__translate-button {
  19. text-decoration: underline;
  20. &:hover,
  21. &:focus,
  22. &:active {
  23. text-decoration: none;
  24. }
  25. &.mention {
  26. text-decoration: none;
  27. span {
  28. text-decoration: underline;
  29. }
  30. &:hover,
  31. &:focus,
  32. &:active {
  33. span {
  34. text-decoration: none;
  35. }
  36. }
  37. }
  38. }
  39. .status__content a {
  40. color: $highlight-text-color;
  41. }
  42. .nothing-here {
  43. color: $darker-text-color;
  44. }
  45. .compose-form__poll-wrapper .button.button-secondary,
  46. .compose-form .autosuggest-textarea__textarea::placeholder,
  47. .compose-form .spoiler-input__input::placeholder,
  48. .report-dialog-modal__textarea::placeholder,
  49. .language-dropdown__dropdown__results__item__common-name,
  50. .compose-form .icon-button {
  51. color: $inverted-text-color;
  52. }
  53. .text-icon-button.active {
  54. color: $ui-highlight-color;
  55. }
  56. .language-dropdown__dropdown__results__item.active {
  57. background: $ui-highlight-color;
  58. font-weight: 500;
  59. }
  60. .link-button:disabled {
  61. cursor: not-allowed;
  62. &:hover,
  63. &:focus,
  64. &:active {
  65. text-decoration: none !important;
  66. }
  67. }