/* indicate media without a description
initial code by Paul (https://linernotes.club/@balrogboogie), expanded upon by FiXato (https://contact.fixato.org)
related discussions: https://dragonscave.space/@Mayana/106443499687608116.
Feel free to reuse it; it's public domain (https://linernotes.club/@balrogboogie/106681622019395866) */
.media-gallery__item-thumbnail img:not([alt]),
.audio-player__canvas:not([title]),
.video-player video:not([title]), 
.media-gallery__gifv video:not([title])
 {
    border: 2px dashed rgba(255, 0, 0, 0.8);
    box-sizing: border-box;
}


/* from https://about.front-end.social/css/override.css */

@media screen and (min-width: 1175px) {
  .columns-area__panels__main {
    max-width: 700px;
  }
}

.compose-form .spoiler-input__border {
  background: #6364ff;
}

.content-warning {
    padding: 5px 10px;
    /* justify-content: space-between; */
    user-select: none;
    align-items: center;
    
    & > p {
        user-select: text;
        margin-right: 7.5px;
        display: inline;
    }

    & > p > .status__content__spoiler-icon {
	float: left;
	margin-right: 5px;
    }

    & > button {
        opacity: 75%;
        white-space: nowrap;
        background: #fff1;
        padding: 0 5px;
        border-radius: 5px !important;
        display: inline-block;
    }

    & + div:not([class]) {
        display: none;
    }
}


