mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-19 17:15:16 +01:00
c56a8ae0f7
This v1 marries Jetpack's Site Icon module with the Media Modal, reusing code from the Custom Header admin. For now, the core-provided icons will be limited to a favicon, an iOS app icon, and a Windows tile icon, leaving `.ico` support and additional icons to plugins to add. Props obenland, tyxla, flixos90, jancbeck, markjaquith, scruffian. See #16434. Built from https://develop.svn.wordpress.org/trunk@32994 git-svn-id: http://core.svn.wordpress.org/trunk@32965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
58 lines
950 B
CSS
58 lines
950 B
CSS
/*------------------------------------------------------------------------------
|
|
28.0 - Site Icon
|
|
------------------------------------------------------------------------------*/
|
|
|
|
.site-icon-image {
|
|
float: left;
|
|
margin: 0 20px 0 0;
|
|
}
|
|
|
|
.site-icon-content {
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.site-icon-crop-shell {
|
|
max-width: 720px;
|
|
}
|
|
|
|
.site-icon-crop-preview-shell {
|
|
float: right;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.site-icon-crop-preview-shell h3 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.site-icon-crop-favicon-preview-shell {
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.site-icon-crop-preview-favicon,
|
|
.site-icon-browser-title {
|
|
height: 16px;
|
|
left: 88px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 16px;
|
|
}
|
|
|
|
.site-icon-crop-preview-favicon {
|
|
width: 16px;
|
|
}
|
|
|
|
.site-icon-browser-title {
|
|
left: 109px;
|
|
}
|
|
|
|
.site-icon-crop-preview-homeicon {
|
|
-webkit-border-radius: 16px;
|
|
border-radius: 16px;
|
|
height: 64px;
|
|
overflow: hidden;
|
|
width: 64px;
|
|
}
|