mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
06770656eb
Add text color variables + minor SCSS fixes + high contrast skin
54 lines
866 B
SCSS
54 lines
866 B
SCSS
.account__header .account__header__fields {
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
overflow: hidden;
|
|
border-collapse: collapse;
|
|
margin: 20px -10px -20px;
|
|
border-bottom: 0;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
|
|
&:hover{
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
border-top: 1px solid lighten($ui-base-color, 8%);
|
|
text-align: center;
|
|
}
|
|
|
|
th, td {
|
|
padding: 14px 20px;
|
|
vertical-align: middle;
|
|
|
|
& > div {
|
|
max-height: 40px;
|
|
overflow-y: auto;
|
|
white-space: pre-wrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
th {
|
|
color: $darker-text-color;
|
|
background: lighten($ui-base-color, 13%);
|
|
max-width: 120px;
|
|
|
|
a {
|
|
color: $primary-text-color;
|
|
}
|
|
}
|
|
|
|
td {
|
|
flex: auto;
|
|
color: $primary-text-color;
|
|
background: $ui-base-color;
|
|
|
|
a {
|
|
color: $highlight-text-color;
|
|
}
|
|
}
|
|
}
|