mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
46 lines
765 B
Plaintext
46 lines
765 B
Plaintext
@import "../../style/themes/default";
|
|
|
|
@avatar-prefix-cls: ~"@{ant-prefix}-avatar";
|
|
|
|
.@{avatar-prefix-cls} {
|
|
display: inline-block;
|
|
text-align: center;
|
|
background: @avatar-bg;
|
|
color: @avatar-color;
|
|
overflow: hidden;
|
|
|
|
.avatar-size(@avatar-size-base, @avatar-font-size-base);
|
|
|
|
&-lg {
|
|
.avatar-size(@avatar-size-lg, @avatar-font-size-lg);
|
|
}
|
|
|
|
&-sm {
|
|
.avatar-size(@avatar-size-sm, @avatar-font-size-sm);
|
|
}
|
|
|
|
&-square {
|
|
border-radius: @avatar-border-radius;
|
|
}
|
|
|
|
& > img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.avatar-size(@size, @font-size) {
|
|
width: @size;
|
|
height: @size;
|
|
line-height: @size;
|
|
border-radius: @size / 2;
|
|
|
|
& > * {
|
|
line-height: @size;
|
|
}
|
|
|
|
&.@{avatar-prefix-cls}-icon {
|
|
font-size: @font-size;
|
|
}
|
|
}
|