4aab834156
This has been reasonably well tested, but further testing should be done on staging. Also optimizes avatar handling to use a constant size and not 404. Fixes #1434
29 lines
No EOL
503 B
CSS
29 lines
No EOL
503 B
CSS
.avatar-element {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
color: white !important;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.avatar-element.team {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.avatar-element img {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
}
|
|
|
|
.avatar-element .letter {
|
|
cursor: default !important;
|
|
font-style: normal !important;
|
|
font-weight: normal !important;
|
|
font-variant: normal !important;
|
|
}
|
|
|
|
a .avatar-element .letter {
|
|
cursor: pointer !important;
|
|
} |