mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
cd7a40bdc7
Using Jcrop's `trueSize` argument also allows us to get rid of all that behind the scenes temp image creating and back and forth calculating of image sizes. Props tyxla for initial patch. See #16434. Built from https://develop.svn.wordpress.org/trunk@33053 git-svn-id: http://core.svn.wordpress.org/trunk@33024 1a063a9b-81f0-0310-95a4-ce76da25c4cd
84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
/*------------------------------------------------------------------------------
|
|
28.0 - Site Icon
|
|
------------------------------------------------------------------------------*/
|
|
|
|
.site-icon-image {
|
|
float: right;
|
|
margin: 0 0 0 20px;
|
|
}
|
|
|
|
.site-icon-content {
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.site-icon-crop-shell {
|
|
max-width: 720px;
|
|
}
|
|
|
|
.site-icon-crop-wrapper {
|
|
float: right;
|
|
}
|
|
|
|
.site-icon-crop-preview-shell {
|
|
float: left;
|
|
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;
|
|
right: 88px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 16px;
|
|
}
|
|
|
|
.site-icon-crop-preview-favicon {
|
|
width: 16px;
|
|
}
|
|
|
|
.site-icon-browser-title {
|
|
right: 109px;
|
|
}
|
|
|
|
.site-icon-crop-preview-homeicon {
|
|
background-color: #000;
|
|
-webkit-border-radius: 16px;
|
|
border-radius: 16px;
|
|
height: 64px;
|
|
overflow: hidden;
|
|
width: 64px;
|
|
}
|
|
|
|
.site-icon-crop-shell .submit {
|
|
clear: both;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.site-icon-crop-wrapper,
|
|
.site-icon-crop-preview-shell {
|
|
float: none;
|
|
}
|
|
|
|
.site-icon-crop-wrapper {
|
|
max-width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.site-icon-crop-wrapper img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|