Switch to .min for compressed JS and CSS files.
* This moves our "development" versions from .dev.js to .js (same for css). * The compressed version then moves from .js to .min.js (same for css). By switching to the standard .min convention, it sets expectations for developers, and works nicely with existing tools such as ack. fixes #21633. git-svn-id: http://core.svn.wordpress.org/trunk@21592 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -1 +1,201 @@
|
||||
#wpadminbar *{font-family:Tahoma,Arial,Helvetica,sans-serif}#wpadminbar{direction:rtl;font-family:Tahoma,Arial,Helvetica,sans-serif;left:auto;right:0}#wpadminbar .quicklinks{border-left:0;border-right:1px solid transparent}#wpadminbar .quicklinks ul{text-align:right}#wpadminbar li{float:right}#wpadminbar .quicklinks>ul>li{border-right:0;border-left:1px solid #555}#wpadminbar .quicklinks>ul>li>a,#wpadminbar .quicklinks>ul>li>.ab-empty-item{border-right:0;border-left:1px solid #333}#wpadminbar .quicklinks .ab-top-secondary>li{border-left:0;border-right:1px solid #333;float:left}#wpadminbar .quicklinks .ab-top-secondary>li>a,#wpadminbar .quicklinks .ab-top-secondary>li>.ab-empty-item{border-right:1px solid #555;border-left:0}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{margin:0 -1px 0 0}#wpadminbar.ie7 .menupop .ab-sub-wrapper,#wpadminbar.ie7 .shortlink-input{left:auto;right:0}#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper{right:auto;left:0;margin:0 0 0 -1px}#wpadminbar .menupop li:hover>.ab-sub-wrapper,#wpadminbar .menupop li.hover>.ab-sub-wrapper{margin-left:0;margin-right:100%}#wpadminbar .ab-top-secondary .menupop li:hover>.ab-sub-wrapper,#wpadminbar .ab-top-secondary .menupop li.hover>.ab-sub-wrapper{margin-left:inherit;margin-right:0;left:100%;right:inherit}#wpadminbar .menupop .menupop>.ab-item{background-position:5% -46px;padding-left:2em;padding-right:1em}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item{background-position:95% -20px;padding-left:1em;padding-right:2em}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary{right:0;left:auto}#wpadminbar .ab-top-secondary{float:left;right:auto;left:0}#wpadminbar ul li:last-child,#wpadminbar ul li:last-child .ab-item{border-left:0}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin-right:88px;margin-left:16px}#wp-admin-bar-user-actions>li>.ab-item{padding-left:0;padding-right:8px}#wp-admin-bar-user-info .avatar{left:auto;right:-72px}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{margin-left:-1px;margin-right:4px}#wpadminbar .quicklinks li img.blavatar{margin-right:0;margin-left:4px}#wpadminbar #adminbarsearch .adminbar-input{font-family:Tahoma,Arial,Helvetica,sans-serif;padding:0 24px 0 3px;margin:0;background-position:50% 2px}#wpadminbar #adminbarsearch .adminbar-input:focus,#wpadminbar.ie7 #adminbarsearch .adminbar-input{background-position:99% 2px}#wpadminbar .ab-icon{float:right}.ie7 #wp-admin-bar-wp-logo>.ab-item .ab-icon{position:static}#wpadminbar.ie7 .ab-icon{float:left;left:12px}#wpadminbar .ab-label{margin-left:0;margin-right:4px;float:left}#wpadminbar.ie7 .ab-label{margin-right:0}#wpadminbar.ie7 #wp-admin-bar-comments>a{min-width:25px}#wpadminbar a:hover .ab-comments-icon-arrow{border-right-color:#bbb}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{right:0}#wpadminbar .quicklinks .menupop ul li a{position:relative}* html #wpadminbar .quicklinks ul li a{float:right}
|
||||
#wpadminbar * {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
#wpadminbar {
|
||||
direction: rtl;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks {
|
||||
border-left: 0;
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks ul {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wpadminbar li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li {
|
||||
border-right: 0;
|
||||
border-left: 1px solid #555;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li > a,
|
||||
#wpadminbar .quicklinks > ul > li > .ab-empty-item {
|
||||
border-right: 0;
|
||||
border-left: 1px solid #333;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li {
|
||||
border-left: 0;
|
||||
border-right: 1px solid #333;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > a,
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item {
|
||||
border-right: 1px solid #555;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
margin: 0 -1px 0 0;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .menupop .ab-sub-wrapper,
|
||||
#wpadminbar.ie7 .shortlink-input {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
|
||||
right: auto;
|
||||
left: 0;
|
||||
margin: 0 0 0 -1px;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: 0px;
|
||||
margin-right: 100%;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .ab-top-secondary .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: inherit;
|
||||
margin-right: 0;
|
||||
left: 100%;
|
||||
right: inherit;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item {
|
||||
background-position: 5% -46px;
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
|
||||
background-position: 95% -20px;
|
||||
padding-left: 1em;
|
||||
padding-right: 2em;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary {
|
||||
float: left;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#wpadminbar ul li:last-child,
|
||||
#wpadminbar ul li:last-child .ab-item {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* My Account
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
|
||||
margin-right: 88px;
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-actions > li > .ab-item {
|
||||
padding-left: 0;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-info .avatar {
|
||||
left: auto;
|
||||
right: -72px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
margin-left: -1px;
|
||||
margin-right: 4px
|
||||
}
|
||||
|
||||
/*
|
||||
* My Sites
|
||||
*/
|
||||
#wpadminbar .quicklinks li img.blavatar {
|
||||
margin-right: 0px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Search
|
||||
*/
|
||||
#wpadminbar #adminbarsearch .adminbar-input {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
padding: 0 24px 0 3px;
|
||||
margin: 0;
|
||||
background-position: 50% 2px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:focus,
|
||||
#wpadminbar.ie7 #adminbarsearch .adminbar-input {
|
||||
background-position: 99% 2px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Comments icon
|
||||
*/
|
||||
#wpadminbar .ab-icon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ie7 #wp-admin-bar-wp-logo > .ab-item .ab-icon {
|
||||
position: static;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .ab-icon {
|
||||
float: left;
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
margin-left: 0px;
|
||||
margin-right: 4px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .ab-label {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 #wp-admin-bar-comments > a {
|
||||
min-width: 25px;
|
||||
}
|
||||
|
||||
#wpadminbar a:hover .ab-comments-icon-arrow {
|
||||
border-right-color: #bbb;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li a {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/**
|
||||
* IE 6-targeted rules
|
||||
*/
|
||||
* html #wpadminbar .quicklinks ul li a {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@@ -1,201 +0,0 @@
|
||||
#wpadminbar * {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
#wpadminbar {
|
||||
direction: rtl;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks {
|
||||
border-left: 0;
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks ul {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wpadminbar li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li {
|
||||
border-right: 0;
|
||||
border-left: 1px solid #555;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li > a,
|
||||
#wpadminbar .quicklinks > ul > li > .ab-empty-item {
|
||||
border-right: 0;
|
||||
border-left: 1px solid #333;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li {
|
||||
border-left: 0;
|
||||
border-right: 1px solid #333;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > a,
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item {
|
||||
border-right: 1px solid #555;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
margin: 0 -1px 0 0;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .menupop .ab-sub-wrapper,
|
||||
#wpadminbar.ie7 .shortlink-input {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
|
||||
right: auto;
|
||||
left: 0;
|
||||
margin: 0 0 0 -1px;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: 0px;
|
||||
margin-right: 100%;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .ab-top-secondary .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: inherit;
|
||||
margin-right: 0;
|
||||
left: 100%;
|
||||
right: inherit;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item {
|
||||
background-position: 5% -46px;
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
|
||||
background-position: 95% -20px;
|
||||
padding-left: 1em;
|
||||
padding-right: 2em;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary {
|
||||
float: left;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#wpadminbar ul li:last-child,
|
||||
#wpadminbar ul li:last-child .ab-item {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* My Account
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
|
||||
margin-right: 88px;
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-actions > li > .ab-item {
|
||||
padding-left: 0;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-info .avatar {
|
||||
left: auto;
|
||||
right: -72px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
margin-left: -1px;
|
||||
margin-right: 4px
|
||||
}
|
||||
|
||||
/*
|
||||
* My Sites
|
||||
*/
|
||||
#wpadminbar .quicklinks li img.blavatar {
|
||||
margin-right: 0px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Search
|
||||
*/
|
||||
#wpadminbar #adminbarsearch .adminbar-input {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
padding: 0 24px 0 3px;
|
||||
margin: 0;
|
||||
background-position: 50% 2px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:focus,
|
||||
#wpadminbar.ie7 #adminbarsearch .adminbar-input {
|
||||
background-position: 99% 2px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Comments icon
|
||||
*/
|
||||
#wpadminbar .ab-icon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.ie7 #wp-admin-bar-wp-logo > .ab-item .ab-icon {
|
||||
position: static;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .ab-icon {
|
||||
float: left;
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
margin-left: 0px;
|
||||
margin-right: 4px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .ab-label {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 #wp-admin-bar-comments > a {
|
||||
min-width: 25px;
|
||||
}
|
||||
|
||||
#wpadminbar a:hover .ab-comments-icon-arrow {
|
||||
border-right-color: #bbb;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li a {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/**
|
||||
* IE 6-targeted rules
|
||||
*/
|
||||
* html #wpadminbar .quicklinks ul li a {
|
||||
float: right;
|
||||
}
|
||||
1
wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
1
wp-includes/css/admin-bar-rtl.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
#wpadminbar *{font-family:Tahoma,Arial,Helvetica,sans-serif}#wpadminbar{direction:rtl;font-family:Tahoma,Arial,Helvetica,sans-serif;left:auto;right:0}#wpadminbar .quicklinks{border-left:0;border-right:1px solid transparent}#wpadminbar .quicklinks ul{text-align:right}#wpadminbar li{float:right}#wpadminbar .quicklinks>ul>li{border-right:0;border-left:1px solid #555}#wpadminbar .quicklinks>ul>li>a,#wpadminbar .quicklinks>ul>li>.ab-empty-item{border-right:0;border-left:1px solid #333}#wpadminbar .quicklinks .ab-top-secondary>li{border-left:0;border-right:1px solid #333;float:left}#wpadminbar .quicklinks .ab-top-secondary>li>a,#wpadminbar .quicklinks .ab-top-secondary>li>.ab-empty-item{border-right:1px solid #555;border-left:0}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{margin:0 -1px 0 0}#wpadminbar.ie7 .menupop .ab-sub-wrapper,#wpadminbar.ie7 .shortlink-input{left:auto;right:0}#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper{right:auto;left:0;margin:0 0 0 -1px}#wpadminbar .menupop li:hover>.ab-sub-wrapper,#wpadminbar .menupop li.hover>.ab-sub-wrapper{margin-left:0;margin-right:100%}#wpadminbar .ab-top-secondary .menupop li:hover>.ab-sub-wrapper,#wpadminbar .ab-top-secondary .menupop li.hover>.ab-sub-wrapper{margin-left:inherit;margin-right:0;left:100%;right:inherit}#wpadminbar .menupop .menupop>.ab-item{background-position:5% -46px;padding-left:2em;padding-right:1em}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item{background-position:95% -20px;padding-left:1em;padding-right:2em}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary{right:0;left:auto}#wpadminbar .ab-top-secondary{float:left;right:auto;left:0}#wpadminbar ul li:last-child,#wpadminbar ul li:last-child .ab-item{border-left:0}#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions>li{margin-right:88px;margin-left:16px}#wp-admin-bar-user-actions>li>.ab-item{padding-left:0;padding-right:8px}#wp-admin-bar-user-info .avatar{left:auto;right:-72px}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{margin-left:-1px;margin-right:4px}#wpadminbar .quicklinks li img.blavatar{margin-right:0;margin-left:4px}#wpadminbar #adminbarsearch .adminbar-input{font-family:Tahoma,Arial,Helvetica,sans-serif;padding:0 24px 0 3px;margin:0;background-position:50% 2px}#wpadminbar #adminbarsearch .adminbar-input:focus,#wpadminbar.ie7 #adminbarsearch .adminbar-input{background-position:99% 2px}#wpadminbar .ab-icon{float:right}.ie7 #wp-admin-bar-wp-logo>.ab-item .ab-icon{position:static}#wpadminbar.ie7 .ab-icon{float:left;left:12px}#wpadminbar .ab-label{margin-left:0;margin-right:4px;float:left}#wpadminbar.ie7 .ab-label{margin-right:0}#wpadminbar.ie7 #wp-admin-bar-comments>a{min-width:25px}#wpadminbar a:hover .ab-comments-icon-arrow{border-right-color:#bbb}#wpadminbar .menupop .ab-sub-wrapper,#wpadminbar .shortlink-input{right:0}#wpadminbar .quicklinks .menupop ul li a{position:relative}* html #wpadminbar .quicklinks ul li a{float:right}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,644 +0,0 @@
|
||||
#wpadminbar * {
|
||||
height: auto;
|
||||
width: auto;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: static;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
line-height: 1;
|
||||
font: normal 13px/28px sans-serif;
|
||||
color: #ccc;
|
||||
text-shadow: #444 0px -1px 0px;
|
||||
}
|
||||
|
||||
#wpadminbar ul li:before,
|
||||
#wpadminbar ul li:after {
|
||||
content: normal;
|
||||
}
|
||||
|
||||
#wpadminbar a,
|
||||
#wpadminbar a:hover,
|
||||
#wpadminbar a img,
|
||||
#wpadminbar a img:hover {
|
||||
outline: none;
|
||||
border: none;
|
||||
text-decoration: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
#wpadminbar {
|
||||
direction: ltr;
|
||||
color: #ccc;
|
||||
font: normal 13px/28px sans-serif;
|
||||
height: 28px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
min-width: 600px; /* match the min-width of the body in wp-admin.css */
|
||||
z-index: 99999;
|
||||
background: #464646;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
|
||||
background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: linear-gradient(to top, #373737 0, #464646 5px);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-sub-wrapper,
|
||||
#wpadminbar ul,
|
||||
#wpadminbar ul li {
|
||||
background: none;
|
||||
clear: none;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
text-indent: 0;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks {
|
||||
border-left: 1px solid transparent;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks ul {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#wpadminbar li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-empty-item {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li {
|
||||
border-right: 1px solid #555;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks > ul > li > a,
|
||||
#wpadminbar .quicklinks > ul > li > .ab-empty-item {
|
||||
border-right: 1px solid #333;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li {
|
||||
border-left: 1px solid #333;
|
||||
border-right: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > a,
|
||||
#wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item {
|
||||
border-left: 1px solid #555;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks a,
|
||||
#wpadminbar .quicklinks .ab-empty-item,
|
||||
#wpadminbar .shortlink-input {
|
||||
height: 28px;
|
||||
display: block;
|
||||
padding: 0 12px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
margin: 0 0 0 -1px;
|
||||
padding: 0;
|
||||
-webkit-box-shadow: 0 4px 4px rgba(0,0,0,0.2);
|
||||
box-shadow: 0 4px 4px rgba(0,0,0,0.2);
|
||||
background: #fff;
|
||||
display: none;
|
||||
position: absolute;
|
||||
float: none;
|
||||
border-width: 0 1px 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: #dfdfdf;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 .menupop .ab-sub-wrapper,
|
||||
#wpadminbar.ie7 .shortlink-input {
|
||||
top: 28px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
|
||||
min-width: 100%;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
|
||||
right: 0;
|
||||
left: auto;
|
||||
margin: 0 -1px 0 0;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-sub-wrapper > .ab-submenu:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu {
|
||||
padding: 6px 0;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
}
|
||||
|
||||
#wpadminbar .selected .shortlink-input {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li {
|
||||
float: none;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li a strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li .ab-item,
|
||||
#wpadminbar .quicklinks .menupop ul li a strong,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li .ab-item,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li .ab-item,
|
||||
#wpadminbar .shortlink-input {
|
||||
line-height: 26px;
|
||||
height: 26px;
|
||||
text-shadow: none;
|
||||
white-space: nowrap;
|
||||
min-width: 140px;
|
||||
}
|
||||
|
||||
#wpadminbar .shortlink-input {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
#wpadminbar.nojs li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar li.hover > .ab-sub-wrapper {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: 100%;
|
||||
margin-top: -33px;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .ab-top-secondary .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: 0;
|
||||
left: inherit;
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-menu > li:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li > .ab-item:focus,
|
||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus {
|
||||
color: #fafafa;
|
||||
background: #222;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222));
|
||||
background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: -moz-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: -o-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: linear-gradient(to top, #3a3a3a, #222);
|
||||
}
|
||||
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
|
||||
background: #fff;
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
border-right-color: transparent;
|
||||
border-left-color: transparent;
|
||||
}
|
||||
|
||||
#wpadminbar .hover .ab-label,
|
||||
#wpadminbar.nojq .ab-item:focus .ab-label {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop.hover .ab-label {
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop li:hover,
|
||||
#wpadminbar .menupop li.hover,
|
||||
#wpadminbar .quicklinks .menupop .ab-item:focus,
|
||||
#wpadminbar .quicklinks .ab-top-menu .menupop .ab-item:focus {
|
||||
background-color: #eaf2fa;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item {
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li a,
|
||||
#wpadminbar .quicklinks .menupop ul li a strong,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
|
||||
color: #21759B;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item {
|
||||
display: block;
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: 95% -20px;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 2em;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: 5% -46px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
|
||||
display: block;
|
||||
position: relative;
|
||||
right: auto;
|
||||
margin: 0;
|
||||
background: #eee;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop .ab-sub-secondary > li:hover,
|
||||
#wpadminbar .quicklinks .menupop .ab-sub-secondary > li.hover,
|
||||
#wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus {
|
||||
background-color: #dfdfdf;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks a span#ab-updates {
|
||||
background: #eee;
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
display: inline;
|
||||
padding: 2px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
-webkit-border-radius: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks a:hover span#ab-updates {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary {
|
||||
float: right;
|
||||
background: #464646;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
|
||||
background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: linear-gradient(to top, #373737 0, #464646 5px);
|
||||
}
|
||||
|
||||
#wpadminbar ul li:last-child,
|
||||
#wpadminbar ul li:last-child .ab-item {
|
||||
border-right: 0;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* My Account
|
||||
*/
|
||||
#wp-admin-bar-my-account > ul {
|
||||
min-width: 198px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-my-account.with-avatar > ul {
|
||||
min-width: 270px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-actions > li {
|
||||
margin-left: 16px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
|
||||
margin-left: 88px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-actions > li > .ab-item {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info {
|
||||
margin-top: 6px;
|
||||
margin-bottom: 15px;
|
||||
height: auto;
|
||||
background: none;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-info .avatar {
|
||||
position: absolute;
|
||||
left: -72px;
|
||||
top: 4px;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info a {
|
||||
background: none;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info span {
|
||||
background: none;
|
||||
padding: 0;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name,
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
text-shadow: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .display-name {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
color: #999;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 1px solid #999;
|
||||
padding: 0;
|
||||
background: #eee;
|
||||
line-height: 24px;
|
||||
vertical-align: middle;
|
||||
margin: -3px 0 0 6px;
|
||||
float: none;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/*
|
||||
* My Sites
|
||||
*/
|
||||
#wpadminbar .quicklinks li img.blavatar {
|
||||
vertical-align: middle;
|
||||
margin: -3px 4px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Search
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-search .ab-item {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-search .ab-item {
|
||||
/* default background */
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch {
|
||||
height: 28px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input {
|
||||
font: 13px/24px sans-serif;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
border: none;
|
||||
padding: 0 3px 0 23px;
|
||||
margin: 0;
|
||||
color: #ccc;
|
||||
text-shadow: #444 0px -1px 0px;
|
||||
background-color: rgba( 255, 255, 255, 0 );
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: 3px 2px;
|
||||
background-repeat: no-repeat;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
|
||||
-webkit-transition-duration: 400ms;
|
||||
-webkit-transition-property: width, background;
|
||||
-webkit-transition-timing-function: ease;
|
||||
-moz-transition-duration: 400ms;
|
||||
-moz-transition-property: width, background;
|
||||
-moz-transition-timing-function: ease;
|
||||
-o-transition-duration: 400ms;
|
||||
-o-transition-property: width, background;
|
||||
-o-transition-timing-function: ease;
|
||||
}
|
||||
|
||||
#wpadminbar.ie7 #adminbarsearch .adminbar-input {
|
||||
margin-top: 1px;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:focus {
|
||||
color: #555;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
width: 200px;
|
||||
background-color: rgba( 255, 255, 255, 0.9 );
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
#wpadminbar.ie8 #adminbarsearch .adminbar-input {
|
||||
background-color: #464646;
|
||||
}
|
||||
|
||||
#wpadminbar.ie8 #adminbarsearch .adminbar-input:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/* Two rules to ensure browser recognition */
|
||||
#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Site Menu
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-appearance {
|
||||
border-top: none;
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Site Menu
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-appearance {
|
||||
border-top: none;
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
/**
|
||||
* ICONS
|
||||
*/
|
||||
#wpadminbar .ab-icon {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/**
|
||||
* WP Logo icon
|
||||
*/
|
||||
#wp-admin-bar-wp-logo > .ab-item .ab-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-top: 4px;
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: 0 -76px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#wpadminbar.nojs #wp-admin-bar-wp-logo:hover > .ab-item .ab-icon,
|
||||
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
|
||||
background-position: 0 -104px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates icon
|
||||
*/
|
||||
#wp-admin-bar-updates > .ab-item .ab-icon {
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: -2px -159px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Comments icon
|
||||
*/
|
||||
#wp-admin-bar-comments > .ab-item .ab-icon {
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: -1px -134px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#wpadminbar span.count-0 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add New icon
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-new-content > .ab-item .ab-icon {
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20111130);
|
||||
background-position: -2px -182px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add New icon
|
||||
*/
|
||||
#wpadminbar.nojs #wp-admin-bar-new-content:hover > .ab-item .ab-icon,
|
||||
#wpadminbar #wp-admin-bar-new-content.hover > .ab-item .ab-icon {
|
||||
background-position: -2px -203px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Customize support classes
|
||||
*/
|
||||
.no-customize-support .hide-if-no-customize,
|
||||
.customize-support .hide-if-customize {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retina display 2x icons
|
||||
*/
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
||||
#wpadminbar .menupop .menupop > .ab-item,
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item,
|
||||
#wpadminbar #adminbarsearch .adminbar-input,
|
||||
#wp-admin-bar-wp-logo > .ab-item .ab-icon,
|
||||
#wp-admin-bar-updates > .ab-item .ab-icon,
|
||||
#wp-admin-bar-comments > .ab-item .ab-icon,
|
||||
#wpadminbar #wp-admin-bar-new-content > .ab-item .ab-icon {
|
||||
background-image: url(../images/admin-bar-sprite-2x.png?d=20120516);
|
||||
background-size: 20px 220px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Skip link */
|
||||
#wpadminbar .screen-reader-text,
|
||||
#wpadminbar .screen-reader-text span {
|
||||
position: absolute;
|
||||
left: -1000em;
|
||||
top: -1000em;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#wpadminbar .screen-reader-shortcut:focus {
|
||||
left: 5px;
|
||||
top: 5px;
|
||||
height: auto;
|
||||
width: auto;
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
background: #fff;
|
||||
color: #000;
|
||||
border: 2px solid #333;
|
||||
border-radius: 3px;
|
||||
z-index: 100000;
|
||||
text-shadow: none;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
#wpadminbar a.screen-reader-shortcut {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/**
|
||||
* IE 6-targeted rules
|
||||
*/
|
||||
* html #wpadminbar {
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
* html #wpadminbar .quicklinks ul li a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
* html #wpadminbar .menupop a span {
|
||||
background-image: none;
|
||||
}
|
||||
1
wp-includes/css/admin-bar.min.css
vendored
Normal file
1
wp-includes/css/admin-bar.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
1
wp-includes/css/editor.min.css
vendored
Normal file
1
wp-includes/css/editor.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +1,139 @@
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#f5f5f5;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming/API
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden { display: none; }
|
||||
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
|
||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
||||
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
||||
.ui-helper-clearfix { display: inline-block; }
|
||||
/* required comment for clearfix to work in Opera \*/
|
||||
* html .ui-helper-clearfix { height:1%; }
|
||||
.ui-helper-clearfix { display:block; }
|
||||
/* end clearfix */
|
||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled { cursor: default !important; }
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
||||
|
||||
/*
|
||||
* jQuery UI Resizable
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Resizable#theming
|
||||
*/
|
||||
.ui-resizable { position: relative;}
|
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
|
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
|
||||
|
||||
/*
|
||||
* jQuery UI Dialog
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Dialog#theming
|
||||
*/
|
||||
.wp-dialog { position: absolute; width: 300px; overflow: hidden; }
|
||||
.wp-dialog .ui-dialog-titlebar { position: relative; }
|
||||
.wp-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
||||
.wp-dialog .ui-dialog-content { position: relative; border: 0; padding: 0; background: none; overflow: auto; zoom: 1; }
|
||||
.wp-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
||||
.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
||||
.wp-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
||||
.wp-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
||||
|
||||
/* WP jQuery Dialog Theme */
|
||||
.wp-dialog {
|
||||
border: 1px solid #999;
|
||||
-webkit-box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
|
||||
box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-title {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 1px 0 2px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar {
|
||||
padding: 0 1em;
|
||||
background-color: #444;
|
||||
font-weight: bold;
|
||||
font-size: 11px;
|
||||
line-height: 18px;
|
||||
color: #e5e5e5;
|
||||
}
|
||||
|
||||
.wp-dialog {
|
||||
background-color: #f5f5f5;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar {
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar-close {
|
||||
position: absolute;
|
||||
width: 29px;
|
||||
height: 16px;
|
||||
top: 2px;
|
||||
right: 6px;
|
||||
background: url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar-close:hover,
|
||||
.wp-dialog .ui-dialog-titlebar-close:focus {
|
||||
background-position: -87px -32px;
|
||||
}
|
||||
|
||||
.ui-widget-overlay {
|
||||
background-color: #000;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
|
||||
@@ -1,139 +0,0 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Theming/API
|
||||
*/
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden { display: none; }
|
||||
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
|
||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
||||
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
||||
.ui-helper-clearfix { display: inline-block; }
|
||||
/* required comment for clearfix to work in Opera \*/
|
||||
* html .ui-helper-clearfix { height:1%; }
|
||||
.ui-helper-clearfix { display:block; }
|
||||
/* end clearfix */
|
||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled { cursor: default !important; }
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
||||
|
||||
/*
|
||||
* jQuery UI Resizable
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Resizable#theming
|
||||
*/
|
||||
.ui-resizable { position: relative;}
|
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
|
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
|
||||
|
||||
/*
|
||||
* jQuery UI Dialog
|
||||
*
|
||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://docs.jquery.com/UI/Dialog#theming
|
||||
*/
|
||||
.wp-dialog { position: absolute; width: 300px; overflow: hidden; }
|
||||
.wp-dialog .ui-dialog-titlebar { position: relative; }
|
||||
.wp-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
||||
.wp-dialog .ui-dialog-content { position: relative; border: 0; padding: 0; background: none; overflow: auto; zoom: 1; }
|
||||
.wp-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
||||
.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
||||
.wp-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
||||
.wp-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
||||
|
||||
/* WP jQuery Dialog Theme */
|
||||
.wp-dialog {
|
||||
border: 1px solid #999;
|
||||
-webkit-box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
|
||||
box-shadow: 0px 0px 16px rgba( 0,0,0,0.3 );
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-title {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 1px 0 2px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar {
|
||||
padding: 0 1em;
|
||||
background-color: #444;
|
||||
font-weight: bold;
|
||||
font-size: 11px;
|
||||
line-height: 18px;
|
||||
color: #e5e5e5;
|
||||
}
|
||||
|
||||
.wp-dialog {
|
||||
background-color: #f5f5f5;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar {
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar-close {
|
||||
position: absolute;
|
||||
width: 29px;
|
||||
height: 16px;
|
||||
top: 2px;
|
||||
right: 6px;
|
||||
background: url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wp-dialog .ui-dialog-titlebar-close:hover,
|
||||
.wp-dialog .ui-dialog-titlebar-close:focus {
|
||||
background-position: -87px -32px;
|
||||
}
|
||||
|
||||
.ui-widget-overlay {
|
||||
background-color: #000;
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
1
wp-includes/css/jquery-ui-dialog.min.css
vendored
Normal file
1
wp-includes/css/jquery-ui-dialog.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui-helper-clearfix{display:inline-block}/*\*/* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}/**/.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.wp-dialog{position:absolute;width:300px;overflow:hidden}.wp-dialog .ui-dialog-titlebar{position:relative}.wp-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.wp-dialog .ui-dialog-content{position:relative;border:0;padding:0;background:0;overflow:auto;zoom:1}.wp-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.wp-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.wp-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.wp-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}.wp-dialog{border:1px solid #999;-webkit-box-shadow:0 0 16px rgba(0,0,0,0.3);box-shadow:0 0 16px rgba(0,0,0,0.3)}.wp-dialog .ui-dialog-title{display:block;text-align:center;padding:1px 0 2px}.wp-dialog .ui-dialog-titlebar{padding:0 1em;background-color:#444;font-weight:bold;font-size:11px;line-height:18px;color:#e5e5e5}.wp-dialog{background-color:#f5f5f5;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px}.wp-dialog .ui-dialog-titlebar{-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.wp-dialog .ui-dialog-titlebar-close{position:absolute;width:29px;height:16px;top:2px;right:6px;background:url('../js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif') no-repeat -87px -16px;padding:0}.wp-dialog .ui-dialog-titlebar-close:hover,.wp-dialog .ui-dialog-titlebar-close:focus{background-position:-87px -32px}.ui-widget-overlay{background-color:#000;opacity:.6;filter:alpha(opacity=60)}
|
||||
@@ -1 +1,187 @@
|
||||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border-style:solid;border-width:1px;border-color:#dfdfdf;border-color:rgba(0,0,0,.125);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.19);box-shadow:0 2px 4px rgba(0,0,0,.19)}.wp-pointer-content h3{position:relative;margin:0 0 5px;padding:15px 18px 14px 60px;line-height:1.4em;font-size:14px;color:#fff;border-radius:3px 3px 0 0;text-shadow:0 -1px 0 rgba(0,0,0,0.3);background:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9)}.wp-pointer-content h3:before{position:absolute;top:0;left:15px;content:' ';width:36px;height:100%;background:url('../images/icon-pointer-flag.png') 0 50% no-repeat}.wp-pointer-content p{padding:0 15px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:right;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-left:3px;position:relative}.wp-pointer-buttons a.close:before{content:' ';width:10px;height:100%;position:absolute;left:-10px;background:url('../images/xit.gif') 0 50% no-repeat}.wp-pointer-buttons a.close:hover:before{background-position:100% 50%}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{padding-right:13px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{left:50px;width:30px;height:14px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px;width:14px;height:30px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;background-position:0 0}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;background-position:0 -46px}.wp-pointer-left .wp-pointer-arrow{left:0;background-position:0 -15px}.wp-pointer-right .wp-pointer-arrow{right:0;background-position:-16px -15px}.rtl .wp-pointer-content h3{padding-right:60px;padding-left:18px}.rtl .wp-pointer-content h3:before{right:15px}.rtl .wp-pointer-buttons a{float:left}.rtl .wp-pointer-buttons a.close{padding-right:3px;padding-left:0}.rtl .wp-pointer-buttons a.close:before{right:-10px}.rtl .wp-pointer-top .wp-pointer-arrow,.rtl .wp-pointer-bottom .wp-pointer-arrow,.rtl .wp-pointer-undefined .wp-pointer-arrow{right:50px}
|
||||
.wp-pointer {
|
||||
}
|
||||
|
||||
.wp-pointer-content {
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
|
||||
background: #fff;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
/* Fallback for non-rgba-compliant browsers */
|
||||
border-color: #dfdfdf;
|
||||
/* Use rgba to look better against non-white backgrounds. */
|
||||
border-color: rgba(0,0,0,.125);
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.19);
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,.19);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3 {
|
||||
position: relative;
|
||||
margin: 0 0 5px;
|
||||
padding: 15px 18px 14px 60px;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
border-radius: 3px 3px 0 0;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
background: #8cc1e9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
|
||||
background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 15px;
|
||||
content: ' ';
|
||||
width: 36px;
|
||||
height: 100%;
|
||||
background: url('../images/icon-pointer-flag.png') 0 50% no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-content p {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons {
|
||||
margin: 0;
|
||||
padding: 5px 15px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close {
|
||||
padding-left:3px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:before {
|
||||
content: ' ';
|
||||
width:10px;
|
||||
height:100%;
|
||||
position:absolute;
|
||||
left:-10px;
|
||||
background:url('../images/xit.gif') 0 50% no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:hover:before {
|
||||
background-position:100% 50%;
|
||||
}
|
||||
|
||||
/* The arrow base class must take up no space, even with transparent borders. */
|
||||
.wp-pointer-arrow,
|
||||
.wp-pointer-arrow-inner {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow {
|
||||
z-index: 10;
|
||||
background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow-inner {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
/* Make Room for the Arrow! */
|
||||
.wp-pointer-top,
|
||||
.wp-pointer-undefined {
|
||||
padding-top: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom {
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-left {
|
||||
padding-left: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-right {
|
||||
padding-right: 13px;
|
||||
}
|
||||
|
||||
/* Base Size & Positioning */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-bottom .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
left: 50px;
|
||||
width: 30px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow,
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
top: 50%;
|
||||
margin-top: -15px;
|
||||
width: 14px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
/* Arrow Sprite */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
top: 0;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
background-position: 0 -46px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
left: 0;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
right:0;
|
||||
background-position:-16px -15px;
|
||||
}
|
||||
|
||||
/* - RTL
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.rtl .wp-pointer-content h3 {
|
||||
padding-right: 60px;
|
||||
padding-left: 18px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-content h3:before {
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a.close {
|
||||
padding-right:3px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a.close:before {
|
||||
right:-10px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-top .wp-pointer-arrow,
|
||||
.rtl .wp-pointer-bottom .wp-pointer-arrow,
|
||||
.rtl .wp-pointer-undefined .wp-pointer-arrow {
|
||||
right: 50px;
|
||||
}
|
||||
|
||||
@@ -1,187 +0,0 @@
|
||||
.wp-pointer {
|
||||
}
|
||||
|
||||
.wp-pointer-content {
|
||||
padding: 0 0 10px;
|
||||
position: relative;
|
||||
font-size: 13px;
|
||||
|
||||
background: #fff;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
/* Fallback for non-rgba-compliant browsers */
|
||||
border-color: #dfdfdf;
|
||||
/* Use rgba to look better against non-white backgrounds. */
|
||||
border-color: rgba(0,0,0,.125);
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.19);
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,.19);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3 {
|
||||
position: relative;
|
||||
margin: 0 0 5px;
|
||||
padding: 15px 18px 14px 60px;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
border-radius: 3px 3px 0 0;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
background: #8cc1e9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
|
||||
background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 15px;
|
||||
content: ' ';
|
||||
width: 36px;
|
||||
height: 100%;
|
||||
background: url('../images/icon-pointer-flag.png') 0 50% no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-content p {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons {
|
||||
margin: 0;
|
||||
padding: 5px 15px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close {
|
||||
padding-left:3px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:before {
|
||||
content: ' ';
|
||||
width:10px;
|
||||
height:100%;
|
||||
position:absolute;
|
||||
left:-10px;
|
||||
background:url('../images/xit.gif') 0 50% no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:hover:before {
|
||||
background-position:100% 50%;
|
||||
}
|
||||
|
||||
/* The arrow base class must take up no space, even with transparent borders. */
|
||||
.wp-pointer-arrow,
|
||||
.wp-pointer-arrow-inner {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow {
|
||||
z-index: 10;
|
||||
background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow-inner {
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
/* Make Room for the Arrow! */
|
||||
.wp-pointer-top,
|
||||
.wp-pointer-undefined {
|
||||
padding-top: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom {
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-left {
|
||||
padding-left: 13px;
|
||||
}
|
||||
|
||||
.wp-pointer-right {
|
||||
padding-right: 13px;
|
||||
}
|
||||
|
||||
/* Base Size & Positioning */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-bottom .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
left: 50px;
|
||||
width: 30px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow,
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
top: 50%;
|
||||
margin-top: -15px;
|
||||
width: 14px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
/* Arrow Sprite */
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
top: 0;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
background-position: 0 -46px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
left: 0;
|
||||
background-position: 0 -15px;
|
||||
}
|
||||
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
right:0;
|
||||
background-position:-16px -15px;
|
||||
}
|
||||
|
||||
/* - RTL
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.rtl .wp-pointer-content h3 {
|
||||
padding-right: 60px;
|
||||
padding-left: 18px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-content h3:before {
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a.close {
|
||||
padding-right:3px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-buttons a.close:before {
|
||||
right:-10px;
|
||||
}
|
||||
|
||||
.rtl .wp-pointer-top .wp-pointer-arrow,
|
||||
.rtl .wp-pointer-bottom .wp-pointer-arrow,
|
||||
.rtl .wp-pointer-undefined .wp-pointer-arrow {
|
||||
right: 50px;
|
||||
}
|
||||
1
wp-includes/css/wp-pointer.min.css
vendored
Normal file
1
wp-includes/css/wp-pointer.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border-style:solid;border-width:1px;border-color:#dfdfdf;border-color:rgba(0,0,0,.125);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.19);box-shadow:0 2px 4px rgba(0,0,0,.19)}.wp-pointer-content h3{position:relative;margin:0 0 5px;padding:15px 18px 14px 60px;line-height:1.4em;font-size:14px;color:#fff;border-radius:3px 3px 0 0;text-shadow:0 -1px 0 rgba(0,0,0,0.3);background:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9)}.wp-pointer-content h3:before{position:absolute;top:0;left:15px;content:' ';width:36px;height:100%;background:url('../images/icon-pointer-flag.png') 0 50% no-repeat}.wp-pointer-content p{padding:0 15px}.wp-pointer-buttons{margin:0;padding:5px 15px;overflow:auto}.wp-pointer-buttons a{float:right;display:inline-block;text-decoration:none}.wp-pointer-buttons a.close{padding-left:3px;position:relative}.wp-pointer-buttons a.close:before{content:' ';width:10px;height:100%;position:absolute;left:-10px;background:url('../images/xit.gif') 0 50% no-repeat}.wp-pointer-buttons a.close:hover:before{background-position:100% 50%}.wp-pointer-arrow,.wp-pointer-arrow-inner{position:absolute;width:0;height:0}.wp-pointer-arrow{z-index:10;background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat}.wp-pointer-arrow-inner{z-index:20}.wp-pointer-top,.wp-pointer-undefined{padding-top:13px}.wp-pointer-bottom{padding-bottom:13px}.wp-pointer-left{padding-left:13px}.wp-pointer-right{padding-right:13px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-bottom .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{left:50px;width:30px;height:14px}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px;width:14px;height:30px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;background-position:0 0}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;background-position:0 -46px}.wp-pointer-left .wp-pointer-arrow{left:0;background-position:0 -15px}.wp-pointer-right .wp-pointer-arrow{right:0;background-position:-16px -15px}.rtl .wp-pointer-content h3{padding-right:60px;padding-left:18px}.rtl .wp-pointer-content h3:before{right:15px}.rtl .wp-pointer-buttons a{float:left}.rtl .wp-pointer-buttons a.close{padding-right:3px;padding-left:0}.rtl .wp-pointer-buttons a.close:before{right:-10px}.rtl .wp-pointer-top .wp-pointer-arrow,.rtl .wp-pointer-bottom .wp-pointer-arrow,.rtl .wp-pointer-undefined .wp-pointer-arrow{right:50px}
|
||||
Reference in New Issue
Block a user