kollapsminoriteten/wp-content/plugins/simple-user-avatar/admin/css/style.css

34 lines
565 B
CSS
Raw Normal View History

2022-01-14 13:13:03 +01:00
@charset "utf-8";
2022-04-02 10:26:41 +02:00
/* Hide WordPress default avatar */
.user-profile-picture {
2022-01-14 13:13:03 +01:00
display: none;
}
2022-04-02 10:26:41 +02:00
/* Set style for the avatar picture */
.sua-attachment-avatar {
border-radius: 1px;
2022-01-14 13:13:03 +01:00
cursor: pointer;
}
2022-04-02 10:26:41 +02:00
/* Set style for buttons */
2022-01-14 13:13:03 +01:00
#btn-media-remove,
#btn-media-remove:hover {
2022-04-02 10:26:41 +02:00
background: #990000;
2022-01-14 13:13:03 +01:00
border-color: #560303;
color: white;
}
#btn-media-remove:hover {
2022-04-02 10:26:41 +02:00
background: #b40000;
}
#btn-media-remove:focus {
box-shadow: 0 0 0 1px #560303;
}
/* Fix the square size of avatars in /wp-admin */
img.avatar {
object-fit: cover;
2022-01-14 13:13:03 +01:00
}