mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
11c3695c77
We'll be using it for two distinct tasks: * Core CSS files will keep prefixes. `grunt autoprefixer:core` will update files directly in src/ as a pre-commit step, rather than doing it on build. * Color CSS files will receive prefixes when they are built. This commit: * Adds prefixes we were missing to core CSS. * Removes prefixes that we no longer need from core CSS. * Removes all prefixes from colors CSS. props ocean90. fixes #27078. Built from https://develop.svn.wordpress.org/trunk@27174 git-svn-id: http://core.svn.wordpress.org/trunk@27038 1a063a9b-81f0-0310-95a4-ce76da25c4cd
101 lines
2.0 KiB
CSS
101 lines
2.0 KiB
CSS
/*------------------------------------------------------------------------------
|
|
Interim login dialog
|
|
------------------------------------------------------------------------------*/
|
|
|
|
#wp-auth-check-wrap.hidden {
|
|
display: none;
|
|
}
|
|
|
|
#wp-auth-check-wrap #wp-auth-check-bg {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
background: #000;
|
|
opacity: 0.5;
|
|
filter: alpha(opacity=50);
|
|
z-index: 1000000;
|
|
}
|
|
|
|
#wp-auth-check-wrap #wp-auth-check {
|
|
position: fixed;
|
|
right: 50%;
|
|
overflow: hidden;
|
|
top: 40px;
|
|
bottom: 20px;
|
|
max-height: 415px;
|
|
width: 380px;
|
|
margin: 0 -190px 0 0;
|
|
padding: 30px 0 0;
|
|
background-color: #eee;
|
|
z-index: 1000001;
|
|
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3);
|
|
box-shadow: 0 3px 6px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
#wp-auth-check-wrap.fallback #wp-auth-check {
|
|
max-height: 180px;
|
|
overflow: auto;
|
|
}
|
|
|
|
#wp-auth-check-wrap #wp-auth-check-form {
|
|
background: url(../images/wpspin-2x.gif) no-repeat center center;
|
|
-webkit-background-size: 16px 16px;
|
|
background-size: 16px 16px;
|
|
height: 100%;
|
|
}
|
|
|
|
#wp-auth-check-wrap #wp-auth-check-form iframe {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-check-close {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
height: 22px;
|
|
width: 22px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-check-close:before {
|
|
content: '\f158';
|
|
display: block !important;
|
|
font: normal 20px/1 'dashicons';
|
|
speak: none;
|
|
height: 22px;
|
|
margin: 2px 0;
|
|
text-align: center;
|
|
width: 22px;
|
|
color: #777;
|
|
-webkit-font-smoothing: antialiased !important;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-check-close:hover:before {
|
|
color: #0074a2;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-check-close:focus {
|
|
outline: 1px dotted #888;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-fallback-expired {
|
|
outline: 0;
|
|
}
|
|
|
|
#wp-auth-check-wrap .wp-auth-fallback {
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
padding: 0 25px;
|
|
display: none;
|
|
}
|
|
|
|
#wp-auth-check-wrap.fallback .wp-auth-fallback,
|
|
#wp-auth-check-wrap.fallback .wp-auth-check-close {
|
|
display: block;
|
|
}
|