1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // components.scss
- .compose-form {
- .compose-form__modifiers {
- .compose-form__upload {
- &-description {
- input {
- &::placeholder {
- opacity: 1;
- }
- }
- }
- }
- }
- }
- .status__content a,
- .reply-indicator__content a {
- color: lighten($ui-highlight-color, 12%);
- text-decoration: underline;
- &.mention {
- text-decoration: none;
- }
- &.mention span {
- text-decoration: underline;
- &:hover,
- &:focus,
- &:active {
- text-decoration: none;
- }
- }
- &:hover,
- &:focus,
- &:active {
- text-decoration: none;
- }
- &.status__content__spoiler-link {
- color: $secondary-text-color;
- text-decoration: none;
- }
- }
- .status__content__read-more-button {
- text-decoration: underline;
- &:hover,
- &:focus,
- &:active {
- text-decoration: none;
- }
- }
- .getting-started__footer a {
- text-decoration: underline;
- &:hover,
- &:focus,
- &:active {
- text-decoration: none;
- }
- }
- .nothing-here {
- color: $darker-text-color;
- }
- .compose-form .autosuggest-textarea__textarea::placeholder,
- .compose-form .spoiler-input__input::placeholder {
- color: $inverted-text-color;
- }
|