mastodon/app/assets/stylesheets/components.scss

142 lines
1.9 KiB
SCSS
Raw Normal View History

2016-08-31 20:58:10 +00:00
.button {
background-color: #2b90d9;
&:hover {
background-color: #489fde;
}
&:disabled {
background-color: #9baec8;
}
&.button-secondary {
background-color: #282c37;
&:hover {
background-color: #282c37;
}
&:disabled {
background-color: #9baec8;
}
}
2016-08-31 20:58:10 +00:00
}
.icon-button {
color: #616b86;
cursor: pointer;
&:hover {
color: #717b98;
}
&.disabled {
color: #535b72;
cursor: default;
}
&.active {
color: #2b90d9;
}
2016-08-31 20:58:10 +00:00
}
.compose-form__textarea, .follow-form__input {
2016-08-31 20:58:10 +00:00
background: #fff;
&:disabled {
background: #d9e1e8;
}
}
.status__content, .reply-indicator__content {
2016-08-31 14:48:21 +00:00
font-size: 15px;
line-height: 20px;
word-wrap: break-word;
font-weight: 300;
2016-09-10 08:14:36 +00:00
p {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
2016-08-24 19:08:00 +00:00
a {
2016-08-31 14:48:21 +00:00
color: #d9e1e8;
2016-08-24 19:08:00 +00:00
text-decoration: none;
&:hover {
text-decoration: underline;
}
&.mention {
&:hover {
text-decoration: none;
span {
text-decoration: underline;
}
}
}
}
}
2016-08-31 20:58:10 +00:00
.detailed-status {
.status__content {
font-size: 19px;
line-height: 24px;
}
}
2016-08-31 20:58:10 +00:00
.reply-indicator__content {
color: #282c37;
font-size: 14px;
a {
color: #535b72;
}
}
.status__display-name, .status__relative-time, .detailed-status__display-name, .detailed-status__datetime {
2016-08-31 20:58:10 +00:00
text-decoration: none;
}
2016-09-01 12:12:11 +00:00
.status__display-name {
strong {
color: #fff;
}
}
.status__display-name, .reply-indicator__display-name, .detailed-status__display-name {
2016-08-31 20:58:10 +00:00
&:hover {
strong {
text-decoration: underline;
}
}
}
.detailed-status__display-name {
color: #d9e1e8;
line-height: 24px;
strong, span {
display: block;
}
strong {
font-size: 16px;
color: #fff;
}
}
.status__relative-time, .detailed-status__datetime {
2016-08-31 20:58:10 +00:00
&:hover {
text-decoration: underline;
}
}
.transparent-background {
background: image-url('void.png');
}