mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 08:19:38 +01:00
50cb2c5e28
WordPress no longer supports many old old browsers: https://make.wordpress.org/core/2017/04/23/target-browser-coverage/ This also removes alot of no longer necessary CSS. It served us well, but we are never getting back together with IE8,9,10. So, in the (paraphrased) words of Taylor Swift: I remember when we dropped support the first time Saying, "This is it, I've had enough, " 'cause like We hadn't seen many users in a month When you said you needed flexbox. (What?) Then you postMessage again and say "IE8, I miss you and I swear I'm gonna change, trust me." Remember how that lasted for a day? I say, "I hate the box model, " we break up, you call me, "I love css-grids." Ooh, we called it off again last night But ooh, this time I'm telling you, I'm telling you We are never ever ever supporting IE 8,9,10, We are never ever ever supporting IE 8,9,10, You go talk to EDGE, talk to my FIREFOX, talk to CHROME But we are never ever ever ever getting back together Like, ever... Fixes #37651. Props stunnedbeast, netweb, jorbin. Built from https://develop.svn.wordpress.org/trunk@41062 git-svn-id: http://core.svn.wordpress.org/trunk@40912 1a063a9b-81f0-0310-95a4-ce76da25c4cd
55 lines
1023 B
CSS
55 lines
1023 B
CSS
/*------------------------------------------------------------------------------
|
|
28.0 - Site Icon
|
|
------------------------------------------------------------------------------*/
|
|
|
|
.site-icon-preview .favicon-preview {
|
|
margin: 5px 0 20px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
max-width: 180px;
|
|
}
|
|
|
|
.site-icon-preview .favicon,
|
|
.site-icon-preview .browser-title {
|
|
height: 16px;
|
|
right: 88px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 16px;
|
|
}
|
|
|
|
.site-icon-preview .favicon {
|
|
width: 16px;
|
|
}
|
|
|
|
.site-icon-preview .browser-title {
|
|
right: 109px;
|
|
width: 72px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.site-icon-preview .app-icon-preview {
|
|
background-color: #000;
|
|
border-radius: 16px;
|
|
height: 64px;
|
|
overflow: hidden;
|
|
width: 64px;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* rtl:ignore */
|
|
.site-icon-preview .favicon,
|
|
.site-icon-preview .app-icon-preview {
|
|
direction: ltr;
|
|
}
|
|
|
|
.customize-control-site_icon .favicon-preview {
|
|
float: right;
|
|
margin-left: 12px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.customize-control-site_icon .app-icon-preview {
|
|
margin-top: 9px;
|
|
}
|