philomena/assets/css/views/communications.css

110 lines
1.9 KiB
CSS
Raw Normal View History

2019-08-18 02:43:44 +02:00
td.table--communication-list__name {
font-size: 18px;
}
td.table--communication-list__stats {
width: 6%;
}
td.table--communication-list__last-post,
td.table--communication-list__options {
width: 35%;
}
.communication:target {
2024-12-17 17:49:05 +01:00
border: 1px solid var(--input-border-active);
2019-08-18 02:43:44 +02:00
}
.communication__body {
overflow: hidden;
}
span.communication__body__sender-name {
font-size: 15px;
font-weight: bold;
}
.communication__body__text {
word-wrap: break-word;
margin-top: 3px;
margin-bottom: 6px;
line-height: 1.35em;
2024-12-17 17:49:05 +01:00
}
.communication__body__text img {
max-width: 100%;
2019-08-18 02:43:44 +02:00
}
span.communication__sender__stats,
.communication__options {
font-size: 0.86em;
}
.communication__options {
2024-12-17 17:49:05 +01:00
background: var(--background-odd-color);
border-top: var(--border);
2019-08-18 02:43:44 +02:00
}
.communication__interaction {
margin-left: 6px;
}
.communication__info {
display: unset;
margin-left: 6px;
}
.communication-edit__tab {
padding-bottom: 12px;
}
.communication-edit__actions {
margin-top: -4px; /* Dirty! 1px to override the border, 3px to negate input margin */
padding-top: 0;
}
.avatar-svg {
max-width: 100%;
max-height: 100%;
}
.communication__toolbar {
margin-bottom: 6px;
}
.communication__toolbar__button {
2024-12-17 17:49:05 +01:00
background-color: var(--meta-color);
border: 1px solid var(--meta-border-color);
color: var(--foreground-color);
2019-08-18 02:43:44 +02:00
margin: 1px;
padding: 4px;
border-radius: 0;
cursor: pointer;
min-width: 30px;
2024-12-17 17:49:05 +01:00
}
2019-08-18 02:43:44 +02:00
2024-12-17 17:49:05 +01:00
.communication__toolbar__button:hover {
background-color: var(--input-color-active);
}
2019-08-18 02:43:44 +02:00
2024-12-17 17:49:05 +01:00
.communication__toolbar__button:focus,
.communication__toolbar__button:hover,
.communication__toolbar__button:active,
.communication__toolbar__button:visited {
border-color: var(--input-border-active);
outline: 0;
2019-08-18 02:43:44 +02:00
}
2024-12-17 17:49:05 +01:00
.hyphenate-breaks {
2019-08-18 02:43:44 +02:00
hyphens: auto;
}
.checkbox-label-of-doom {
display: inline-block;
margin-right: 2em;
}
.communication--destroyed {
2024-12-17 17:49:05 +01:00
background-color: var(--destroyed-content-color);
}