mastodon/app/javascript/styles/bliss/_general_overrides.scss

162 lines
2.2 KiB
SCSS
Raw Normal View History

@import './variables';
2020-11-01 12:10:34 +01:00
.columns-area__panels {
background: url('../images/elephant_ui_plane.svg') no-repeat left bottom fixed, url('../images/logo_cipherbliss.png') no-repeat right bottom fixed;
}
2020-11-01 11:09:10 +01:00
.status__content {
2020-11-01 10:42:32 +01:00
min-height: 5em;
}
2020-11-01 11:09:10 +01:00
.status__wrapper {
2020-11-01 10:42:32 +01:00
border-left: solid 3px transparent;
transition: 0.5s all ease;
2020-11-01 11:09:10 +01:00
&:hover {
2020-11-01 10:42:32 +01:00
transition: 0.2s all ease;
border-left: solid 3px #528dc8;
}
}
2020-11-01 11:09:10 +01:00
.detailed-status__wrapper {
2020-11-01 10:42:32 +01:00
border-left: solid 3px #528dc8;
}
2020-11-01 11:09:10 +01:00
2020-11-01 10:42:32 +01:00
.links-started__footer {
li {
display: inline-block;
}
2020-11-01 12:10:34 +01:00
.fa {
&:hover {
2020-11-01 11:09:10 +01:00
color: $gold-star;
}
}
2020-11-01 12:10:34 +01:00
2020-11-01 10:42:32 +01:00
a {
display: inline-block;
padding: .5em;
text-decoration: none;
2020-11-01 11:09:10 +01:00
.fa {
2020-11-01 10:42:32 +01:00
margin-right: 1ch;
}
2020-11-01 11:09:10 +01:00
2020-11-01 10:42:32 +01:00
&:visited {
color: #528dc8;
}
2020-11-01 12:10:34 +01:00
&:hover {
2020-11-01 11:09:10 +01:00
color: $gold-star;
}
&.staff-actions {
.fa {
color: $gold-star !important;
}
}
2020-11-01 10:42:32 +01:00
}
2020-11-01 11:09:10 +01:00
.toggle_links {
&[data-active=true] {
background: $classic-primary-color;
color: white;
}
}
2020-11-01 10:42:32 +01:00
}
.compose-form {
.reply-indicator {
2020-11-01 12:10:34 +01:00
display: block;
2020-11-01 10:42:32 +01:00
}
}
2020-11-01 12:10:34 +01:00
.autosuggest-textarea__textarea{
color: #528dc8;
}
2020-11-01 10:42:32 +01:00
.account-authorize--more-data {
padding: 1em;
color: white;
margin-bottom: 1em;
a {
margin-right: 1em;
padding: 0.5em;
color: white;
}
}
2020-11-01 11:09:10 +01:00
2020-11-01 12:10:34 +01:00
.account__relationship {
button {
2020-11-01 11:09:10 +01:00
width: 10em;
height: 3em;
}
}
2020-11-01 12:10:34 +01:00
2020-11-01 11:09:10 +01:00
.account--panel {
margin-top: 1em;
}
.account--panel__button {
2020-11-01 12:10:34 +01:00
padding: 1em;
2020-11-01 11:09:10 +01:00
button {
2020-11-01 10:42:32 +01:00
display: block;
}
}
2020-11-01 12:10:34 +01:00
.status__content,
.status_info,
.status__content__read-more-button,
.display-name{
margin-left: 1em;
}
.status__wrapper, .detailed-status__wrapper{
.status__action-bar{
opacity: 0;
transition: all ease 0.5s;
}
&:hover{
.status__action-bar{
opacity: 1;
transition: all ease 0.2s;
}
}
}
2020-11-01 12:10:34 +01:00
.status__content__read-more-button {
.fa{
float:left;
}
.see-more {
opacity: 0;
transition: opacity ease 0.2s;
float:left;
margin-left: 1em;
}
&:hover .see-more{
display: block;
opacity: 1;
}
}
.dropdown-menu__item{
.fa{
margin-right:1em;
}
}
@media all and (max-width: 600px) {
.columns-area__panels {
background: none;
}
}