mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-30 15:31:04 +01:00
13d010f2d6
The avatar block size was different between front and editor. This was because the width and height were added to the avatar class. Props poena, naeemhaque, sabernhardt, sakibmd. Fixes #60664. Built from https://develop.svn.wordpress.org/trunk@58580 git-svn-id: http://core.svn.wordpress.org/trunk@58027 1a063a9b-81f0-0310-95a4-ce76da25c4cd
42 lines
749 B
SCSS
42 lines
749 B
SCSS
.page-content .wp-smiley,
|
|
.entry-content .wp-smiley,
|
|
.comment-content .wp-smiley {
|
|
border: none;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
embed,
|
|
iframe,
|
|
object {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.custom-logo-link {
|
|
display: inline-block;
|
|
}
|
|
|
|
.avatar {
|
|
border-radius: 100%;
|
|
display: block;
|
|
height: auto;
|
|
min-height: inherit;
|
|
width: auto;
|
|
}
|
|
|
|
svg {
|
|
transition: fill $icon_transition ease-in-out;
|
|
fill: currentColor;
|
|
}
|
|
|
|
/*--------------------------------------------------------------
|
|
## Captions
|
|
--------------------------------------------------------------*/
|
|
@import "captions";
|
|
|
|
/*--------------------------------------------------------------
|
|
## Galleries
|
|
--------------------------------------------------------------*/
|
|
@import "galleries";
|