mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more. see #25858. props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen. Built from https://develop.svn.wordpress.org/trunk@26072 git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8e0733a6c7
commit
69d432410a
@ -53,6 +53,7 @@ _wp_admin_html_begin();
|
||||
wp_enqueue_style( 'colors' );
|
||||
wp_enqueue_style( 'ie' );
|
||||
wp_enqueue_script('utils');
|
||||
wp_enqueue_script( 'svg-painter' );
|
||||
|
||||
$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
|
||||
?>
|
||||
@ -145,7 +146,13 @@ $admin_body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace(
|
||||
if ( wp_is_mobile() )
|
||||
$admin_body_class .= ' mobile';
|
||||
|
||||
$admin_body_class .= ' no-customize-support';
|
||||
if ( is_multisite() )
|
||||
$admin_body_class .= ' multisite';
|
||||
|
||||
if ( is_network_admin() )
|
||||
$admin_body_class .= ' network-admin';
|
||||
|
||||
$admin_body_class .= ' no-customize-support no-svg';
|
||||
|
||||
?>
|
||||
</head>
|
||||
|
File diff suppressed because it is too large
Load Diff
1
wp-admin/css/colors-classic.min.css
vendored
1
wp-admin/css/colors-classic.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/colors-fresh.min.css
vendored
2
wp-admin/css/colors-fresh.min.css
vendored
File diff suppressed because one or more lines are too long
@ -6,43 +6,16 @@ body {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#customize-info .accordion-section-content {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#customize-info .preview-notice {
|
||||
font-size: 13px;
|
||||
line-height: 24px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#customize-info .theme-name {
|
||||
font-size: 20px;
|
||||
font-weight: 200;
|
||||
line-height: 24px;
|
||||
color: #333;
|
||||
display: block;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
#customize-info .theme-screenshot {
|
||||
width: 258px;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#customize-info .theme-description {
|
||||
margin-top: 1em;
|
||||
color: #777;
|
||||
line-height: 20px;
|
||||
#customize-controls h3 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#customize-controls .submit {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#customize-theme-controls > ul,
|
||||
#customize-theme-controls .accordion-section-content {
|
||||
margin: 0;
|
||||
#customize-controls .description {
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
#customize-header-actions .button-primary {
|
||||
@ -59,6 +32,117 @@ body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#customize-info {
|
||||
border: none;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
#customize-info .accordion-section-title {
|
||||
background-color: #fff;
|
||||
color: #666666;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
#customize-info.open .accordion-section-title,
|
||||
#customize-info .accordion-section-title:hover,
|
||||
#customize-info .accordion-section-title:focus {
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
#customize-info.open .accordion-section-title:after,
|
||||
#customize-info .accordion-section-title:hover:after,
|
||||
#customize-info .accordion-section-title:focus:after {
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
#customize-info.open .accordion-section-title {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
#customize-info .preview-notice {
|
||||
font-size: 13px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
#customize-info .theme-name {
|
||||
font-size: 20px;
|
||||
font-weight: 200;
|
||||
line-height: 24px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#customize-info .theme-screenshot {
|
||||
width: 258px;
|
||||
}
|
||||
|
||||
#customize-info .theme-description {
|
||||
margin-top: 1em;
|
||||
color: #666666;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
#customize-theme-controls {
|
||||
-webkit-box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section {
|
||||
border: none;
|
||||
}
|
||||
|
||||
#customize-theme-controls .accordion-section-title {
|
||||
color: #555555;
|
||||
background-color: #fff;
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
#customize-theme-controls .accordion-section-content {
|
||||
color: #555555;
|
||||
background: white;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section:hover .accordion-section-title,
|
||||
#customize-theme-controls .control-section .accordion-section-title:hover,
|
||||
#customize-theme-controls .control-section.open .accordion-section-title,
|
||||
#customize-theme-controls .control-section .accordion-section-title:focus {
|
||||
color: #555555;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.js .control-section:hover .accordion-section-title,
|
||||
.js .control-section .accordion-section-title:hover,
|
||||
.js .control-section.open .accordion-section-title,
|
||||
.js .control-section .accordion-section-title:focus {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section:hover .accordion-section-title::after,
|
||||
#customize-theme-controls .control-section .accordion-section-title:hover::after,
|
||||
#customize-theme-controls .control-section.open .accordion-section-title::after,
|
||||
#customize-theme-controls .control-section .accordion-section-title:focus::after {
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section.open {
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section.open .accordion-section-title {
|
||||
border-bottom-color: #eeeeee !important;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section:last-of-type.open,
|
||||
#customize-theme-controls .control-section:last-of-type .accordion-section-title {
|
||||
border-bottom-color: #ddd;
|
||||
}
|
||||
|
||||
#customize-theme-controls > ul,
|
||||
#customize-theme-controls .accordion-section-content {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.customize-control {
|
||||
width: 100%;
|
||||
float: left;
|
||||
@ -66,19 +150,10 @@ body {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.customize-control-title {
|
||||
display: block;
|
||||
line-height: 24px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.customize-control select,
|
||||
.customize-control input[type="text"],
|
||||
.customize-control input[type="radio"],
|
||||
.customize-control input[type="checkbox"],
|
||||
.customize-control-color .color-picker,
|
||||
.customize-control-checkbox label,
|
||||
.customize-control-upload div {
|
||||
.customize-control input[type="checkbox"] {
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
@ -95,6 +170,20 @@ body {
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.customize-control-title {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.customize-control-color .color-picker,
|
||||
.customize-control-checkbox label,
|
||||
.customize-control-upload div {
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.customize-control-checkbox input {
|
||||
margin-right: 5px;
|
||||
}
|
||||
@ -109,7 +198,7 @@ body {
|
||||
}
|
||||
|
||||
.customize-control-radio label {
|
||||
line-height: 20px;
|
||||
line-height: 32px;
|
||||
}
|
||||
|
||||
.customize-control-radio input {
|
||||
@ -121,39 +210,42 @@ body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#customize-theme-controls .accordion-section-title:hover:after,
|
||||
#customize-theme-controls .accordion-section-title:focus:after {
|
||||
border-color: #eee transparent;
|
||||
.wp-full-overlay-sidebar {
|
||||
background: #eeeeee;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section:hover .accordion-section-title,
|
||||
#customize-theme-controls .control-section .accordion-section-title:hover,
|
||||
#customize-theme-controls .control-section.open .accordion-section-title,
|
||||
#customize-theme-controls .control-section .accordion-section-title:focus {
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 #333;
|
||||
background: #808080;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: linear-gradient(to top, #6d6d6d, #808080);
|
||||
border-left: 1px solid #808080;
|
||||
border-right: 1px solid #808080;
|
||||
.collapse-sidebar {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section.accordion-section:hover,
|
||||
#customize-theme-controls .control-section.accordion-section.open {
|
||||
border-top-color: #808080;
|
||||
.collapse-sidebar .collapse-sidebar-label {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section.open .accordion-section-title {
|
||||
border-bottom: 1px solid #6d6d6d;
|
||||
.collapse-sidebar .collapse-sidebar-arrow:before {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/*
|
||||
* Style for custom settings
|
||||
*/
|
||||
.collapse-sidebar:hover .collapse-sidebar-label,
|
||||
.collapse-sidebar:hover .collapse-sidebar-arrow:before {
|
||||
color: #0074a2;
|
||||
}
|
||||
|
||||
.collapse-sidebar:active,
|
||||
.collapse-sidebar:active .collapse-sidebar-label,
|
||||
.collapse-sidebar:active .collapse-sidebar-arrow:before {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.collapsed .collapse-sidebar-arrow:before {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* Style for custom settings */
|
||||
|
||||
/*
|
||||
* Dropdowns
|
||||
@ -163,9 +255,6 @@ body {
|
||||
display: block;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.accordion-section .dropdown-content {
|
||||
@ -176,11 +265,7 @@ body {
|
||||
line-height: 16px;
|
||||
margin-right: 16px;
|
||||
padding: 4px 5px;
|
||||
background-color: #eee;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-border-radius: 3px 0 0 3px;
|
||||
border-radius: 3px 0 0 3px;
|
||||
|
||||
border: 2px solid #eeeeee;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
@ -191,47 +276,33 @@ body {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 15px;
|
||||
|
||||
border-color: #ccc;
|
||||
border-style: solid;
|
||||
border-width: 1px 1px 1px 0;
|
||||
-webkit-border-radius: 0 3px 3px 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
width: 20px;
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
.customize-control .dropdown-arrow:after {
|
||||
content: '';
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: #ccc transparent;
|
||||
border-style: solid;
|
||||
border-width: 4px 4px 0 4px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -1px;
|
||||
right: 4px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.accordion-section .dropdown:hover .dropdown-content,
|
||||
.customize-control .dropdown:hover .dropdown-arrow {
|
||||
border-color: #aaa;
|
||||
}
|
||||
|
||||
.accordion-section .dropdown:hover .dropdown-arrow:after {
|
||||
border-color: #aaa transparent;
|
||||
content: "\f140";
|
||||
font: normal 20px/1 'dashicons';
|
||||
speak: none;
|
||||
display: block;
|
||||
padding: 0;
|
||||
text-indent: 0;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-decoration: none !important;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.customize-control .dropdown-status {
|
||||
color: #333;
|
||||
background: #eeeeee;
|
||||
display: none;
|
||||
max-width: 112px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
/*
|
||||
* Color Picker
|
||||
*/
|
||||
/* Color Picker */
|
||||
.customize-control-color .color-picker-hex {
|
||||
display: none;
|
||||
}
|
||||
@ -246,12 +317,16 @@ body {
|
||||
}
|
||||
|
||||
.customize-control-color .dropdown .dropdown-content {
|
||||
background-color: #fff;
|
||||
border: 1px solid rgba( 0, 0, 0, 0.15 );
|
||||
background-color: #555555;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.customize-control-color .dropdown:hover .dropdown-content {
|
||||
border-color: rgba( 0, 0, 0, 0.25 );
|
||||
border-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.customize-control-color .iris-picker {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
.accordion-section input[type="text"].color-picker-hex {
|
||||
@ -265,6 +340,7 @@ body {
|
||||
.accordion-section input[type="text"].color-picker-hex:focus::-webkit-input-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.accordion-section input[type="text"].color-picker-hex:-moz-placeholder {
|
||||
color: #999;
|
||||
}
|
||||
@ -308,31 +384,44 @@ body {
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library ul {
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
border-bottom: 1px solid #ddd;
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library li {
|
||||
color: #999;
|
||||
color: #ccc;
|
||||
float: left;
|
||||
padding: 3px 5px;
|
||||
padding: 3px 15px;
|
||||
margin: 0;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
border-width: 1px 1px 0 1px;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library li.library-selected {
|
||||
margin-bottom: -1px;
|
||||
padding-bottom: 4px;
|
||||
color: #666666;
|
||||
border-color: #ddd;
|
||||
border-bottom-color: #fff;
|
||||
}
|
||||
|
||||
color: #777;
|
||||
background: #fdfdfd;
|
||||
border-color: #dfdfdf;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0 ;
|
||||
.accordion-section .customize-control-image .library .thumbnail {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library .thumbnail img {
|
||||
display: block;
|
||||
max-width: 90%;
|
||||
max-height: 80px;
|
||||
margin: 5px auto;
|
||||
padding: 2px;
|
||||
background: #666666;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library .thumbnail:hover img {
|
||||
background-color: #2ea2cc;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library-content {
|
||||
@ -346,26 +435,6 @@ body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library .thumbnail {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library .thumbnail:hover img {
|
||||
border-color: #21759b;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-image .library .thumbnail img {
|
||||
display: block;
|
||||
max-width: 90%;
|
||||
max-height: 80px;
|
||||
|
||||
margin: 5px auto;
|
||||
padding: 4px;
|
||||
background: #fff;
|
||||
border: 1px solid #dfdfdf;
|
||||
}
|
||||
|
||||
.accordion-section .customize-control-upload .upload-fallback,
|
||||
.accordion-section .customize-control-image .upload-fallback {
|
||||
display: none;
|
||||
@ -378,7 +447,6 @@ body {
|
||||
border: 3px dashed #dfdfdf;
|
||||
margin: 5px auto;
|
||||
text-align: center;
|
||||
color: #777;
|
||||
position: relative;
|
||||
cursor: default;
|
||||
}
|
||||
@ -419,9 +487,7 @@ body {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle cheaters.
|
||||
*/
|
||||
/** Handle cheaters. */
|
||||
body.cheatin {
|
||||
min-width: 0;
|
||||
background: #f9f9f9;
|
||||
@ -433,8 +499,8 @@ body.cheatin p {
|
||||
margin: 0 auto;
|
||||
padding: 2em;
|
||||
font-size: 14px;
|
||||
background: #fff;
|
||||
background: #555555;
|
||||
border: 1px solid #dfdfdf;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
2
wp-admin/css/customize-controls.min.css
vendored
2
wp-admin/css/customize-controls.min.css
vendored
File diff suppressed because one or more lines are too long
@ -18,6 +18,25 @@ body#media-upload ul#sidemenu {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#media-upload:after { /* clearfix */
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#media-upload,
|
||||
#media-upload .media-item .slidetoggle {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#media-upload .slidetoggle {
|
||||
border-top-color: #dfdfdf;
|
||||
}
|
||||
|
||||
#media-upload input[type="radio"] {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
form {
|
||||
margin: 1em;
|
||||
}
|
||||
|
2
wp-admin/css/media.min.css
vendored
2
wp-admin/css/media.min.css
vendored
@ -1 +1 @@
|
||||
div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:700;position:relative;border-bottom-width:1px;border-bottom-style:solid}body#media-upload ul#sidemenu{font-weight:400;margin:0 5px;left:0;bottom:-1px;float:none;overflow:hidden}form{margin:1em}#search-filter{text-align:right}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:0;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center left}.image-align-left-label{background:url(../images/align-left.png) no-repeat center left}.image-align-center-label{background:url(../images/align-center.png) no-repeat center left}.image-align-right-label{background:url(../images/align-right.png) no-repeat center left}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#library-form .progress,#gallery-form .progress,.insert-gallery,.describe.startopen,.describe.startclosed{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required{text-decoration:none;border:0}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload p.help,#media-upload label.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:right;font-size:11px;margin:10px 10px 0}.menu_order_input{border:1px solid #ddd;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #aaa;opacity:.6;filter:alpha(opacity=60)}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{width:626px;border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 5px 5px 0}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #DADADA}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #DADADA;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#5A5A5A}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:left}#gallery-settings .describe{padding:5px;width:615px;clear:both;cursor:default}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#464646;margin-right:15px}#gallery-settings .align .field label{margin:0 1em 0 3px}#gallery-settings p.ml-submit{border-top:1px solid #dfdfdf}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 25px -8px 0;text-align:right;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-left:5px}#sort-buttons span{margin-right:25px}p.media-types{margin:1em}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}
|
||||
div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:700;position:relative;border-bottom-width:1px;border-bottom-style:solid}body#media-upload ul#sidemenu{font-weight:400;margin:0 5px;left:0;bottom:-1px;float:none;overflow:hidden}#media-upload:after{content:"";display:table;clear:both}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}#media-upload input[type=radio]{padding:0}form{margin:1em}#search-filter{text-align:right}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:0;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center left}.image-align-left-label{background:url(../images/align-left.png) no-repeat center left}.image-align-center-label{background:url(../images/align-center.png) no-repeat center left}.image-align-right-label{background:url(../images/align-right.png) no-repeat center left}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#library-form .progress,#gallery-form .progress,.insert-gallery,.describe.startopen,.describe.startclosed{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required{text-decoration:none;border:0}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload p.help,#media-upload label.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:right;font-size:11px;margin:10px 10px 0}.menu_order_input{border:1px solid #ddd;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #aaa;opacity:.6;filter:alpha(opacity=60)}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{width:626px;border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 5px 5px 0}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #DADADA}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #DADADA;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#5A5A5A}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:left}#gallery-settings .describe{padding:5px;width:615px;clear:both;cursor:default}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#464646;margin-right:15px}#gallery-settings .align .field label{margin:0 1em 0 3px}#gallery-settings p.ml-submit{border-top:1px solid #dfdfdf}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 25px -8px 0;text-align:right;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-left:5px}#sort-buttons span{margin-right:25px}p.media-types{margin:1em}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}
|
@ -129,6 +129,10 @@ input[type=password] {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
input[type=checkbox]:checked:before {
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
input[type="text"].ui-autocomplete-loading {
|
||||
background: transparent url('../images/loading.gif') no-repeat left center;
|
||||
}
|
||||
@ -246,12 +250,11 @@ form.upgrade .hint {
|
||||
|
||||
#screen-meta-links {
|
||||
margin-right: 0;
|
||||
margin-left: 24px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#screen-meta {
|
||||
margin-right: 5px;
|
||||
margin-left: 15px;
|
||||
margin: 0 0 -2px 20px;
|
||||
}
|
||||
|
||||
#screen-options-link-wrap,
|
||||
@ -261,11 +264,20 @@ form.upgrade .hint {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
#screen-meta-links a {
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
#screen-meta-links a.show-settings {
|
||||
background-position: left -33px;
|
||||
padding-right: 6px;
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
#wpbody-content #screen-meta-links a.show-settings {
|
||||
padding: 1px 10px 0 0;
|
||||
}
|
||||
|
||||
.toggle-arrow {
|
||||
background-position: top right;
|
||||
}
|
||||
@ -311,6 +323,8 @@ form.upgrade .hint {
|
||||
|
||||
.contextual-help-tabs {
|
||||
float: right;
|
||||
margin-right: 4px;
|
||||
width: 146px;
|
||||
}
|
||||
|
||||
.contextual-help-tabs a {
|
||||
@ -326,7 +340,7 @@ form.upgrade .hint {
|
||||
.contextual-help-tabs .active,
|
||||
.contextual-help-tabs-wrap {
|
||||
border-left: 0;
|
||||
border-right-width: 1px;
|
||||
border-right-width: 2px;
|
||||
}
|
||||
|
||||
.help-tab-content {
|
||||
@ -350,12 +364,12 @@ form.upgrade .hint {
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.folded #wpcontent {
|
||||
margin-left: 0;
|
||||
margin-left: inherit;
|
||||
margin-right: 52px;
|
||||
}
|
||||
|
||||
.folded.wp-admin #wpfooter {
|
||||
margin-left: 15px;
|
||||
margin-left: inherit;
|
||||
margin-right: 52px;
|
||||
}
|
||||
|
||||
@ -369,11 +383,24 @@ form.upgrade .hint {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#adminmenu li .wp-submenu {
|
||||
ul#adminmenu .wp-submenu {
|
||||
left: auto;
|
||||
right: 146px;
|
||||
right: 150px;
|
||||
}
|
||||
|
||||
ul#adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
right: auto;
|
||||
}
|
||||
|
||||
ul#adminmenu .wp-has-current-submenu ul > li > a {
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
ul#adminmenu a.wp-has-current-submenu:after,
|
||||
ul#adminmenu > li.current > a.current:after {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.folded #adminmenu .wp-submenu.sub-open,
|
||||
.folded #adminmenu .opensub .wp-submenu,
|
||||
@ -383,23 +410,23 @@ form.upgrade .hint {
|
||||
.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
|
||||
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||
left: auto;
|
||||
right: 32px;
|
||||
right: 36px;
|
||||
}
|
||||
|
||||
#adminmenu div.wp-menu-image,
|
||||
ul#adminmenu div.wp-menu-image,
|
||||
.folded #adminmenu div.wp-menu-image {
|
||||
float: right;
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu a,
|
||||
#adminmenu li li a,
|
||||
ul#adminmenu .wp-submenu a,
|
||||
ul#adminmenu li li a,
|
||||
.folded #adminmenu .wp-not-current-submenu li a {
|
||||
padding-left: 0;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#adminmenu .wp-not-current-submenu li a {
|
||||
ul#adminmenu .wp-not-current-submenu li a {
|
||||
padding-left: 0;
|
||||
padding-right: 18px;
|
||||
}
|
||||
@ -407,8 +434,8 @@ form.upgrade .hint {
|
||||
.wp-menu-arrow {
|
||||
right: 0;
|
||||
|
||||
-moz-transform: translate( -139px );
|
||||
-webkit-transform: translate( -139px );
|
||||
-moz-transform: translate( -139px );
|
||||
-o-transform: translate( -139px );
|
||||
-ms-transform: translate( -139px );
|
||||
transform: translate( -139px );
|
||||
@ -418,42 +445,40 @@ form.upgrade .hint {
|
||||
right: -20px;
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-arrow div {
|
||||
ul#adminmenu .wp-menu-arrow div {
|
||||
left: -8px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
||||
-moz-transform: translate( -138px );
|
||||
ul#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
||||
-webkit-transform: translate( -138px );
|
||||
-moz-transform: translate( -138px );
|
||||
-o-transform: translate( -138px );
|
||||
-ms-transform: translate( -138px );
|
||||
transform: translate( -138px );
|
||||
}
|
||||
|
||||
.folded #adminmenu li .wp-menu-arrow {
|
||||
-moz-transform: translate( -26px );
|
||||
-webkit-transform: translate( -26px );
|
||||
-moz-transform: translate( -26px );
|
||||
-o-transform: translate( -26px );
|
||||
-ms-transform: translate( -26px );
|
||||
transform: translate( -26px );
|
||||
}
|
||||
|
||||
#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
|
||||
ul#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
|
||||
border-style: solid solid none none;
|
||||
border-width: 1px 1px 0 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-image img {
|
||||
ul#adminmenu .wp-menu-image img {
|
||||
padding: 7px 7px 0 0;
|
||||
}
|
||||
|
||||
#adminmenu .wp-submenu .wp-submenu-head {
|
||||
ul#adminmenu .wp-submenu .wp-submenu-head {
|
||||
padding: 5px 10px 5px 4px;
|
||||
-webkit-border-top-right-radius: 0;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
|
||||
.folded #adminmenu li.wp-has-current-submenu .wp-submenu {
|
||||
@ -469,8 +494,13 @@ form.upgrade .hint {
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
|
||||
#adminmenu .awaiting-mod,
|
||||
#adminmenu span.update-plugins,
|
||||
ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
ul#adminmenu .awaiting-mod,
|
||||
ul#adminmenu span.update-plugins,
|
||||
#sidemenu li a span.update-plugins {
|
||||
font-family: Tahoma, Arial, sans-serif;
|
||||
margin-left: 0;
|
||||
@ -481,6 +511,19 @@ form.upgrade .hint {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#collapse-button div:after {
|
||||
left: 3px;
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.folded #collapse-button div:after {
|
||||
-webkit-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
/* Auto-folding of the admin menu */
|
||||
@media only screen and (max-width: 900px) {
|
||||
.auto-fold #wpcontent {
|
||||
@ -506,7 +549,7 @@ form.upgrade .hint {
|
||||
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
|
||||
.no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu {
|
||||
left: auto;
|
||||
right: 32px;
|
||||
right: 36px;
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu .wp-not-current-submenu li a {
|
||||
@ -515,8 +558,8 @@ form.upgrade .hint {
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu li .wp-menu-arrow {
|
||||
-moz-transform: translate( -27px );
|
||||
-webkit-transform: translate( -27px );
|
||||
-moz-transform: translate( -27px );
|
||||
-o-transform: translate( -27px );
|
||||
-ms-transform: translate( -27px );
|
||||
transform: translate( -27px );
|
||||
@ -534,6 +577,18 @@ form.upgrade .hint {
|
||||
border-top-right-radius: 0;
|
||||
border-top-left-radius: 3px;
|
||||
}
|
||||
|
||||
.auto-fold #collapse-button div:after {
|
||||
-webkit-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
|
||||
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
-webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
||||
}
|
||||
}
|
||||
|
||||
/* List table styles */
|
||||
@ -541,10 +596,6 @@ form.upgrade .hint {
|
||||
font-family: Tahoma, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.post-com-count {
|
||||
background-image: url('../images/bubble_bg-rtl.gif');
|
||||
}
|
||||
|
||||
.column-response .post-com-count {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
@ -762,6 +813,19 @@ th.sorted a span {
|
||||
|
||||
.view-switch {
|
||||
float: left;
|
||||
margin-left: 16px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.view-switch>a:before {
|
||||
float: right !important;
|
||||
margin-left: 5px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.view-switch>a+a:before {
|
||||
margin-left: none;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.filter {
|
||||
@ -889,6 +953,7 @@ th.sorted a span {
|
||||
float: right;
|
||||
}
|
||||
|
||||
p.submit,
|
||||
.submitbox .submit {
|
||||
text-align: right;
|
||||
}
|
||||
@ -902,6 +967,17 @@ th.sorted a span {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
#post-body #visibility:before,
|
||||
.curtime #timestamp:before {
|
||||
padding-right: 0;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#misc-publishing-actions label[for="post_status"]:before {
|
||||
padding-right: 0;
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
#normal-sortables .postbox .submit {
|
||||
float: left;
|
||||
}
|
||||
@ -910,6 +986,10 @@ th.sorted a span {
|
||||
margin: 0 125px 0 5px;
|
||||
}
|
||||
|
||||
.category-tabs {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
#side-sortables .comments-box thead th,
|
||||
#normal-sortables .comments-box thead th {
|
||||
font-style: normal;
|
||||
@ -946,7 +1026,6 @@ th.sorted a span {
|
||||
.curtime #timestamp {
|
||||
background-position: right top;
|
||||
padding-left: 0;
|
||||
padding-right: 18px;
|
||||
}
|
||||
|
||||
.compat-attachment-fields th {
|
||||
@ -1108,49 +1187,14 @@ a.post-state-format {
|
||||
|
||||
label.post-format-icon {
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
padding-left: 0px;
|
||||
padding-right: 21px;
|
||||
margin-right: 0;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-standard {
|
||||
background-position: 100% 0;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-image {
|
||||
background-position: 100% -32px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-gallery {
|
||||
background-position: 100% -64px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-audio {
|
||||
background-position: 100% -96px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-video {
|
||||
background-position: 100% -128px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-chat {
|
||||
background-position: 100% -160px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-status {
|
||||
background-position: 100% -192px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-aside {
|
||||
background-position: 100% -224px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-quote {
|
||||
background-position: 100% -256px;
|
||||
}
|
||||
|
||||
.post-format-icon.post-format-link {
|
||||
background-position: 100% -288px;
|
||||
.post-format-icon:before {
|
||||
margin-left: 7px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
@ -1426,6 +1470,29 @@ form.upgrade .hint {
|
||||
margin: 2px 0 5px 3px;
|
||||
}
|
||||
|
||||
#submitcomment #timestamp:before {
|
||||
left: 1px;
|
||||
}
|
||||
|
||||
.post-com-count:after { /* draw bubble connector using CSS! */
|
||||
margin-left: auto;
|
||||
margin-right: 8px;
|
||||
border-right: none !important;
|
||||
border-left: 5px solid transparent;
|
||||
}
|
||||
|
||||
th .comment-grey-bubble:before {
|
||||
content: '\f101'; /* todo: should be changed to a rtl variant - mitcho */
|
||||
left: auto;
|
||||
right: -4px;
|
||||
}
|
||||
|
||||
#the-comment-list .unapproved th.check-column input {
|
||||
margin-left: 0;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
16.0 - Themes
|
||||
------------------------------------------------------------------------------*/
|
||||
@ -1563,6 +1630,12 @@ h3.available-themes {
|
||||
margin: 0 0 -1px 6px;
|
||||
}
|
||||
|
||||
.wrap h2.nav-tab-wrapper,
|
||||
.wrap h3.nav-tab-wrapper {
|
||||
padding-left: 0;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
h2 .nav-tab {
|
||||
font-family: Tahoma, Arial, sans-serif;
|
||||
}
|
||||
@ -1578,10 +1651,14 @@ h2 .nav-tab {
|
||||
}
|
||||
|
||||
#wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title {
|
||||
padding-right: 0;
|
||||
padding-right: 9px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message:before {
|
||||
margin: 0 -2px 0 8px;
|
||||
}
|
||||
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
18.0 - Users
|
||||
@ -1606,9 +1683,34 @@ h2 .nav-tab {
|
||||
19.0 - Tools
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.press-this .posting {
|
||||
margin-right: 0;
|
||||
margin-left: 252px;
|
||||
}
|
||||
|
||||
.press-this #publish,
|
||||
.press-this-sidebar {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.press-this #header-logo,
|
||||
.press-this #wphead h1 {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.press-this .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
background: transparent url('../images/resize-rtl.gif') no-repeat scroll right bottom;
|
||||
width: 12px;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.pressthis a span:before {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
.pressthis a span {
|
||||
background-position: right 5px;
|
||||
padding: 8px 27px 8px 11px;
|
||||
padding: 0px 3px 8px 12px;
|
||||
}
|
||||
|
||||
.pressthis a:after {
|
||||
@ -1660,7 +1762,8 @@ h2 .nav-tab {
|
||||
|
||||
#wpcontent,
|
||||
#wpfooter {
|
||||
margin-right: 165px;
|
||||
padding-left: inherit;
|
||||
margin-right: 170px;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
@ -1706,21 +1809,37 @@ h2 .nav-tab {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.two-col div,
|
||||
.about-wrap .feature-section.three-col div {
|
||||
margin-right: 0;
|
||||
margin-left: 4.999999999%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.col .last-feature {
|
||||
.about-wrap .feature-section.three-col h4 {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.three-col img {
|
||||
margin-right: 5px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section div p img {
|
||||
float: left;
|
||||
.about-wrap .feature-section.three-col .last-feature {
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section img {
|
||||
margin: 0 0 10px 0.7%;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.images-stagger-right img {
|
||||
float: left;
|
||||
margin: 0 2em 12px 5px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.images-stagger-left img {
|
||||
float: right;
|
||||
margin: 0 5px 12px 2em;
|
||||
}
|
||||
|
||||
.about-wrap li.wp-person,
|
||||
@ -1730,6 +1849,19 @@ h2 .nav-tab {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.about-wrap .feature-section img.image-66 {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.images-stagger-right img.image-66 {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section.images-stagger-left img.image-66 {
|
||||
margin-left: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
23.0 - Misc
|
||||
@ -1763,7 +1895,7 @@ h2 .nav-tab {
|
||||
|
||||
}
|
||||
.tagchecklist span a {
|
||||
margin: 4px -10px 0 0;
|
||||
margin: 0 -17px 0 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
@ -1871,7 +2003,8 @@ table .column-rating {
|
||||
.wp-full-overlay-sidebar:after {
|
||||
right: auto;
|
||||
left: 0;
|
||||
box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1);
|
||||
-webkit-box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.wp-full-overlay.collapsed,
|
||||
@ -1944,7 +2077,7 @@ table .column-rating {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#adminmenu {
|
||||
ul#adminmenu {
|
||||
clear: right;
|
||||
}
|
||||
|
||||
@ -2047,7 +2180,7 @@ ol.ol-decimal {
|
||||
|
||||
.wrap {
|
||||
margin-right: 0;
|
||||
margin-left: 15px;
|
||||
margin: 10px 2px 0 20px;
|
||||
}
|
||||
|
||||
.wrap h2,
|
||||
@ -2153,13 +2286,13 @@ a.rsswidget,
|
||||
|
||||
/* Recent Comments */
|
||||
#the-comment-list .comment-item {
|
||||
padding: 1em 70px 1em 10px;
|
||||
padding: 1em 10px 1em 10px;
|
||||
}
|
||||
|
||||
#the-comment-list .comment-item .avatar {
|
||||
float: right;
|
||||
margin-left: 0;
|
||||
margin-right: -60px;
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/* Feeds */
|
||||
@ -2190,6 +2323,17 @@ a.rsswidget,
|
||||
margin: 4px 0 0 6px;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .input-text-wrap {
|
||||
margin-right: 0;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
#dashboard_quick_press .wp-media-buttons,
|
||||
#dashboard_quick_press .textarea-wrap {
|
||||
margin-left: 0;
|
||||
margin-right: 1px;
|
||||
}
|
||||
|
||||
/* Recent Drafts */
|
||||
#dashboard_recent_drafts h4 abbr {
|
||||
font-family: Tahoma, Arial, sans-serif;
|
||||
@ -2646,6 +2790,11 @@ h3.tb {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.plugin-editor-php #submit,
|
||||
.theme-editor-php #submit {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#template textarea,
|
||||
#docs-list {
|
||||
direction: ltr;
|
||||
@ -2669,6 +2818,17 @@ h3.tb {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
/* Meta/post boxes */
|
||||
|
||||
.js .meta-box-sortables .postbox:hover .handlediv:before {
|
||||
left: 12px;
|
||||
right: auto;
|
||||
}
|
||||
.js #dashboard-widgets h3 .postbox-title-action {
|
||||
left: 33px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
/* widgets */
|
||||
/* 2 column liquid layout */
|
||||
div.widget-liquid-left {
|
||||
@ -2716,14 +2876,8 @@ div.sidebar-name h3 {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Press This */
|
||||
.press-this-sidebar {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.press-this #header-logo,
|
||||
.press-this #wphead h1 {
|
||||
float: right;
|
||||
.widgets-holder-wrap .sidebar-name-arrow {
|
||||
margin: -1px 0 0 26px;
|
||||
}
|
||||
|
||||
/* RTL */
|
||||
@ -2793,12 +2947,9 @@ div.sidebar-name h3 {
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.post-com-count {
|
||||
background-image: url('../images/bubble_bg-rtl-2x.gif');
|
||||
background-size: 18px 100px;
|
||||
}
|
||||
|
||||
#content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
#content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize,
|
||||
.press-this .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom;
|
||||
background-size: 11px 11px;
|
||||
}
|
||||
@ -2823,11 +2974,6 @@ div.sidebar-name h3 {
|
||||
background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
|
||||
}
|
||||
|
||||
.wp-slider .ui-slider-handle:before {
|
||||
background-image: url(../images/arrows-pr-2x.png);
|
||||
background-size: 16px 102px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* =Localized CSS
|
||||
|
2
wp-admin/css/wp-admin-rtl.min.css
vendored
2
wp-admin/css/wp-admin-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
2
wp-admin/css/wp-admin.min.css
vendored
2
wp-admin/css/wp-admin.min.css
vendored
File diff suppressed because one or more lines are too long
@ -753,8 +753,12 @@ function wp_admin_bar_header() { ?>
|
||||
*/
|
||||
function _admin_bar_bump_cb() { ?>
|
||||
<style type="text/css" media="screen">
|
||||
html { margin-top: 28px !important; }
|
||||
* html body { margin-top: 28px !important; }
|
||||
html { margin-top: 32px !important; }
|
||||
* html body { margin-top: 32px !important; }
|
||||
@media screen and ( max-width: 782px ) {
|
||||
html { margin-top: 46px !important; }
|
||||
* html body { margin-top: 46px !important; }
|
||||
}
|
||||
</style>
|
||||
<?php
|
||||
}
|
||||
|
@ -17,32 +17,12 @@
|
||||
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,
|
||||
@ -54,7 +34,6 @@
|
||||
#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
|
||||
right: auto;
|
||||
left: 0;
|
||||
margin: 0 0 0 -1px;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop li:hover > .ab-sub-wrapper,
|
||||
@ -72,17 +51,27 @@
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item {
|
||||
background-position: 5% -46px;
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||
content: '\f141';
|
||||
right: auto;
|
||||
left: 3px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
|
||||
background-position: 95% -20px;
|
||||
padding-left: 1em;
|
||||
padding-right: 2em;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
|
||||
content: '\f139';
|
||||
left: auto;
|
||||
right: 3px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
|
||||
right: 0;
|
||||
left: auto;
|
||||
@ -131,23 +120,22 @@
|
||||
* My Sites
|
||||
*/
|
||||
#wpadminbar .quicklinks li .blavatar {
|
||||
margin-right: 0px;
|
||||
margin-left: 4px;
|
||||
float: right;
|
||||
margin-right: -10px;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
/*
|
||||
* 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:before {
|
||||
left: auto;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:focus,
|
||||
#wpadminbar.ie7 #adminbarsearch .adminbar-input {
|
||||
background-position: 99% 2px;
|
||||
#wpadminbar #adminbarsearch .adminbar-input {
|
||||
padding: 0 24px 0 3px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -155,6 +143,7 @@
|
||||
*/
|
||||
#wpadminbar .ab-icon {
|
||||
float: right;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.ie7 #wp-admin-bar-wp-logo > .ab-item .ab-icon {
|
||||
|
2
wp-includes/css/admin-bar-rtl.min.css
vendored
2
wp-includes/css/admin-bar-rtl.min.css
vendored
@ -1 +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 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 .screen-reader-shortcut:focus{left:auto;right:6px}#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 .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 ul{text-align:right}#wpadminbar li{float:right}#wpadminbar .quicklinks .ab-top-secondary>li{float:left}#wpadminbar .quicklinks .ab-top-secondary>li>a,#wpadminbar .quicklinks .ab-top-secondary>li>.ab-empty-item{}#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}#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{padding-left:2em;padding-right:1em}#wpadminbar .menupop .menupop>.ab-item:before{content:'\f141';right:auto;left:3px}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item{padding-left:1em;padding-right:2em}#wpadminbar .ab-top-secondary .menupop .menupop>.ab-item:before{content:'\f139';left:auto;right:3px}#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 .screen-reader-shortcut:focus{left:auto;right:6px}#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 .blavatar{float:right;margin-right:-10px;margin-left:7px}#wpadminbar #adminbarsearch:before{left:auto;right:5px}#wpadminbar #adminbarsearch .adminbar-input{padding:0 24px 0 3px;margin:0}#wpadminbar .ab-icon{float:right;margin-right:auto}.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}
|
@ -6,10 +6,10 @@
|
||||
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;
|
||||
line-height: 30px;
|
||||
font: normal 13px/32px "Open Sans", sans-serif;
|
||||
color: #eee;
|
||||
border-radius: 0;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
@ -19,6 +19,27 @@
|
||||
transition: none;
|
||||
}
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default *,
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary * {
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
font: normal 13px/32px "Open Sans", sans-serif;
|
||||
}
|
||||
|
||||
#wpadminbar a.ab-item,
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default span.ab-label,
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary span.ab-label,
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary span.noticon {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-site-name a.ab-item,
|
||||
#wpadminbar #wp-admin-bar-my-sites a.ab-item {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
#wpadminbar ul li:before,
|
||||
#wpadminbar ul li:after {
|
||||
content: normal;
|
||||
@ -51,20 +72,15 @@
|
||||
#wpadminbar {
|
||||
direction: ltr;
|
||||
color: #ccc;
|
||||
font: normal 13px/28px sans-serif;
|
||||
height: 28px;
|
||||
font: normal 13px/32px "Open Sans", sans-serif;
|
||||
height: 32px;
|
||||
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);
|
||||
background: #222;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-sub-wrapper,
|
||||
@ -80,8 +96,8 @@
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks {
|
||||
border-left: 1px solid transparent;
|
||||
#wpadminbar ul#wp-admin-bar-root-default>li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks ul {
|
||||
@ -96,74 +112,44 @@
|
||||
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;
|
||||
height: 32px;
|
||||
display: block;
|
||||
padding: 0 12px;
|
||||
padding: 0 10px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .ab-sub-wrapper,
|
||||
#wpadminbar .shortlink-input {
|
||||
margin: 0 0 0 -1px;
|
||||
margin: 0;
|
||||
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;
|
||||
-webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
|
||||
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
|
||||
background: #333;
|
||||
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;
|
||||
top: 32px;
|
||||
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 {
|
||||
@ -185,7 +171,6 @@
|
||||
#wpadminbar .shortlink-input {
|
||||
line-height: 26px;
|
||||
height: 26px;
|
||||
text-shadow: none;
|
||||
white-space: nowrap;
|
||||
min-width: 140px;
|
||||
}
|
||||
@ -202,8 +187,7 @@
|
||||
#wpadminbar .menupop li:hover > .ab-sub-wrapper,
|
||||
#wpadminbar .menupop li.hover > .ab-sub-wrapper {
|
||||
margin-left: 100%;
|
||||
margin-top: -33px;
|
||||
border-width: 1px;
|
||||
margin-top: -32px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
|
||||
@ -217,89 +201,114 @@
|
||||
#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);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#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;
|
||||
background: #333;
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
#wpadminbar .hover .ab-label,
|
||||
#wpadminbar.nojq .ab-item:focus .ab-label {
|
||||
color: #fafafa;
|
||||
#wpadminbar .ab-icon,
|
||||
#wpadminbar .ab-item:before {
|
||||
position: relative;
|
||||
float: left;
|
||||
font: normal 20px/1 'dashicons' !important;
|
||||
speak: none;
|
||||
padding: 4px 0;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
background-image: none !important;
|
||||
color: #999;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop.hover .ab-label {
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
#wpadminbar li:hover .ab-icon,
|
||||
#wpadminbar li:hover > .ab-item:before {
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
#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-icon:before {
|
||||
position: relative;
|
||||
-moz-transition: all .1s ease-in-out;
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
transition: all .1s ease-in-out;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-label {
|
||||
display: inline-block;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-submenu .ab-item {
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#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;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul li a:hover,
|
||||
#wpadminbar .quicklinks .menupop ul li a:hover strong,
|
||||
#wpadminbar .quicklinks .menupop.hover ul li a:hover,
|
||||
#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover {
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item:before,
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
|
||||
position: absolute;
|
||||
font: normal 17px/1 'dashicons';
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item {
|
||||
display: block;
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20120830);
|
||||
background-position: 95% -20px;
|
||||
background-repeat: no-repeat;
|
||||
padding-right: 2em;
|
||||
}
|
||||
|
||||
#wpadminbar .menupop .menupop > .ab-item:before {
|
||||
top: 0px;
|
||||
right: 4px;
|
||||
content: '\f139';
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
|
||||
background-image: url(../images/admin-bar-sprite.png?d=20120830);
|
||||
background-position: 5% -46px;
|
||||
background-repeat: no-repeat;
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
|
||||
top: 5px;
|
||||
left: 3px;
|
||||
content: '\f141';
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
|
||||
display: block;
|
||||
position: relative;
|
||||
right: auto;
|
||||
margin: 0;
|
||||
background: #eee;
|
||||
background: #4b4b4b;
|
||||
-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 .menupop .ab-sub-secondary > li:hover > a,
|
||||
#wpadminbar .quicklinks .menupop .ab-sub-secondary > li.hover > a,
|
||||
#wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus a {
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks a span#ab-updates {
|
||||
background: #eee;
|
||||
color: #333;
|
||||
text-shadow: none;
|
||||
display: inline;
|
||||
padding: 2px 5px;
|
||||
font-size: 10px;
|
||||
@ -315,17 +324,10 @@
|
||||
|
||||
#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;
|
||||
}
|
||||
@ -346,12 +348,12 @@
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
|
||||
margin-left: 88px;
|
||||
#wpadminbar #wp-admin-bar-user-actions.ab-submenu {
|
||||
padding: 6px 0 12px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-user-actions > li > .ab-item {
|
||||
padding-left: 8px;
|
||||
#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
|
||||
margin-left: 88px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info {
|
||||
@ -382,12 +384,11 @@
|
||||
|
||||
#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;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-user-info .username {
|
||||
@ -398,30 +399,104 @@
|
||||
#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 1px solid #999;
|
||||
padding: 0;
|
||||
border: 1px solid #888;
|
||||
background: #eee;
|
||||
line-height: 24px;
|
||||
vertical-align: middle;
|
||||
margin: -3px 0 0 6px;
|
||||
margin: -4px 0 0 6px;
|
||||
float: none;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/*
|
||||
* My Sites
|
||||
/**
|
||||
* WP Logo
|
||||
*/
|
||||
#wpadminbar .quicklinks li .blavatar {
|
||||
vertical-align: middle;
|
||||
margin: -3px 4px 0 0;
|
||||
padding: 0;
|
||||
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 0;
|
||||
padding: 6px 0 5px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li div.blavatar {
|
||||
background: url('../images/wpmini-blue.png') no-repeat;
|
||||
#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
|
||||
padding: 0 8px 0 8px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
|
||||
content: '\f120';
|
||||
}
|
||||
|
||||
/*
|
||||
* My Sites & Site Title
|
||||
*/
|
||||
#wpadminbar .quicklinks li .blavatar {
|
||||
float: left;
|
||||
font: normal 16px/1 'dashicons' !important;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li a:hover .blavatar {
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li .blavatar:before {
|
||||
content: '\f120';
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
display: inline-block;
|
||||
margin: 8px 8px 0 -2px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-appearance {
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
|
||||
#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
|
||||
content: '\f112';
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
|
||||
content: '\f319';
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Comments
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-comments .ab-icon {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-comments .ab-icon:before {
|
||||
content: '\f101';
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-comments .count-0 {
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
/**
|
||||
* New Content
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-new-content .ab-icon:before {
|
||||
content: '\f132';
|
||||
top: 4px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-updates .ab-icon:before {
|
||||
content: '\f113';
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -429,37 +504,42 @@
|
||||
*/
|
||||
#wpadminbar #wp-admin-bar-search .ab-item {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wpadminbar #wp-admin-bar-search .ab-item {
|
||||
/* default background */
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch {
|
||||
height: 28px;
|
||||
position: relative;
|
||||
height: 32px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input {
|
||||
font: 13px/24px sans-serif;
|
||||
#wpadminbar #adminbarsearch:before {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
left: 5px;
|
||||
z-index: 20;
|
||||
font: normal 20px/1 'dashicons' !important;
|
||||
content: '\f179';
|
||||
color: #999;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input {
|
||||
position: relative;
|
||||
z-index: 30;
|
||||
font: 13px/24px "Open Sans", sans-serif;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
border: none;
|
||||
padding: 0 3px 0 23px;
|
||||
padding: 0 3px 0 24px;
|
||||
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=20120830);
|
||||
background-position: 3px 2px;
|
||||
background-repeat: no-repeat;
|
||||
border: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
|
||||
@ -479,127 +559,46 @@
|
||||
-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;
|
||||
#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
z-index: 10;
|
||||
color: #000;
|
||||
width: 200px;
|
||||
background-color: rgba( 255, 255, 255, 0.9 );
|
||||
cursor: text;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
#wpadminbar.ie8 #adminbarsearch .adminbar-input {
|
||||
#wpadminbar.ie7 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input {
|
||||
margin-top: 3px;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
#wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input {
|
||||
margin-top: 4px;
|
||||
background-color: #464646;
|
||||
}
|
||||
|
||||
#wpadminbar.ie8 #adminbarsearch .adminbar-input:focus {
|
||||
#wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
/* Two rules to ensure browser recognition */
|
||||
#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
|
||||
color: #ddd;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
|
||||
color: #ddd;
|
||||
color: #999;
|
||||
}
|
||||
#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
|
||||
color: #999;
|
||||
}
|
||||
#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#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=20120830);
|
||||
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=20120830);
|
||||
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=20120830);
|
||||
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=20120830);
|
||||
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
|
||||
*/
|
||||
@ -612,30 +611,6 @@
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retina display 2x icons
|
||||
*/
|
||||
@media print,
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
#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=20120830);
|
||||
background-size: 20px 220px;
|
||||
}
|
||||
|
||||
#wpadminbar .quicklinks li div.blavatar {
|
||||
background: url('../images/wpmini-blue-2x.png') no-repeat;
|
||||
background-size: 16px 16px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Skip link */
|
||||
#wpadminbar .screen-reader-text,
|
||||
#wpadminbar .screen-reader-text span {
|
||||
@ -662,14 +637,12 @@
|
||||
font-weight: bold;
|
||||
padding: 15px 23px 14px;
|
||||
background: #f1f1f1;
|
||||
color: #21759b;
|
||||
text-shadow: none;
|
||||
border-radius: 3px;
|
||||
color: #fff;
|
||||
z-index: 100000;
|
||||
line-height: normal;
|
||||
text-decoration: none;
|
||||
-webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
|
||||
box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/**
|
||||
|
2
wp-includes/css/admin-bar.min.css
vendored
2
wp-includes/css/admin-bar.min.css
vendored
File diff suppressed because one or more lines are too long
@ -39,9 +39,9 @@ TABLE OF CONTENTS:
|
||||
.wp-core-ui .button-secondary {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-size: 12px;
|
||||
line-height: 23px;
|
||||
height: 24px;
|
||||
font-size: 13px;
|
||||
line-height: 26px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
cursor: pointer;
|
||||
@ -97,21 +97,35 @@ TABLE OF CONTENTS:
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Style Reset buttons as simple text links */
|
||||
|
||||
.wp-core-ui input[type="reset"],
|
||||
.wp-core-ui input[type="reset"]:hover,
|
||||
.wp-core-ui input[type="reset"]:active,
|
||||
.wp-core-ui input[type="reset"]:focus {
|
||||
background: none;
|
||||
border: none;
|
||||
-moz-box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
2.0 - Default Button Style
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button,
|
||||
.wp-core-ui .button-secondary {
|
||||
background: #f3f3f3;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
|
||||
background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
|
||||
background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
|
||||
background-image: -o-linear-gradient(top, #fefefe, #f4f4f4);
|
||||
background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
|
||||
border-color: #bbb;
|
||||
color: #333;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
color: #555;
|
||||
border-color: #cccccc;
|
||||
background: #f7f7f7;
|
||||
|
||||
-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
|
||||
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.wp-core-ui .button.hover,
|
||||
@ -120,13 +134,7 @@ TABLE OF CONTENTS:
|
||||
.wp-core-ui .button.focus,
|
||||
.wp-core-ui .button:focus,
|
||||
.wp-core-ui .button-secondary:focus {
|
||||
background: #f3f3f3;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
|
||||
background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -o-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: linear-gradient(to bottom, #fff, #f3f3f3);
|
||||
background: #fafafa;
|
||||
border-color: #999;
|
||||
color: #222;
|
||||
}
|
||||
@ -144,19 +152,17 @@ TABLE OF CONTENTS:
|
||||
.wp-core-ui .button:active,
|
||||
.wp-core-ui .button-secondary:active {
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe));
|
||||
background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe);
|
||||
background-image: -moz-linear-gradient(top, #f4f4f4, #fefefe);
|
||||
background-image: -ms-linear-gradient(top, #f4f4f4, #fefefe);
|
||||
background-image: -o-linear-gradient(top, #f4f4f4, #fefefe);
|
||||
background-image: linear-gradient(to bottom, #f4f4f4, #fefefe);
|
||||
border-color: #999;
|
||||
color: #333;
|
||||
text-shadow: 0 -1px 0 #fff;
|
||||
-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
|
||||
}
|
||||
|
||||
/* this creates an inset effect on the text */
|
||||
.wp-core-ui .button:active {
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button[disabled],
|
||||
.wp-core-ui .button:disabled,
|
||||
.wp-core-ui .button-secondary[disabled],
|
||||
@ -164,12 +170,6 @@ TABLE OF CONTENTS:
|
||||
.wp-core-ui .button-disabled {
|
||||
color: #aaa !important;
|
||||
border-color: #ddd !important;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f4f4f4)) !important;
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4) !important;
|
||||
background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4) !important;
|
||||
background-image: -ms-linear-gradient(top, #f9f9f9, #f4f4f4) !important;
|
||||
background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4) !important;
|
||||
background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4) !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: 0 1px 0 #fff !important;
|
||||
@ -181,38 +181,23 @@ TABLE OF CONTENTS:
|
||||
---------------------------------------------------------------------------- */
|
||||
|
||||
.wp-core-ui .button-primary {
|
||||
background-color: #21759b;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b));
|
||||
background-image: -webkit-linear-gradient(top, #2a95c5, #21759b);
|
||||
background-image: -moz-linear-gradient(top, #2a95c5, #21759b);
|
||||
background-image: -ms-linear-gradient(top, #2a95c5, #21759b);
|
||||
background-image: -o-linear-gradient(top, #2a95c5, #21759b);
|
||||
background-image: linear-gradient(to bottom, #2a95c5, #21759b);
|
||||
border-color: #21759b;
|
||||
border-bottom-color: #1e6a8d;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
|
||||
box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
|
||||
background: #2ea2cc;
|
||||
border-color: #0074a2;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
|
||||
box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.hover,
|
||||
.wp-core-ui .button-primary:hover,
|
||||
.wp-core-ui .button-primary.focus,
|
||||
.wp-core-ui .button-primary:focus {
|
||||
background-color: #278ab7;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b));
|
||||
background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b);
|
||||
background-image: -moz-linear-gradient(top, #2e9fd2, #21759b);
|
||||
background-image: -ms-linear-gradient(top, #2e9fd2, #21759b);
|
||||
background-image: -o-linear-gradient(top, #2e9fd2, #21759b);
|
||||
background-image: linear-gradient(to bottom, #2e9fd2, #21759b);
|
||||
border-color: #1b607f;
|
||||
background: #1e8cbe;
|
||||
border-color: #0074a2;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
|
||||
box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary.focus,
|
||||
@ -226,18 +211,17 @@ TABLE OF CONTENTS:
|
||||
.wp-core-ui .button-primary.active:hover,
|
||||
.wp-core-ui .button-primary.active:focus,
|
||||
.wp-core-ui .button-primary:active {
|
||||
background: #1b607f;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#21759b), to(#278ab7));
|
||||
background-image: -webkit-linear-gradient(top, #21759b, #278ab7);
|
||||
background-image: -moz-linear-gradient(top, #21759b, #278ab7);
|
||||
background-image: -ms-linear-gradient(top, #21759b, #278ab7);
|
||||
background-image: -o-linear-gradient(top, #21759b, #278ab7);
|
||||
background-image: linear-gradient(to bottom, #21759b, #278ab7);
|
||||
border-color: #124560 #2382ae #2382ae #2382ae;
|
||||
background: #1e8cbe;
|
||||
border-color: #005684;
|
||||
color: rgba(255,255,255,0.95);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
|
||||
text-shadow: 0 1px 0 rgba(0,0,0,0.1);
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* this creates an inset effect on the text */
|
||||
.wp-core-ui .button-primary:active {
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.wp-core-ui .button-primary[disabled],
|
||||
|
2
wp-includes/css/buttons.min.css
vendored
2
wp-includes/css/buttons.min.css
vendored
File diff suppressed because one or more lines are too long
13
wp-includes/css/dashicons.css
Normal file
13
wp-includes/css/dashicons.css
Normal file
File diff suppressed because one or more lines are too long
1
wp-includes/css/dashicons.min.css
vendored
Normal file
1
wp-includes/css/dashicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -1,5 +1,6 @@
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
|
||||
TinyMCE and Quicklinks toolbars
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
@ -48,6 +49,59 @@
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* These are part of TinyMCE, used in TinyMCE Advanced, but not WordPress. These are not MP6-ified. */
|
||||
/*
|
||||
.wp_themeSkin span.mce_sup,
|
||||
.wp_themeSkin span.mce_sub,
|
||||
.wp_themeSkin span.mce_media,
|
||||
.wp_themeSkin span.mce_styleprops,
|
||||
.wp_themeSkin span.mce_search,
|
||||
.wp_themeSkin span.mce_emotions,
|
||||
.wp_themeSkin span.mce_print,
|
||||
.wp_themeSkin span.mce_attribs,
|
||||
.wp_themeSkin span.mce_hr,
|
||||
.wp_themeSkin span.mce_cut,
|
||||
.wp_themeSkin span.mce_copy,
|
||||
.wp_themeSkin span.mce_paste,
|
||||
.wp_themeSkin span.mce_cite,
|
||||
.wp_themeSkin span.mce_visualchars,
|
||||
.wp_themeSkin span.mce_advhr,
|
||||
.wp_themeSkin span.mce_insertdate,
|
||||
.wp_themeSkin span.mce_anchor,
|
||||
.wp_themeSkin span.mce_visualaid,
|
||||
.wp_themeSkin span.mce_cleanup,
|
||||
.wp_themeSkin span.mce_table,
|
||||
.wp_themeSkin span.mce_row_props,
|
||||
.wp_themeSkin span.mce_cell_props,
|
||||
.wp_themeSkin span.mce_row_before,
|
||||
.wp_themeSkin span.mce_row_after,
|
||||
.wp_themeSkin span.mce_delete_row,
|
||||
.wp_themeSkin span.mce_col_before,
|
||||
.wp_themeSkin span.mce_col_after,
|
||||
.wp_themeSkin span.mce_delete_col,
|
||||
.wp_themeSkin span.mce_split_cells,
|
||||
.wp_themeSkin span.mce_merge_cells,
|
||||
.wp_themeSkin span.mce_delete_table,
|
||||
.wp_themeSkin span.mce_ins,
|
||||
.wp_themeSkin span.mce_abbr,
|
||||
.wp_themeSkin span.mce_acronym,
|
||||
.wp_themeSkin span.mce_del,
|
||||
.wp_themeSkin span.mce_replace,
|
||||
.wp_themeSkin span.mce_code,
|
||||
.wp_themeSkin span.mce_nonbreaking,
|
||||
.wp_themeSkin span.mce_inserttime,
|
||||
.wp_themeSkin span.mce_insertlayer,
|
||||
.wp_themeSkin span.mce_moveforward,
|
||||
.wp_themeSkin span.mce_movebackward,
|
||||
.wp_themeSkin span.mce_absolute
|
||||
{
|
||||
-moz-transition: none;
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
background: url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px;
|
||||
}*/
|
||||
|
||||
|
||||
/* Containers */
|
||||
.wp_themeSkin table {}
|
||||
|
||||
@ -97,16 +151,16 @@
|
||||
}
|
||||
|
||||
.wp_themeSkin .mceStatusbar {
|
||||
background: #fff;
|
||||
border-top: 1px solid #eee;
|
||||
color: #000;
|
||||
display: block;
|
||||
font-family: sans-serif;
|
||||
font-size: 12px;
|
||||
height: 20px;
|
||||
line-height: 16px;
|
||||
padding: 0 0 0 8px;
|
||||
overflow: visible;
|
||||
height: 20px;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
color: #000;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.rtl .wp_themeSkin .mceStatusbar {
|
||||
@ -169,8 +223,16 @@
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.wp_themeSkin .mceIcon {
|
||||
background: url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px;
|
||||
a .mceIcon, .mceAction {
|
||||
text-align: center;
|
||||
font: normal 20px/1 'dashicons' !important;
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.mceAction {
|
||||
line-height:16px;
|
||||
}
|
||||
|
||||
/* Button */
|
||||
@ -354,44 +416,6 @@
|
||||
border-top-right-radius: 2px;
|
||||
}
|
||||
|
||||
.wp_themeSkin span.mce_undo,
|
||||
.wp_themeSkin span.mce_redo,
|
||||
.wp_themeSkin span.mce_bullist,
|
||||
.wp_themeSkin span.mce_numlist,
|
||||
.wp_themeSkin span.mce_blockquote,
|
||||
.wp_themeSkin span.mce_charmap,
|
||||
.wp_themeSkin span.mce_bold,
|
||||
.wp_themeSkin span.mce_italic,
|
||||
.wp_themeSkin span.mce_underline,
|
||||
.wp_themeSkin span.mce_justifyleft,
|
||||
.wp_themeSkin span.mce_justifyright,
|
||||
.wp_themeSkin span.mce_justifycenter,
|
||||
.wp_themeSkin span.mce_justifyfull,
|
||||
.wp_themeSkin span.mce_indent,
|
||||
.wp_themeSkin span.mce_outdent,
|
||||
.wp_themeSkin span.mce_link,
|
||||
.wp_themeSkin span.mce_unlink,
|
||||
.wp_themeSkin span.mce_help,
|
||||
.wp_themeSkin span.mce_removeformat,
|
||||
.wp_themeSkin span.mce_fullscreen,
|
||||
.wp_themeSkin span.mce_wp_fullscreen,
|
||||
.wp_themeSkin span.mce_media,
|
||||
.wp_themeSkin span.mce_pastetext,
|
||||
.wp_themeSkin span.mce_pasteword,
|
||||
.wp_themeSkin span.mce_wp_help,
|
||||
.wp_themeSkin span.mce_wp_adv,
|
||||
.wp_themeSkin span.mce_wp_more,
|
||||
.wp_themeSkin span.mce_strikethrough,
|
||||
.wp_themeSkin span.mce_spellchecker,
|
||||
.wp_themeSkin span.mce_forecolor,
|
||||
.wp_themeSkin .mce_forecolorpicker,
|
||||
.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,
|
||||
.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,
|
||||
.wp_themeSkin .mceSplitButton span.mce_numlist,
|
||||
.wp_themeSkin .mceSplitButton span.mce_bullist {
|
||||
background-image: url('../images/wpicons.png?ver=20120720');
|
||||
}
|
||||
|
||||
/* ColorSplitButton */
|
||||
.wp_themeSkin div.mceColorSplitMenu table {
|
||||
background-color: #ebebeb;
|
||||
@ -418,7 +442,7 @@
|
||||
width: 100%;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
font-family: Tahoma,Verdana,Arial,Helvetica;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 11px;
|
||||
line-height: 20px;
|
||||
border-color: #fff;
|
||||
@ -474,7 +498,7 @@
|
||||
.wp_themeSkin .mceMenu .mceText {
|
||||
position: relative;
|
||||
display: block;
|
||||
font-family: Tahoma,Verdana,Arial,Helvetica;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
cursor: default;
|
||||
margin: 0;
|
||||
padding: 0 25px;
|
||||
@ -591,17 +615,17 @@
|
||||
|
||||
.wp_themeSkin .mce_h2 span.mceText {
|
||||
font-weight: bolder;
|
||||
font-size: 16px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.wp_themeSkin .mce_h3 span.mceText {
|
||||
font-weight: bolder;
|
||||
font-size: 14px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.wp_themeSkin .mce_h4 span.mceText {
|
||||
font-weight: bolder;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.wp_themeSkin .mce_h5 span.mceText {
|
||||
@ -614,6 +638,111 @@
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
span.mce_bold:before {
|
||||
content:'\f200';
|
||||
}
|
||||
span.mce_italic:before {
|
||||
content:'\f201';
|
||||
}
|
||||
|
||||
span.mce_bullist:before {
|
||||
content:'\f203';
|
||||
}
|
||||
|
||||
span.mce_numlist:before {
|
||||
content:'\f204';
|
||||
}
|
||||
|
||||
span.mce_blockquote:before {
|
||||
content:'\f205';
|
||||
}
|
||||
span.mce_justifyleft:before {
|
||||
content:'\f206';
|
||||
}
|
||||
span.mce_justifycenter:before {
|
||||
content:'\f207';
|
||||
}
|
||||
span.mce_justifyright:before {
|
||||
content:'\f208';
|
||||
}
|
||||
span.mce_link:before {
|
||||
content:'\f103';
|
||||
}
|
||||
span.mce_unlink:before {
|
||||
content:'\f225';
|
||||
}
|
||||
span.mce_wp_more:before {
|
||||
content:'\f209';
|
||||
}
|
||||
span.mce_strikethrough:before {
|
||||
content:'\f224';
|
||||
}
|
||||
|
||||
span.mce_spellchecker {
|
||||
font-size:20px;
|
||||
background:none !important;
|
||||
margin-top: 2px;
|
||||
}
|
||||
span.mce_spellchecker:before {
|
||||
content:'\f210';
|
||||
}
|
||||
span.mce_fullscreen:before,
|
||||
span.mce_wp_fullscreen:before {
|
||||
content:'\f211';
|
||||
}
|
||||
|
||||
span.mce_wp_adv:before {
|
||||
content:'\f212';
|
||||
}
|
||||
span.mce_underline:before {
|
||||
content:'\f213';
|
||||
}
|
||||
|
||||
span.mce_justifyfull:before {
|
||||
content:'\f214';
|
||||
}
|
||||
|
||||
span.mce_forecolor {
|
||||
background:none !important;
|
||||
}
|
||||
span.mce_forecolor:before {
|
||||
content:'\f215';
|
||||
}
|
||||
span.mce_pastetext:before {
|
||||
content:'\f217';
|
||||
}
|
||||
span.mce_pasteword:before {
|
||||
content:'\f216';
|
||||
}
|
||||
span.mce_removeformat:before {
|
||||
content:'\f218';
|
||||
}
|
||||
span.mce_charmap:before {
|
||||
content:'\f220';
|
||||
}
|
||||
span.mce_outdent:before {
|
||||
content:'\f221';
|
||||
}
|
||||
span.mce_indent:before {
|
||||
content:'\f222';
|
||||
}
|
||||
span.mce_undo:before {
|
||||
content:'\f171';
|
||||
}
|
||||
span.mce_redo:before {
|
||||
content:'\f172';
|
||||
}
|
||||
span.mce_wp_help:before {
|
||||
content:'\f223';
|
||||
}
|
||||
span.mce_image:before {
|
||||
content: '\f104';
|
||||
}
|
||||
span.mce_ltr:before {
|
||||
content: '\f320';
|
||||
}
|
||||
|
||||
|
||||
/* Theme */
|
||||
.wp_themeSkin span.mce_undo {background-position:-500px -20px}
|
||||
.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,
|
||||
@ -944,6 +1073,9 @@
|
||||
|
||||
#mceModalBlocker {
|
||||
background: #000;
|
||||
opacity: 0.7;
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
||||
filter: alpha(opacity=70);
|
||||
}
|
||||
|
||||
/* WP specific */
|
||||
@ -951,8 +1083,20 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#wp-content-editor-tools {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#wp-content-editor-container {
|
||||
clear: both;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.wp-editor-area {
|
||||
font-family: Consolas, Monaco, monospace;
|
||||
font-size: 13px;
|
||||
padding: 10px;
|
||||
margin: 1px 0 0;
|
||||
line-height: 150%;
|
||||
@ -966,24 +1110,13 @@
|
||||
}
|
||||
|
||||
.wp-editor-tools {
|
||||
height: 30px;
|
||||
padding: 0 10px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.rtl .wp-editor-tools {
|
||||
padding: 0 0 0 10px;
|
||||
}
|
||||
|
||||
.wp-editor-container {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
border-color: #ccc #ccc #dfdfdf;
|
||||
}
|
||||
|
||||
.wp-editor-container textarea.wp-editor-area {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
@ -993,31 +1126,20 @@
|
||||
|
||||
.quicktags-toolbar,
|
||||
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
||||
border-bottom: 1px solid #d1d1d1;
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#e5e5e5), to(#f4f4f4));
|
||||
background-image: -webkit-linear-gradient(bottom, #e5e5e5, #f4f4f4);
|
||||
background-image: -moz-linear-gradient(bottom, #e5e5e5, #f4f4f4);
|
||||
background-image: -o-linear-gradient(bottom, #e5e5e5, #f4f4f4);
|
||||
background-image: linear-gradient(to top, #e5e5e5, #f4f4f4);
|
||||
border-bottom: 1px solid #dedede;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.wp-switch-editor {
|
||||
height: 18px;
|
||||
font: 13px/18px Arial,Helvetica,sans-serif normal;
|
||||
margin: 5px 5px 0 0;
|
||||
padding: 4px 5px 2px;
|
||||
float: right;
|
||||
background: #ebebeb;
|
||||
border: 1px solid #dedede;
|
||||
color: #777;
|
||||
cursor: pointer;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
background-color: #f1f1f1;
|
||||
border-color: #dfdfdf #dfdfdf #ccc;
|
||||
color: #999;
|
||||
float: right;
|
||||
font: 13px/19px "Open Sans", sans-serif;
|
||||
height: 19px;
|
||||
margin: 5px 0 0 5px;
|
||||
padding: 3px 8px 4px;
|
||||
}
|
||||
|
||||
html[dir="rtl"] .wp-switch-editor {
|
||||
@ -1030,6 +1152,7 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
|
||||
.wp-switch-editor:hover {
|
||||
text-decoration: none !important;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.js .tmce-active .wp-editor-area {
|
||||
@ -1042,13 +1165,24 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
|
||||
.tmce-active .switch-tmce,
|
||||
.html-active .switch-html {
|
||||
border-color: #ccc #ccc #f4f4f4;
|
||||
background-color: #f4f4f4;
|
||||
background: #f5f5f5;
|
||||
color: #555;
|
||||
height: 20px;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.wp-media-buttons .button {
|
||||
margin-right: 5px;
|
||||
margin-bottom: 4px;
|
||||
padding-left: 7px;
|
||||
padding-right: 7px;
|
||||
}
|
||||
|
||||
.wp-media-buttons .button:active {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
margin-top: -1px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.rtl .wp-media-buttons .button {
|
||||
@ -1057,12 +1191,12 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
}
|
||||
|
||||
.wp-media-buttons .insert-media {
|
||||
padding-left: 0.4em;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.rtl .wp-media-buttons .insert-media {
|
||||
padding-left: 10px;
|
||||
padding-right: 0.4em;
|
||||
padding-left: 7px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.wp-media-buttons a {
|
||||
@ -1078,14 +1212,29 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
|
||||
.wp-media-buttons span.wp-media-buttons-icon {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
vertical-align: text-top;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon {
|
||||
background: url('../../wp-admin/images/media-button.png') no-repeat top left;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
||||
font: normal 18px/1 'dashicons';
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon:before {
|
||||
content: '\f104';
|
||||
}
|
||||
|
||||
.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before {
|
||||
content: '\f175';
|
||||
}
|
||||
|
||||
.quicktags-toolbar {
|
||||
@ -1109,7 +1258,7 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
display: inline-block;
|
||||
min-width: 26px;
|
||||
padding: 2px 4px;
|
||||
font: 12px/18px Arial, Helvetica, sans-serif normal;
|
||||
font: 12px/18px "Open Sans", sans-serif;
|
||||
color: #464646;
|
||||
border: 1px solid #c3c3c3;
|
||||
-webkit-border-radius: 3px;
|
||||
@ -1222,7 +1371,7 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
}
|
||||
|
||||
#wp-link .toggle-arrow {
|
||||
background: transparent url( '../images/toggle-arrow.png' ) top left no-repeat;
|
||||
background: transparent url("../images/toggle-arrow.png") top left no-repeat;
|
||||
height: 23px;
|
||||
line-height: 23px;
|
||||
}
|
||||
@ -1749,58 +1898,74 @@ RTL
|
||||
direction: rtl;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceFocus .mceTop .mceLeft {
|
||||
background: #444444;
|
||||
border-left: 1px solid #999;
|
||||
border-top: 1px solid #999;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
/* TinyMCE modal */
|
||||
.clearlooks2 .mceTop {
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceFocus .mceTop .mceRight {
|
||||
.clearlooks2 .mceTop span {
|
||||
font: 13px/24px "Open Sans", sans-serif;
|
||||
color: #e5e5e5;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceTop .mceLeft {
|
||||
background: #444444;
|
||||
border-right: 1px solid #999;
|
||||
border-top: 1px solid #999;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceTop .mceRight {
|
||||
background: #444444;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceMiddle {
|
||||
clip: rect(24px auto auto auto);
|
||||
}
|
||||
|
||||
.clearlooks2 .mceMiddle .mceLeft {
|
||||
background: #f1f1f1;
|
||||
border-left: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceMiddle .mceRight {
|
||||
background: #f1f1f1;
|
||||
border-right: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceBottom {
|
||||
background: #f1f1f1;
|
||||
border-bottom: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceBottom .mceLeft {
|
||||
background: #f1f1f1;
|
||||
border-bottom: 1px solid #999;
|
||||
border-left: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceBottom .mceCenter {
|
||||
background: #f1f1f1;
|
||||
border-bottom: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceBottom .mceRight {
|
||||
background: #f1f1f1;
|
||||
border-bottom: 1px solid #999;
|
||||
border-right: 1px solid #999;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.clearlooks2 .mceFocus .mceTop span {
|
||||
color: #e5e5e5;
|
||||
.clearlooks2 .mceClose,
|
||||
.clearlooks2 .mceFocus .mceClose,
|
||||
.clearlooks2 .mceFocus .mceClose:hover {
|
||||
background-image: none;
|
||||
}
|
||||
.clearlooks2 .mceClose:before {
|
||||
content: '\f158';
|
||||
font: normal 20px/1 'dashicons';
|
||||
speak: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #666;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
|
||||
/* Distraction Free Writing mode
|
||||
* =Overlay Styles
|
||||
@ -1903,15 +2068,15 @@ RTL
|
||||
/* =Top bar
|
||||
-------------------------------------------------------------- */
|
||||
#fullscreen-topbar {
|
||||
background: #f5f5f5;
|
||||
border-bottom: 1px solid #fff;
|
||||
height: 40px;
|
||||
left: 0;
|
||||
min-width: 800px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 150050;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 1px;
|
||||
min-width: 800px;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
z-index: 150050;
|
||||
}
|
||||
|
||||
#wp-fullscreen-toolbar {
|
||||
@ -2035,11 +2200,6 @@ RTL
|
||||
display: none;
|
||||
}
|
||||
|
||||
#wp-fullscreen-buttons #wp_fs_image span.mce_image {
|
||||
background-image: url('../../wp-admin/images/media-button.png');
|
||||
background-position: 2px 2px;
|
||||
}
|
||||
|
||||
/* =Thickbox Adjustments
|
||||
-------------------------------------------------------------- */
|
||||
.fullscreen-active #TB_overlay {
|
||||
@ -2074,22 +2234,6 @@ RTL
|
||||
border-color: #ccc;
|
||||
}
|
||||
|
||||
#fullscreen-topbar {
|
||||
border-bottom-color: #DFDFDF;
|
||||
background: #f1f1f1;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
|
||||
background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: linear-gradient(to top, #ececec, #f9f9f9);
|
||||
}
|
||||
|
||||
#mce_fullscreen_container {
|
||||
background: #fff;
|
||||
/* Fix for the default fullscreen plugin for the media modal */
|
||||
z-index: 110000 !important;
|
||||
}
|
||||
|
||||
/* =CSS 3 transitions
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
@ -2227,49 +2371,9 @@ RTL
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
.wp_themeSkin span.mce_undo,
|
||||
.wp_themeSkin span.mce_redo,
|
||||
.wp_themeSkin span.mce_bullist,
|
||||
.wp_themeSkin span.mce_numlist,
|
||||
.wp_themeSkin span.mce_blockquote,
|
||||
.wp_themeSkin span.mce_charmap,
|
||||
.wp_themeSkin span.mce_bold,
|
||||
.wp_themeSkin span.mce_italic,
|
||||
.wp_themeSkin span.mce_underline,
|
||||
.wp_themeSkin span.mce_justifyleft,
|
||||
.wp_themeSkin span.mce_justifyright,
|
||||
.wp_themeSkin span.mce_justifycenter,
|
||||
.wp_themeSkin span.mce_justifyfull,
|
||||
.wp_themeSkin span.mce_indent,
|
||||
.wp_themeSkin span.mce_outdent,
|
||||
.wp_themeSkin span.mce_link,
|
||||
.wp_themeSkin span.mce_unlink,
|
||||
.wp_themeSkin span.mce_help,
|
||||
.wp_themeSkin span.mce_removeformat,
|
||||
.wp_themeSkin span.mce_fullscreen,
|
||||
.wp_themeSkin span.mce_wp_fullscreen,
|
||||
.wp_themeSkin span.mce_media,
|
||||
.wp_themeSkin span.mce_pastetext,
|
||||
.wp_themeSkin span.mce_pasteword,
|
||||
.wp_themeSkin span.mce_wp_help,
|
||||
.wp_themeSkin span.mce_wp_adv,
|
||||
.wp_themeSkin span.mce_wp_more,
|
||||
.wp_themeSkin span.mce_strikethrough,
|
||||
.wp_themeSkin span.mce_spellchecker,
|
||||
.wp_themeSkin span.mce_forecolor,
|
||||
.wp_themeSkin .mce_forecolorpicker,
|
||||
.wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,
|
||||
.wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,
|
||||
.wp_themeSkin .mceSplitButton span.mce_numlist,
|
||||
.wp_themeSkin .mceSplitButton span.mce_bullist {
|
||||
background-image: url('../images/wpicons-2x.png?ver=20120720');
|
||||
background-size: 560px 40px;
|
||||
}
|
||||
|
||||
.wp-media-buttons .add_media span.wp-media-buttons-icon,
|
||||
#wp-fullscreen-buttons #wp_fs_image span.mce_image {
|
||||
background-image: url('../../wp-admin/images/media-button-2x.png');
|
||||
background-size: 16px 16px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.wp_themeSkin .mceListBox .mceOpen,
|
||||
|
4
wp-includes/css/editor.min.css
vendored
4
wp-includes/css/editor.min.css
vendored
File diff suppressed because one or more lines are too long
@ -3,7 +3,7 @@
|
||||
*/
|
||||
.media-modal,
|
||||
.media-frame {
|
||||
font-family: sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
@ -49,14 +49,12 @@
|
||||
.media-frame input[type="url"],
|
||||
.media-frame textarea,
|
||||
.media-frame select {
|
||||
font-family: sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 12px;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
-ms-box-sizing: border-box; /* ie8 only */
|
||||
box-sizing: border-box;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #dfdfdf;
|
||||
@ -114,18 +112,34 @@
|
||||
|
||||
.media-modal-close {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 7px;
|
||||
text-decoration: none;
|
||||
top: 5px;
|
||||
right: 10px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
z-index: 1000;
|
||||
}
|
||||
.media-modal-close span {
|
||||
|
||||
.media-modal-close span.media-modal-icon {
|
||||
display: block;
|
||||
margin: 8px auto 0;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background-position: -100px 0;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.media-modal-close .media-modal-icon:before {
|
||||
content: '\f158';
|
||||
font: normal 20px/1 'dashicons';
|
||||
speak: none;
|
||||
vertical-align: middle;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.media-modal-close:hover .media-modal-icon:before {
|
||||
color: #2ea2cc;
|
||||
}
|
||||
|
||||
.media-modal-close:active {
|
||||
@ -141,6 +155,7 @@
|
||||
overflow: auto;
|
||||
min-height: 300px;
|
||||
background: #fff;
|
||||
-webkit-font-smoothing: subpixel-antialiased;
|
||||
}
|
||||
|
||||
.media-modal-icon {
|
||||
@ -209,7 +224,6 @@
|
||||
}
|
||||
|
||||
.media-sidebar .sidebar-title {
|
||||
font-weight: 200;
|
||||
font-size: 20px;
|
||||
margin: 0;
|
||||
padding: 12px 10px 10px;
|
||||
@ -232,7 +246,6 @@
|
||||
text-transform: uppercase;
|
||||
font-size: 12px;
|
||||
color: #777;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
margin: 24px 0 8px;
|
||||
}
|
||||
|
||||
@ -261,10 +274,11 @@
|
||||
max-width: 65%;
|
||||
}
|
||||
|
||||
.media-sidebar .setting input[type="checkbox"] {
|
||||
width: auto;
|
||||
.media-sidebar .setting input[type="checkbox"],
|
||||
.media-sidebar .field input[type="checkbox"] {
|
||||
width: 16px;
|
||||
float: none;
|
||||
margin-top: 8px;
|
||||
margin: 8px 3px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@ -277,11 +291,11 @@
|
||||
text-align: right;
|
||||
font-weight: normal;
|
||||
color: #999;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.media-sidebar .setting input,
|
||||
.media-sidebar .setting textarea {
|
||||
margin: 1px;
|
||||
width: 65%;
|
||||
float: right;
|
||||
}
|
||||
@ -336,8 +350,7 @@
|
||||
|
||||
.compat-item .field {
|
||||
float: right;
|
||||
width: 65%;
|
||||
padding-right: 1px;
|
||||
width: 66%;
|
||||
}
|
||||
|
||||
.compat-item .field input {
|
||||
@ -357,8 +370,8 @@
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
padding: 16px 0;
|
||||
border-right: 1px solid #d9d9d9;
|
||||
box-shadow: inset -6px 0 6px -6px rgba( 0, 0, 0, 0.2 );
|
||||
border-right-width: 1px;
|
||||
border-right-style: solid;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
@ -368,12 +381,11 @@
|
||||
.media-menu > a {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 4px 20px;
|
||||
padding: 8px 20px;
|
||||
margin: 0;
|
||||
line-height: 18px;
|
||||
font-size: 14px;
|
||||
color: #21759B;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@ -417,13 +429,11 @@
|
||||
.media-router > a {
|
||||
position: relative;
|
||||
float: left;
|
||||
padding: 2px 10px;
|
||||
padding: 8px 10px 9px;
|
||||
margin: 0;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
font-size: 14px;
|
||||
border-right: 1px solid #dfdfdf;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@ -441,21 +451,13 @@
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.media-router .active:after {
|
||||
content: '';
|
||||
display: block;
|
||||
margin: -100px auto 0;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
background: #fff;
|
||||
box-shadow: 1px 1px 1px rgba( 0, 0, 0, 0.2 );
|
||||
z-index: 300;
|
||||
.media-router .active,
|
||||
.media-router > a.active:last-child {
|
||||
margin: -1px -1px 0;
|
||||
}
|
||||
|
||||
-webkit-transform: rotate( 45deg ) translate( 75px, 75px );
|
||||
-moz-transform: rotate( 45deg ) translate( 75px, 75px );
|
||||
-ms-transform: rotate( 45deg ) translate( 75px, 75px );
|
||||
-o-transform: rotate( 45deg ) translate( 75px, 75px );
|
||||
transform: rotate( 45deg ) translate( 75px, 75px );
|
||||
.media-router .active:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -484,24 +486,22 @@
|
||||
top: 0;
|
||||
left: 200px;
|
||||
right: 0;
|
||||
height: 45px;
|
||||
height: 56px;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.media-frame-router {
|
||||
position: absolute;
|
||||
top: 45px;
|
||||
top: 56px;
|
||||
left: 200px;
|
||||
right: 0;
|
||||
height: 30px;
|
||||
height: 36px;
|
||||
z-index: 200;
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
|
||||
}
|
||||
|
||||
.media-frame-content {
|
||||
position: absolute;
|
||||
top: 75px;
|
||||
top: 90px;
|
||||
left: 200px;
|
||||
right: 0;
|
||||
bottom: 61px;
|
||||
@ -509,6 +509,10 @@
|
||||
width: auto;
|
||||
margin: 0;
|
||||
overflow: auto;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
|
||||
.media-frame-toolbar {
|
||||
@ -518,9 +522,6 @@
|
||||
bottom: 0;
|
||||
height: 60px;
|
||||
z-index: 100;
|
||||
border: 0 solid #dfdfdf;
|
||||
border-width: 1px 0 0 0;
|
||||
box-shadow: 0 -4px 4px -4px rgba( 0, 0, 0, 0.1 );
|
||||
}
|
||||
|
||||
.media-frame.hide-menu .media-frame-title,
|
||||
@ -543,7 +544,7 @@
|
||||
}
|
||||
|
||||
.media-frame.hide-router .media-frame-content {
|
||||
top: 45px;
|
||||
top: 56px;
|
||||
}
|
||||
|
||||
.media-frame.hide-router .media-frame-router {
|
||||
@ -562,8 +563,7 @@
|
||||
.media-frame-title h1 {
|
||||
padding: 0 16px;
|
||||
font-size: 22px;
|
||||
font-weight: 200;
|
||||
line-height: 45px;
|
||||
line-height: 60px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@ -598,7 +598,7 @@
|
||||
line-height: 18px;
|
||||
font-size: 13px;
|
||||
color: #464646;
|
||||
font-family: sans-serif;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
@ -641,12 +641,6 @@
|
||||
0 0 0 3px #ccc;
|
||||
}
|
||||
|
||||
.details.attachment {
|
||||
box-shadow:
|
||||
0 0 0 1px #fff,
|
||||
0 0 0 5px #1e8cbe;
|
||||
}
|
||||
|
||||
.attachment-preview {
|
||||
position: relative;
|
||||
width: 199px;
|
||||
@ -779,15 +773,7 @@
|
||||
outline: none;
|
||||
|
||||
border: 1px solid #fff;
|
||||
border-radius: 3px;
|
||||
box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.4 );
|
||||
|
||||
background: #f1f1f1;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));
|
||||
background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||
background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||
background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||
background-image: linear-gradient(to bottom, #f1f1f1, #e1e1e1);
|
||||
}
|
||||
|
||||
.attachment .check div {
|
||||
@ -938,7 +924,6 @@
|
||||
display: none;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.uploading.media-uploader-status .upload-details {
|
||||
@ -1032,6 +1017,7 @@
|
||||
}
|
||||
|
||||
.uploader-window h3 {
|
||||
margin: -0.5em 0 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
@ -1042,8 +1028,7 @@
|
||||
-o-transform: translateY( -50% );
|
||||
transform: translateY( -50% );
|
||||
|
||||
font-size: 20px;
|
||||
font-weight: 200;
|
||||
font-size: 40px;
|
||||
color: #fff;
|
||||
padding: 0;
|
||||
}
|
||||
@ -1092,7 +1077,7 @@
|
||||
.uploader-inline h3 {
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
font-weight: 200;
|
||||
font-weight: 400;
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
@ -1252,13 +1237,13 @@
|
||||
*/
|
||||
|
||||
.media-frame .spinner {
|
||||
background: url(../images/wpspin.gif) no-repeat;
|
||||
background-size: 16px 16px;
|
||||
background: url('../images/spinner.gif') no-repeat;
|
||||
background-size: 20px 20px;
|
||||
display: none;
|
||||
opacity: 0.7;
|
||||
filter: alpha(opacity=70);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@ -1402,14 +1387,11 @@
|
||||
.embed-url {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 0 16px 7px;
|
||||
padding: 16px;
|
||||
margin: 0;
|
||||
z-index: 250;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
|
||||
font-size: 18px;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
.media-frame .embed-url input {
|
||||
@ -1433,8 +1415,7 @@
|
||||
.embed-link-settings,
|
||||
.embed-image-settings {
|
||||
position: absolute;
|
||||
background: #f5f5f5;
|
||||
top: 57px;
|
||||
top: 60px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
@ -1480,7 +1461,6 @@
|
||||
font-size: 13px;
|
||||
line-height: 24px;
|
||||
color: #999;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.media-embed .setting .button-group {
|
||||
@ -1627,6 +1607,10 @@
|
||||
.media-menu .separator {
|
||||
margin: 12px 10px;
|
||||
}
|
||||
|
||||
.media-modal-close {
|
||||
right: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 800px) {
|
||||
@ -1662,12 +1646,13 @@
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.media-modal-icon {
|
||||
background-image: url(../images/uploader-icons-2x.png);
|
||||
background-size: 134px 15px;
|
||||
}
|
||||
|
||||
.media-frame .spinner {
|
||||
background-image: url(../images/wpspin-2x.gif);
|
||||
background-image: url('../images/spinner-2x.gif');
|
||||
}
|
||||
}
|
2
wp-includes/css/media-views.min.css
vendored
2
wp-includes/css/media-views.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,23 +1,11 @@
|
||||
.wp-pointer {
|
||||
}
|
||||
|
||||
.wp-pointer-content {
|
||||
.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);
|
||||
border: none;
|
||||
-webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,0.075);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3 {
|
||||
@ -27,14 +15,7 @@
|
||||
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);
|
||||
background: #2ea2cc;
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
@ -64,17 +45,17 @@
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close {
|
||||
padding-left:3px;
|
||||
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;
|
||||
font-size: 13px;
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
left: -12px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.wp-pointer-buttons a.close:hover:before {
|
||||
@ -91,7 +72,9 @@
|
||||
|
||||
.wp-pointer-arrow {
|
||||
z-index: 10;
|
||||
background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 0 solid transparent;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow-inner {
|
||||
@ -121,38 +104,38 @@
|
||||
.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;
|
||||
border-width: 0 17px 15px 17px;
|
||||
border-bottom-color: #2ea2cc;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
bottom: 0;
|
||||
background-position: 0 -46px;
|
||||
border-width: 15px 17px 0 17px;
|
||||
border-top-color: #fff;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
left: 0;
|
||||
background-position: 0 -15px;
|
||||
border-width: 17px 15px 17px 0;
|
||||
border-right-color: #fff;
|
||||
}
|
||||
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
right:0;
|
||||
background-position:-16px -15px;
|
||||
border-width: 17px 0 17px 15px;
|
||||
border-left-color: #fff;
|
||||
}
|
||||
|
||||
/* - RTL
|
||||
@ -185,44 +168,3 @@
|
||||
.rtl .wp-pointer-undefined .wp-pointer-arrow {
|
||||
right: 50px;
|
||||
}
|
||||
|
||||
/**
|
||||
* HiDPI Displays
|
||||
*/
|
||||
@media print,
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
.wp-pointer-buttons a.close:before {
|
||||
background-image: url('../images/xit-2x.gif');
|
||||
background-size: 20px auto;
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
background-image: url('../images/icon-pointer-flag-2x.png');
|
||||
background-size: 36px auto;
|
||||
}
|
||||
|
||||
.wp-pointer-arrow {
|
||||
background: url('../images/arrow-pointer-blue-2x.png') 0 0 no-repeat;
|
||||
background-size: 30px 60px;
|
||||
}
|
||||
|
||||
.wp-pointer-top .wp-pointer-arrow,
|
||||
.wp-pointer-undefined .wp-pointer-arrow {
|
||||
background-position: 0 1px;
|
||||
}
|
||||
|
||||
.wp-pointer-bottom .wp-pointer-arrow {
|
||||
background-position: 0 -47px;
|
||||
}
|
||||
|
||||
.wp-pointer-left .wp-pointer-arrow {
|
||||
background-position: 1px -15px;
|
||||
}
|
||||
|
||||
.wp-pointer-right .wp-pointer-arrow {
|
||||
background-position:-17px -15px;
|
||||
}
|
||||
}
|
||||
|
2
wp-includes/css/wp-pointer.min.css
vendored
2
wp-includes/css/wp-pointer.min.css
vendored
@ -1 +1 @@
|
||||
.wp-pointer{}.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,.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}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-pointer-buttons a.close:before{background-image:url(../images/xit-2x.gif);background-size:20px auto}.wp-pointer-content h3:before{background-image:url(../images/icon-pointer-flag-2x.png);background-size:36px auto}.wp-pointer-arrow{background:url(../images/arrow-pointer-blue-2x.png) 0 0 no-repeat;background-size:30px 60px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{background-position:0 1px}.wp-pointer-bottom .wp-pointer-arrow{background-position:0 -47px}.wp-pointer-left .wp-pointer-arrow{background-position:1px -15px}.wp-pointer-right .wp-pointer-arrow{background-position:-17px -15px}}
|
||||
.wp-pointer-content{padding:0 0 10px;position:relative;font-size:13px;background:#fff;border:0;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.075);box-shadow:0 3px 6px rgba(0,0,0,.075)}.wp-pointer-content h3{position:relative;margin:0 0 5px;padding:15px 18px 14px 60px;line-height:1.4em;font-size:14px;color:#fff;background:#2ea2cc}.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{font-size:13px;width:10px;height:100%;position:absolute;left:-12px;top:1px}.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;width:0;height:0;border:0 solid transparent}.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}.wp-pointer-left .wp-pointer-arrow,.wp-pointer-right .wp-pointer-arrow{top:50%;margin-top:-15px}.wp-pointer-top .wp-pointer-arrow,.wp-pointer-undefined .wp-pointer-arrow{top:0;border-width:0 17px 15px;border-bottom-color:#2ea2cc}.wp-pointer-bottom .wp-pointer-arrow{bottom:0;border-width:15px 17px 0;border-top-color:#fff}.wp-pointer-left .wp-pointer-arrow{left:0;border-width:17px 15px 17px 0;border-right-color:#fff}.wp-pointer-right .wp-pointer-arrow{right:0;border-width:17px 0 17px 15px;border-left-color:#fff}.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}
|
BIN
wp-includes/fonts/dashicons.eot
Normal file
BIN
wp-includes/fonts/dashicons.eot
Normal file
Binary file not shown.
175
wp-includes/fonts/dashicons.svg
Normal file
175
wp-includes/fonts/dashicons.svg
Normal file
@ -0,0 +1,175 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata></metadata>
|
||||
<defs>
|
||||
<font id="dashiconsregular" horiz-adv-x="2000" >
|
||||
<font-face units-per-em="2000" ascent="2000" descent="0" />
|
||||
<missing-glyph horiz-adv-x="500" />
|
||||
<glyph unicode="" horiz-adv-x="500" d="M0 0z" />
|
||||
<glyph unicode="" d="M1448 894l-707 707l150 150q25 28 85 34.5t134 -11t132 -55.5q45 -30 126.5 -97t164.5 -113q43 -24 73 -38t76.5 -30.5t87.5 -23t95.5 -6t112.5 12.5zM1377 823l-707 707l-177 -177q-29 -29 -29 -70.5t29 -70.5l106 -106q29 -29 29 -71t-29 -71q-27 -27 -61.5 -54 t-86 -63t-73.5 -52q-66 -49 -101 -84q-52 -52 -92 -108.5t-64 -113t-20.5 -108.5t39.5 -88t88 -39.5t108.5 20.5t113 63.5t108.5 91.5q34 34 85 102q13 17 51 72t64 88.5t54 60.5q29 29 70.5 29t70.5 -29l106 -106q29 -29 70.5 -29t70.5 29z" />
|
||||
<glyph unicode="" d="M500 1800h900q82 0 141 -59t59 -141v-700q0 -82 -59 -141t-141 -59h-200l-500 -500v500h-200q-82 0 -141 59t-59 141v700q0 82 59 141t141 59z" />
|
||||
<glyph unicode="" d="M1600 1150l153 -153l-106 -106l-647 647l-647 -647l-106 106l753 753l400 -400v200h200v-400zM1000 1396l600 -599v-597h-1200v597zM1200 300v500h-400v-500h400z" />
|
||||
<glyph unicode="" d="M1774 1724q126 -127 126 -305t-126 -305l-153 -152q-82 -82 -195 -110.5t-219 1.5l262 261l76 77l76 76q63 63 63 152t-63 152q-63 64 -152 64t-152 -64l-77 -76l-338 -338q-29 106 -0.5 219t110.5 195l152 153q127 126 305.5 126t304.5 -126zM859 657l534 534 q31 31 31 76t-31 76q-34 32 -78 31t-75 -31l-533 -534q-31 -31 -31 -76t31 -76q34 -32 78 -31t74 31zM783 428l414 415q30 -106 1.5 -219t-110.5 -195l-152 -153q-127 -126 -305 -126t-305 126q-126 126 -126 305t126 305l153 152q82 82 195 110.5t219 -0.5l-414 -415 q-64 -63 -64 -152t64 -153q63 -63 152 -63t152 63z" />
|
||||
<glyph unicode="" d="M1300 900v700q0 41 -29.5 70.5t-70.5 29.5h-167l-133 200h-400l-133 -200h-167q-41 0 -70.5 -29.5t-29.5 -70.5v-700q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5zM700 1550q104 0 177 -73t73 -177t-73 -177t-177 -73t-177 73t-73 177t73 177t177 73z M1400 1400h500v-1050q0 -104 -73 -177t-177 -73t-177 73t-73 177t73 177t177 73q23 0 50 -5v505h-300v300zM1000 595v105h200v-350q0 -104 -73 -177t-177 -73t-177 73t-73 177t73 177t177 73q23 0 50 -5z" />
|
||||
<glyph unicode="" d="M600 500v1300h1000v-1300h-1000zM500 400h800v-200h-1000v1300h200v-1100z" />
|
||||
<glyph unicode="" d="M1311 1564l-324 -324l-187 187l324 324q26 26 72 16.5t84 -48.5q39 -38 48 -83.5t-17 -71.5zM511 1387l91 112l901 -901l-119 -84q-50 -50 -167.5 -83t-214.5 -33h-388l-124 -124q-44 -44 -106 -44t-106 44q-44 43 -44 105.5t44 106.5l124 124v388q0 96 30.5 218 t78.5 171zM1237 990l324 324q25 26 71 17t84 -48q39 -38 48 -83.5t-17 -71.5l-324 -325z" />
|
||||
<glyph unicode="" d="M1668 1023q-99 -99 -236 -125t-259 26l-541 -652q-74 -74 -179 -74t-179 74t-74 179t74 178l652 542q-52 122 -26 259t125 236q94 94 224 122t248 -16l-289 -289l282 -282l286 287q41 -117 13 -244.5t-121 -220.5zM381 379q30 -29 72 -29t71 29q30 30 30 72t-30 71 q-29 30 -71 30t-72 -30q-29 -29 -29 -71t29 -72z" />
|
||||
<glyph unicode="" d="M1800 400v1200q0 41 -29.5 70.5t-70.5 29.5h-1300q-41 0 -70.5 -29.5t-29.5 -70.5v-1200q0 -41 29.5 -70.5t70.5 -29.5h1300q41 0 70.5 29.5t29.5 70.5zM800 900h100q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5 t-35.5 14.5t-14.5 35.5v150h-100q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h100v550q0 21 14.5 35.5t35.5 14.5t35.5 -14.5t14.5 -35.5v-550zM1300 1100h-100q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h100v150q0 21 14.5 35.5t35.5 14.5t35.5 -14.5 t14.5 -35.5v-150h100q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-550q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v550z" />
|
||||
<glyph unicode="" d="M1044 1698l182 182l636 -635l-183 -182q-78 52 -175 42.5t-166 -78.5l-75 -75q-68 -69 -77.5 -165.5t42.5 -175.5l-183 -182l-241 241l-280 -279q-54 -54 -203.5 -155t-176.5 -74t74 177.5t154 203.5l279 279l-241 242l183 182q78 -52 175 -42.5t165 78.5l75 75 q69 68 78.5 165t-42.5 176z" />
|
||||
<glyph unicode="" d="M1000 1075q-46 0 -86.5 19t-67.5 49.5t-49 67t-34.5 73t-21 67t-11.5 49.5l-3 19q-6 55 -3 108.5t24.5 103t53 87t82.5 60t113 22.5q103 0 171 -59t91 -144t9 -178q-1 -7 -3 -19.5t-10.5 -48t-20.5 -68t-33.5 -72.5t-48 -68.5t-66.5 -48t-86 -19.5zM1000 833l272 182 q116 0 221.5 -67t168 -172t62.5 -214v-249q-15 -5 -41.5 -12.5t-109 -27t-164.5 -34.5t-195 -27t-214 -12q-102 0 -214.5 11.5t-199.5 28t-159.5 33.5t-111.5 29l-39 11v249q0 112 58 215t162.5 168t226.5 65z" />
|
||||
<glyph unicode="" d="M1800 800h-218q-26 -107 -81 -193l154 -154l-210 -210l-154 154q-88 -55 -191 -79v-218h-300v218q-103 24 -191 79l-154 -154l-212 212l154 154q-55 88 -79 191h-218v297h217q23 101 80 194l-154 154l210 210l154 -154q85 54 193 81v218h300v-218q103 -24 191 -79 l154 154l212 -212l-154 -154q57 -93 80 -194h217v-297zM950 650q124 0 212 88t88 212t-88 212t-212 88t-212 -88t-88 -212t88 -212t212 -88z" />
|
||||
<glyph unicode="" d="M1695 1742q96 -96 130.5 -225t0 -257.5t-130.5 -224.5q-112 -112 -267.5 -138.5t-291.5 37.5l-187 -331l-299 -31l-150 -372h-300l-100 200l795 769q-71 139 -46.5 298.5t139.5 274.5q96 96 225 130.5t257.5 0t224.5 -130.5zM1444 1363q55 0 94 39t39 95q0 55 -39 94 t-94 39t-94 -39t-39 -94t39 -94.5t94 -39.5z" />
|
||||
<glyph unicode="" d="M1000 1700q154 0 290.5 -63t234.5 -175l-171 -195q-62 82 -155 130t-199 48q-157 0 -277.5 -98t-154.5 -247h232l-350 -400l-350 400h208q24 168 121 305t247.5 216t323.5 79zM1000 296q-155 0 -291 63t-234 175l171 195q62 -82 155 -130t199 -48q157 0 277.5 98 t154.5 247h-232l350 400l350 -400h-208q-18 -126 -79.5 -236.5t-152.5 -190.5t-210.5 -126.5t-249.5 -46.5z" />
|
||||
<glyph unicode="" d="M1800 600v1000q0 41 -29.5 70.5t-70.5 29.5h-1400q-41 0 -70.5 -29.5t-29.5 -70.5v-1000q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1000 1400q169 0 323 -79t277 -221q-123 -142 -277 -221t-323 -79t-323 79t-277 221q123 142 277 221t323 79z M1200 1100q0 82 -59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59t141 59t59 141zM1400 300h300v-100h-1400v100h300v100h800v-100z" />
|
||||
<glyph unicode="" d="M1900 400v1300q0 41 -29.5 70.5t-70.5 29.5h-1500q-41 0 -70.5 -29.5t-29.5 -70.5v-1300q0 -41 29.5 -70.5t70.5 -29.5h1500q41 0 70.5 29.5t29.5 70.5zM400 1600h1300v-400h-1300v400zM500 1500v-200h300v200h-300zM900 1500v-200h300v200h-300zM1300 1500v-200h300v200 h-300zM450 1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM600 1000h400v-100h-400v100zM1200 1000h500v-500h-500v500zM450 800q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5 t14.5 35.5t35.5 14.5zM600 800h400v-100h-400v100zM1300 800v-200h300v200h-300zM450 600q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM600 600h400v-100h-400v100z" />
|
||||
<glyph unicode="" d="M500 1800h1000q82 0 141 -59t59 -141v-800q0 -82 -59 -141t-141 -59h-200l-500 -500v500h-300q-82 0 -141 59t-59 141v800q0 82 59 141t141 59zM1350 950l-250 250l250 250l-100 100l-250 -250l-250 250l-100 -100l250 -250l-250 -250l100 -100l250 250l250 -250z" />
|
||||
<glyph unicode="" d="M1000 1000l-746 298l46 -1098h-200l48 1141l-148 59l1000 400l1000 -400zM1000 1500q-41 0 -70.5 -14.5t-29.5 -35.5t29.5 -35.5t70.5 -14.5t70.5 14.5t29.5 35.5t-29.5 35.5t-70.5 14.5zM1000 900l557 223q112 -149 136 -330q-52 7 -93 7q-188 0 -347.5 -92.5 t-252.5 -248.5q-93 156 -252.5 248.5t-347.5 92.5q-40 0 -93 -7q24 181 136 330z" />
|
||||
<glyph unicode="" d="M1689 1880l141 -141q29 -29 29 -70.5t-29 -70.5l-430 -431v-967h-1100v1500h1067l180 180q30 29 71.5 29.5t70.5 -29.5zM1123 1032l537 536l-142 142l-536 -537l-71 -212z" />
|
||||
<glyph unicode="" d="M2000 1000q0 163 -50.5 315.5t-143 275.5t-215.5 215.5t-275.5 143t-315.5 50.5t-315.5 -50.5t-275.5 -143t-215.5 -215.5t-143 -275.5t-50.5 -315.5t50.5 -315.5t143 -275.5t215.5 -215.5t275.5 -143t315.5 -50.5t315.5 50.5t275.5 143t215.5 215.5t143 275.5 t50.5 315.5zM1000 1899q183 0 349.5 -71t287 -191.5t191.5 -287t71 -349.5t-71 -349.5t-191.5 -287t-287 -191.5t-349.5 -71t-349.5 71t-287 191.5t-191.5 287t-71 349.5t71 349.5t191.5 287t287 191.5t349.5 71zM801 518l-305 821l105 8q20 2 27 27.5t-2.5 49t-30.5 22.5 q-129 -10 -213 -10q-33 0 -52 1q110 166 287 263t383 97q154 0 293.5 -55t247.5 -154q-52 7 -98.5 -30.5t-46.5 -111.5q0 -29 11.5 -61.5t22.5 -52.5t37 -61q5 -8 8 -13q50 -87 50 -221q0 -60 -31.5 -172t-63.5 -194l-32 -82l-271 750q21 1 40 5t27 8l8 3q20 2 27.5 29.5 t-2.5 53.5t-30 25q-130 -11 -214 -11q-35 0 -87.5 3l-87.5 5l-36 3q-20 1 -30 -25.5t-2.5 -54t27.5 -28.5l84 -8l112 -304zM1403 303l261 697q3 7 7 19.5t15 53.5t15.5 82t8 105t-6.5 121q94 -170 94 -381q0 -219 -106.5 -405t-287.5 -292zM268 1323l382 -1048 q-202 99 -324.5 294.5t-122.5 430.5q0 179 65 323zM1013 870l229 -625q-117 -42 -242 -42q-103 0 -206 30z" />
|
||||
<glyph unicode="" d="M300 1900h1400v-1800h-1400v1800zM1400 1500v100h-800v-100h800zM1400 1200v100h-800v-100h800zM1400 900v100h-800v-100h800zM1200 600v100h-600v-100h600z" />
|
||||
<glyph unicode="" d="M854 726q0 130 -72 222q-50 63 -136.5 82t-159.5 3q-25 143 78 303.5t264 241.5l-163 228q-98 -47 -188.5 -114t-169.5 -157t-133.5 -192.5t-79.5 -227t-9 -252.5q26 -211 139.5 -337t283.5 -126q151 0 248 88q98 88 98 238zM1797 726q0 130 -72 222q-50 63 -136.5 82 t-159.5 3q-25 143 78 303.5t264 241.5l-163 228q-98 -47 -188.5 -114t-169.5 -157t-133.5 -192.5t-79.5 -227t-9 -252.5q26 -211 139.5 -337t283.5 -126q151 0 248 88q98 88 98 238z" />
|
||||
<glyph unicode="" d="M100 1900h1800v-1200l-600 -600h-1200v1800zM400 1600v-100h1200v100h-1200zM400 1200v-100h1200v100h-1200zM1000 700v100h-600v-100h600zM1200 300l500 500h-500v-500z" />
|
||||
<glyph unicode="" d="M1100 1400h-82q-81 0 -149.5 -71t-68.5 -145v-184l-300 -300v300h-200q-82 0 -141 59t-59 141v500q0 82 59 141t141 59h600q82 0 141 -59t59 -141v-300zM1100 1300h600q82 0 141 -59t59 -141v-500q0 -82 -59 -141t-141 -59h-200v-300l-300 300h-100q-82 0 -141 59 t-59 141v500q0 82 59 141t141 59z" />
|
||||
<glyph unicode="" d="M200 1900h1600q41 0 70.5 -29.5t29.5 -70.5v-1600l-1800 2v1598q0 41 29.5 70.5t70.5 29.5zM600 1800l-200 -300h100l200 300h-100zM1000 1800h-100l-200 -300h100zM1300 1800h-100l-200 -300h100zM1600 1800h-100l-200 -300h100zM1700 400v1000h-1400v-1000h1400z M800 1300l600 -400l-600 -400v800z" />
|
||||
<glyph unicode="" d="M699 1692l1102 200q40 6 69.5 -25.5t29.5 -74.5v-200v-1042q0 -145 -102.5 -247.5t-247.5 -102.5t-247.5 102.5t-102.5 247.5t102.5 247.5t247.5 102.5q73 0 150 -35v627l-900 -200v-892q-18 -128 -118 -214t-232 -86q-145 0 -247.5 102.5t-102.5 247.5t102.5 247.5 t247.5 102.5q73 0 150 -35v827q0 40 28 66.5t71 33.5z" />
|
||||
<glyph unicode="" d="M225 1900h1550q52 0 88.5 -36.5t36.5 -88.5v-1550q0 -52 -36.5 -88.5t-88.5 -36.5h-1550q-52 0 -88.5 36.5t-36.5 88.5v1550q0 52 36.5 88.5t88.5 36.5zM1700 300v1400h-1400v-1400h1400zM1000 1400q0 82 -59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59t141 59 t59 141zM1300 900q0 8 0.5 21t3 54t7.5 81t15.5 94t25 100.5t37.5 93.5t52 80.5t70 54.5t89 21v-1000q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v700q41 0 79.5 -22t67.5 -57.5t55 -78t43.5 -85t30 -78t18.5 -57.5l6 -22q4 12 12 32.5t36 72t60 91 t84 72t108 32.5t107.5 -20.5t85 -50t59 -59t36.5 -50.5z" />
|
||||
<glyph unicode="" d="M1500 1600h294q44 0 75 -31t31 -75v-1181q0 -45 -31 -79t-75 -34h-1588q-44 0 -75 34t-31 79v1181q0 44 31 75t75 31h294l300 200h400zM1000 500q166 0 283 117t117 283t-117 283t-283 117t-283 -117t-117 -283t117 -283t283 -117z" />
|
||||
<glyph unicode="" d="M1000 1900q205 0 362 -33.5t257.5 -91t164.5 -142t90 -177.5t26 -206t-26 -206t-90 -177.5t-164.5 -142t-257.5 -91t-362 -33.5t-362 33.5t-257.5 91t-164.5 142t-90 177.5t-26 206t26 206t90 177.5t164.5 142t257.5 91t362 33.5zM550 1100q62 0 106 44t44 106t-44 106 t-106 44t-106 -44t-44 -106t44 -106t106 -44zM1000 1100q62 0 106 44t44 106t-44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44zM1450 1100q62 0 106 44t44 106t-44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44zM600 550q62 0 106 -44t44 -106t-44 -106t-106 -44 t-106 44t-44 106t44 106t106 44zM300 350q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z" />
|
||||
<glyph unicode="" d="M1700 1300v-300h-500v-500h-300v500h-500v300h500v500h300v-500h500z" />
|
||||
<glyph unicode="" d="M1700 1300v300h-200v200h-300v-100h-900v-1500h1100v900h100v200h200zM1600 1500v-100h-200v-200h-100v200h-200v100h200v200h100v-200h200z" />
|
||||
<glyph unicode="" d="M0 1700h2000v-1400h-2000v1400zM1900 1300v200h-1800v-200h1800zM1500 800v400h-1000v-400h1000zM400 900v200h-300v-200h300zM1900 900v200h-300v-200h300zM1900 500v200h-1800v-200h1800z" />
|
||||
<glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1100 780v400h-1000v-400h1000zM1900 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" />
|
||||
<glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1900 780v400h-1000v-400h1000zM800 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" />
|
||||
<glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1500 780v400h-1000v-400h1000z" />
|
||||
<glyph unicode="" d="M800 1400l600 -403l-600 -397v800z" />
|
||||
<glyph unicode="" d="M1500 1200l-403 -600l-397 600h800z" />
|
||||
<glyph unicode="" d="M1300 600l-600 403l600 397v-800z" />
|
||||
<glyph unicode="" d="M700 700l403 600l397 -600h-800z" />
|
||||
<glyph unicode="" d="M700 700l403 600l397 -600h-800z" />
|
||||
<glyph unicode="" d="M1500 1600h300v-1400h-1600v1400h300v100q0 62 44 106t106 44t106 -44t44 -106v-100h400v100q0 62 44 106t106 44t106 -44t44 -106v-100zM600 1700v-250q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v250q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5z M1300 1700v-250q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v250q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5zM1700 300v900h-1400v-900h1400zM700 400v700h-200v-700h200zM1100 400v700h-200v-700h200zM1500 400v700h-200v-700h200z" />
|
||||
<glyph unicode="" d="M1439 1450l134 -94l-537 -745h-134l-302 401l134 125l235 -187z" />
|
||||
<glyph unicode="" d="M1000 1784q160 0 305 -62t250 -167t167 -250t62 -305t-62 -305t-167 -250t-250 -167t-305 -62t-305 62t-250 167t-167 250t-62 305q0 213 106 393.5t286.5 285.5t391.5 105zM1200 612v776l-582 -385z" />
|
||||
<glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1500 700l-300 300l300 300l-200 200l-300 -300l-300 300l-200 -200 l300 -300l-300 -300l200 -200l300 300l300 -300z" />
|
||||
<glyph unicode="" d="M1000 1900l-300 -600l-600 -75l413 -462l-113 -663l600 300l600 -300l-112 663l412 462l-600 75zM1000 1676l234 -469l465 -58l-318 -356l87 -515l-468 234l-468 -234l87 515l-318 356l465 58z" />
|
||||
<glyph unicode="" d="M1000 1900l300 -600l600 -75l-412 -462l112 -663l-600 300l-600 -300l113 663l-413 462l600 75z" />
|
||||
<glyph unicode="" d="M1100 1300h-1000l500 -700zM900 600h1000l-500 700z" />
|
||||
<glyph unicode="" d="M1476 1900q134 0 229 -95.5t95 -229.5t-95 -229t-229 -95q-33 0 -70 8l-106 -106v-1053h-1100v1500h954q9 145 99 222.5t223 77.5zM1476 1351q93 0 158.5 66t65.5 158q0 93 -65.5 159t-158.5 66t-158.5 -66t-65.5 -159q0 -54 27 -103l-322 -322q-35 -35 -101.5 -133 t-48.5 -116q3 -4 10 -4q32 0 120.5 61.5t118.5 91.5l324 324q48 -23 96 -23z" />
|
||||
<glyph unicode="" d="M1555 630l-219 -206l-342 365l-364 -343l-206 218l364 343l-342 364l218 206l343 -364l364 342l205 -218l-364 -343z" />
|
||||
<glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1000 500q136 0 251 67t182 182t67 251t-67 251t-182 182t-251 67 t-251 -67t-182 -182t-67 -251t67 -251t182 -182t251 -67z" />
|
||||
<glyph unicode="" d="M1400 1100h100q41 0 70.5 -29.5t29.5 -70.5v-700q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v700q0 41 29.5 70.5t70.5 29.5h100v300q0 166 117 283t283 117t283 -117t117 -283v-300zM1200 1100v300q0 82 -59 141t-141 59t-141 -59t-59 -141v-300 h400zM1100 400l-36 215q39 18 62.5 54.5t23.5 80.5q0 62 -44 106t-106 44t-106 -44t-44 -106q0 -44 23.5 -80.5t62.5 -54.5l-36 -215h200z" />
|
||||
<glyph unicode="" d="M1600 1600h196q43 0 73.5 -30.5t30.5 -73.5v-1292q0 -43 -30.5 -73.5t-73.5 -30.5h-1292q-43 0 -73.5 30.5t-30.5 73.5v196h-196q-43 0 -73.5 30.5t-30.5 73.5v1292q0 43 30.5 73.5t73.5 30.5h1292q43 0 73.5 -30.5t30.5 -73.5v-196zM300 600h1100v1100h-1100v-1100z M800 1450q0 62 -44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44t106 44t44 106zM1000 1000q2 10 6 28t18.5 70t30.5 99.5t43 105t55.5 99t67 70t79.5 28.5v-800h-900v600q56 0 97 -31t60 -75t30 -88t12 -75l1 -31q1 4 2.5 11.5t8 28t15.5 39.5t25.5 42t36 39.5t49 28 t63.5 11.5q47 0 84.5 -20.5t58 -50t34.5 -59t19 -50.5zM1700 300v1100h-100v-896q0 -43 -30.5 -73.5t-73.5 -30.5h-896v-100h1100z" />
|
||||
<glyph unicode="" d="M200 100h1600q41 0 70.5 29.5t29.5 70.5v1600q0 41 -29.5 70.5t-70.5 29.5h-1600q-41 0 -70.5 -29.5t-29.5 -70.5v-1600q0 -41 29.5 -70.5t70.5 -29.5zM400 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M1700 1700v-200h-1100v200h1100zM400 1300q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 1300v-200h-1100v200h1100zM400 900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5 t29.5 70.5t70.5 29.5zM1700 900v-200h-1100v200h1100zM400 500q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 500v-200h-1100v200h1100z" />
|
||||
<glyph unicode="" d="M1900 200v1600q0 41 -29.5 70.5t-70.5 29.5h-1600q-41 0 -70.5 -29.5t-29.5 -70.5v-1600q0 -41 29.5 -70.5t70.5 -29.5h1600q41 0 70.5 29.5t29.5 70.5zM400 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M1700 1700v-600h-1100v600h1100zM400 900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 900v-600h-1100v600h1100z" />
|
||||
<glyph unicode="" d="M1900 800v-300h-400v-400h-300v400h-800v800h-400v300h400v400h300v-400h700l300 300l100 -100l-300 -300v-700h400zM1100 1300h-400v-400zM800 800h400v400z" />
|
||||
<glyph unicode="" d="M700 1500h-195q0 137 71.5 213.5t223.5 76.5v210q-232 0 -368 -139.5t-136 -360.5h-178l262 -339zM2000 1900v-1400h-500v-500h-1400v1000h900v900h1000zM1800 1700h-600v-700h300v-300h300v1000zM1300 800h-1000v-600h1000v600z" />
|
||||
<glyph unicode="" d="M1595 1500h-195l320 -339l262 339h-178q0 221 -136 360.5t-368 139.5v-210q152 0 223.5 -76.5t71.5 -213.5zM100 1900h1000v-900h900v-1000h-1400v500h-500v1400zM300 1700v-1000h300v300h300v700h-600zM800 800v-600h1000v600h-1000z" />
|
||||
<glyph unicode="" d="M2000 1100v-200h-300v-800h-1400v800h-300v200h300v800h1400v-800h300zM650 1300h700l-350 400zM1700 1050h-1400v-100h1400v100zM1350 700h-700l350 -400z" />
|
||||
<glyph unicode="" d="M1900 1700v-1400h-800v-300h-200v300h-800v1400h800v300h200v-300h800zM1050 300v1400h-100v-1400h100zM700 1350l-400 -350l400 -350v700zM1700 1000l-400 350v-700z" />
|
||||
<glyph unicode="" d="M1723 990q79 -186 79 -390t-79 -390l-278 117q55 132 55 273q0 142 -55 272q-52 125 -150 223q-97 97 -222 150q-132 55 -273 55v-300l-600 450l600 450v-298q204 0 390 -79q182 -77 318 -215q138 -136 215 -318z" />
|
||||
<glyph unicode="" d="M277 990q77 182 215 318q136 138 318 215q186 79 390 79v298l600 -450l-600 -450v300q-141 0 -273 -55q-124 -53 -222 -150q-98 -98 -150 -223q-55 -130 -55 -272q0 -141 55 -273l-278 -117q-79 186 -79 390t79 390z" />
|
||||
<glyph unicode="" d="M1400 1400q0 -138 -84.5 -245t-215.5 -141v-614q0 -44 -50 -94t-100 -78l-50 -28v814q-131 34 -215.5 141t-84.5 245q0 166 117 283t283 117t283 -117t117 -283zM800 1500q0 -41 29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-70.5 -29.5 t-29.5 -70.5z" />
|
||||
<glyph unicode="" d="M600 700h900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v1000h-200q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-200h1300l-400 -700h-900v-100zM550 400q62 0 106 -44t44 -106 t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1450 400q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
|
||||
<glyph unicode="" d="M200 1800h1600q41 0 70.5 -29.5t29.5 -70.5v-1400q0 -41 -29.5 -70.5t-70.5 -29.5h-1600q-41 0 -70.5 29.5t-29.5 70.5v1400q0 41 29.5 70.5t70.5 29.5zM1700 400v900h-1400v-900h1400zM400 1200v-100h300v100h-300zM800 1200v-300h800v300h-800zM400 800v-100h300v100 h-300zM800 800v-300h800v300h-800z" />
|
||||
<glyph unicode="" d="M1485 997q133 -14 224 -113t91 -234q0 -145 -102.5 -247.5t-247.5 -102.5h-1000q-145 0 -247.5 102.5t-102.5 247.5q0 133 88 231t218 115q-6 26 -6 54q0 104 73 177t177 73q49 0 95 -19q50 99 145.5 159t209.5 60q166 0 283 -117t117 -283q0 -48 -15 -103z" />
|
||||
<glyph unicode="" d="M1000 1500q102 0 201.5 -27.5t176.5 -71.5t146.5 -97.5t118.5 -107t85.5 -97.5t53.5 -71l18 -28q-6 -10 -18 -28t-53 -70t-86.5 -99.5t-117.5 -105t-147.5 -99t-175.5 -70t-202 -28.5t-201.5 27.5t-176.5 71.5t-146.5 97.5t-118.5 107t-85.5 97.5t-53.5 71l-18 28 q6 10 18 28t53 70t86.5 99.5t117.5 105t147.5 99t175.5 70t202 28.5zM1000 600q77 0 151 22t132 57.5t110 78t89 85t64.5 78t40.5 57.5l13 22q-5 8 -14 22.5t-39.5 56t-64.5 79.5t-88 84t-111 79t-131.5 56t-151.5 23t-151 -22t-132 -57.5t-110 -78t-89 -85t-64.5 -78 t-40.5 -57.5l-13 -22q5 -8 14 -22.5t39.5 -56t64.5 -79.5t88 -84t111 -79t131.5 -56t151.5 -23zM1300 1000q0 124 -88 212t-212 88t-212 -88t-88 -212t88 -212t212 -88t212 88t88 212z" />
|
||||
<glyph unicode="" d="M1800 300v1400q0 41 -29.5 70.5t-70.5 29.5h-1400q-41 0 -70.5 -29.5t-29.5 -70.5v-1400q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1700 300h-1400v1400h1400v-1400zM475 1600h1050q31 0 53 -22t22 -53v-125h-100v-300h100v-200h-100v-300h100v-125 q0 -31 -22 -53t-53 -22h-1050q-31 0 -53 22t-22 53v1050q0 31 22 53t53 22zM1300 1000q0 166 -117 283t-283 117t-283 -117t-117 -283t117 -283t283 -117t283 117t117 283zM900 1300l77 -115q55 -24 89 -74t34 -111q0 -82 -59 -141t-141 -59t-141 59t-59 141q0 61 34 111 t89 74z" />
|
||||
<glyph unicode="" d="M1214 1582q139 -139 158 -334.5t-86 -354.5q3 -3 15.5 -14t20.5 -17q34 -27 81 -59q62 -43 66 -47q61 -45 94 -78q49 -49 84 -100q36 -50 59 -104q22 -55 18 -100q-3 -48 -36 -81t-81 -36q-49 -3 -99 19q-52 21 -104 59q-51 35 -100 84q-33 33 -77 93q-2 3 -47 66 q-32 46 -56 78q-24 30 -44 50q-154 -83 -334 -57t-310 155q-160 161 -160 389.5t160 388.5q106 106 247.5 143.5t283 0t247.5 -143.5zM1073 946q102 103 102 247.5t-102 247.5q-103 103 -248 103t-247 -103q-103 -103 -103 -247.5t103 -247.5q102 -103 247 -103t248 103z " />
|
||||
<glyph unicode="" d="M900 1100v600h-600v-600h600zM1700 1100v600h-600v-600h600zM900 300v600h-600v-600h600zM1700 300v600h-600v-600h600z" />
|
||||
<glyph unicode="" d="M500 600v800h1000v-800h-1000zM200 700v600h200v-600h-200zM600 1300v-600h800v600h-800zM1600 1300h200v-600h-200v600zM1300 1100v100h-600v-100h600zM1300 800v200h-600v-200h600z" />
|
||||
<glyph unicode="" d="M1200 1600h300q41 0 70.5 -29.5t29.5 -70.5v-100h-1300v100q0 41 29.5 70.5t70.5 29.5h300q17 86 88.5 143t161.5 57t161.5 -57t88.5 -143zM800 1600h300q-16 43 -58.5 71.5t-91.5 28.5t-91.5 -28.5t-58.5 -71.5zM400 1300h1100v-1000q0 -41 -29.5 -70.5t-70.5 -29.5 h-900q-41 0 -70.5 29.5t-29.5 70.5v1000zM700 400v700h-100v-700h100zM1000 400v700h-100v-700h100zM1300 400v700h-100v-700h100z" />
|
||||
<glyph unicode="" d="M1800 200v1600h-1600v-1600h1600zM1600 1500h-1200v100h1200v-100zM700 1300v-300h300q0 -124 -88 -212t-212 -88t-212 88t-88 212t88 212t212 88zM800 1100v200q82 0 141 -59t59 -141h-200zM1600 1200h-400v100h400v-100zM1600 900h-400v200h400v-200zM1600 700h-400 v100h400v-100zM1600 400h-1200v100h1200v-100z" />
|
||||
<glyph unicode="" d="M1000 1000v700q143 0 272.5 -55.5t223 -149t149 -223t55.5 -272.5h-700zM900 1600v-700h700q0 -143 -55.5 -272.5t-149 -223t-223 -149t-272.5 -55.5t-272.5 55.5t-223 149t-149 223t-55.5 272.5t55.5 272.5t149 223t223 149t272.5 55.5z" />
|
||||
<glyph unicode="" d="M1800 200v1600h-400v-1600h400zM1200 200v1100h-400v-1100h400zM600 200v800h-400v-800h400z" />
|
||||
<glyph unicode="" d="M600 1600v-1300h454q207 0 326 100q120 99 120 277q0 126 -51 201q-52 76 -167 103v9q85 15 136 90t51 191q0 172 -117 250q-115 79 -374 79h-378zM857 1085v289h136q109 0 161 -32q51 -33 51 -107q0 -80 -47 -115t-151 -35h-150zM857 866h160q216 0 216 -161 q0 -91 -51 -134q-50 -43 -157 -43h-168v338z" />
|
||||
<glyph unicode="" d="M1478 1400h-213l-280 -900h212l-62 -200h-675l62 200h214l280 900h-213l62 200h675z" />
|
||||
<glyph unicode="" d="M550 1300q-62 0 -106 44t-44 106t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 1500h900v-100h-900v100zM550 800q-62 0 -106 44t-44 106t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 1000h900v-100h-900v100zM550 300q-62 0 -106 44t-44 106 t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 500h900v-100h-900v100z" />
|
||||
<glyph unicode="" d="M600 1300v400h-69l-129 -103l40 -51l46 37q12 10 30 28l-2 -42v-269h84zM800 1500h900v-100h-900v100zM677 805v70h-172v4l51 48q56 52 70 71q21 26 30 49q10 23 10 51q0 33 -16 56q-14 23 -44 37t-65 14q-29 0 -51 -6q-17 -3 -42 -15q-21 -12 -48 -35l45 -54 q24 19 45 30q21 10 45 10q23 0 35 -11q13 -12 13 -36q0 -15 -6 -30q-7 -16 -19 -33q-11 -13 -58 -62l-99 -100v-58h276zM800 1000h900v-100h-900v100zM671 605q0 46 -37 71q-37 26 -100 26q-78 0 -133 -40l40 -60q27 18 46 23q20 7 41 7q58 0 58 -46q0 -31 -22 -43t-70 -12 h-31v-66h31q51 0 75 -12q23 -12 23 -41q0 -32 -20 -47q-21 -15 -63 -15q-27 0 -57 8q-25 7 -52 20v-74q50 -22 118 -22q80 0 122 33q43 33 43 92q0 40 -26 64q-25 24 -74 30v2q40 9 65 37q23 28 23 65zM800 500h900v-100h-900v100z" />
|
||||
<glyph unicode="" d="M949 678q0 113 -61 190q-43 53 -117 69.5t-136 2.5q-21 122 66.5 259t225.5 206l-139 195q-106 -51 -199.5 -129t-167.5 -179.5t-110 -231t-19 -265.5q22 -180 119.5 -287.5t242.5 -107.5q128 0 212 75q83 74 83 203zM1754 678q0 113 -61 190q-43 54 -117 70t-136 2 q-21 122 66.5 259t225.5 206l-139 195q-106 -51 -199.5 -129t-167 -179.5t-109.5 -231t-19 -265.5q22 -180 119 -287.5t242 -107.5q128 0 212 75q83 74 83 203z" />
|
||||
<glyph unicode="" d="M1200 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1200 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" />
|
||||
<glyph unicode="" d="M1400 1500v200h-800v-200h800zM1700 1100v200h-1400v-200h1400zM1400 700v200h-800v-200h800zM1700 300v200h-1400v-200h1400z" />
|
||||
<glyph unicode="" d="M1700 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1700 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" />
|
||||
<glyph unicode="" d="M1700 1300v400h-1400v-400h1400zM600 900v200h-300v-200h300zM1200 900v200h-400v-200h400zM1700 900v200h-300v-200h300zM1700 300v400h-1400v-400h1400z" />
|
||||
<glyph unicode="" d="M1584 1724q36 0 71 -11q26 -8 64 -25l35 81q-78 39 -169 39q-86 0 -152 -37q-65 -37 -99 -108q-34 -68 -34 -163q0 -149 70 -228t202 -79q88 0 160 26v84q-32 -10 -74 -19q-38 -8 -74 -8q-89 0 -134 57q-47 54 -47 166q0 105 48 165q49 60 133 60zM650 1200h104l-224 600 h-106l-224 -600h103l58 166h229zM800 1800v-600h217q101 0 157 46q56 44 56 126q0 60 -30 95q-28 35 -93 47v4q50 9 78 44q28 37 28 88q0 78 -56 114q-54 36 -179 36h-178zM898 1552v166h85q68 0 97 -19q31 -18 31 -61q0 -46 -29 -66q-28 -20 -89 -20h-95zM564 1450h-174 l54 156q23 65 32 110l15 -52q8 -26 17 -51zM898 1473h99q64 0 98 -23q32 -23 32 -69q0 -51 -32 -75q-31 -24 -93 -24h-104v191zM400 700l500 -500l900 800l-100 100l-800 -600l-400 300z" />
|
||||
<glyph unicode="" d="M600 1700l-125 -125l225 -375l-375 225l-125 -125v400h400zM1400 1700h400v-400l-125 125l-375 -225l225 375zM700 800v400h600v-400h-600zM200 700l125 -125l375 225l-225 -375l125 -125h-400v400zM1400 300l125 125l-225 375l375 -225l125 125v-400h-400z" />
|
||||
<glyph unicode="" d="M1900 1800v-600h-1800v600h1800zM1800 1300v400h-1600v-400h1600zM500 1600v-200h-200v200h200zM800 1600v-200h-200v200h200zM1100 1600v-200h-200v200h200zM1400 1600v-200h-200v200h200zM1700 1600v-200h-200v200h200zM1900 1100v-900h-1800v900h1800zM1800 300v700 h-1600v-700h1600zM500 900v-200h-200v200h200zM800 900v-200h-200v200h200zM1100 900v-200h-200v200h200zM1700 900v-200h-500v200h500zM1100 600v-200h-800v200h800zM1400 600v-200h-200v200h200zM1700 600v-200h-200v200h200z" />
|
||||
<glyph unicode="" d="M1400 1500h-200v-571q0 -143 -70 -220.5t-175 -77.5q-106 0 -180.5 78t-74.5 218v573h-200v-587q0 -61 12.5 -120.5t45 -121t82 -108t129 -75.5t179.5 -29t180.5 28.5t130 74t82.5 106.5t46 120.5t13 120.5v591zM1400 200v200h-900v-200h900z" />
|
||||
<glyph unicode="" d="M200 1700h1600v-200h-1600v200zM200 1300h1600v-200h-1600v200zM200 900h1600v-200h-1600v200zM200 500h1600v-200h-1600v200z" />
|
||||
<glyph unicode="" d="M1323 500h190l-413 1100h-200l-400 -1100h188l107 300h418zM1170 954h-319l149 486z" />
|
||||
<glyph unicode="" d="M1238 1800l262 -300v-100h-1000v100l264 300h474zM1000 1500q41 0 70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5zM1800 300v1200q0 41 -29.5 70.5t-70.5 29.5h-154l54 -63v-237h-1200v238l55 62h-155q-41 0 -70.5 -29.5 t-29.5 -70.5v-1200q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1500 1100l-200 -700h-200l-100 500l-100 -500h-208l-192 700h200l100 -500l100 500h200l100 -500l100 500h200z" />
|
||||
<glyph unicode="" d="M1238 1800l262 -300v-100h-1000v100l264 300h474zM1000 1500q41 0 70.5 29t29.5 71q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5q0 -42 29.5 -71t70.5 -29zM1545 1600h155q41 0 70.5 -29.5t29.5 -70.5v-1200q0 -42 -29.5 -71t-70.5 -29h-1400q-41 0 -70.5 29 t-29.5 71v1200q0 41 29.5 70.5t70.5 29.5h155l-55 -63v-237h1200v237zM1400 900v200h-800v-200h300v-500h200v500h300z" />
|
||||
<glyph unicode="" d="M1429 1541l110 -111q61 -60 61 -147v-212q0 -87 -61 -147l-663 -663q-60 -61 -147 -61t-147 61l-111 110l-110 111q-61 60 -61 147v212q0 87 61 148l663 662q60 61 147 61q86 0 147 -61zM808 571l642 642q29 29 29 71t-29 72l-214 214q-29 29 -72 29q-42 0 -71 -29 l-642 -642q-29 -30 -29 -72t29 -71l214 -214q29 -29 71.5 -29t71.5 29z" />
|
||||
<glyph unicode="" d="M1600 1800h-300v-100h-600v100h-300v-1500h300v100h600v-100h300v1500zM600 1700v-100h-100v100h100zM1500 1700v-100h-100v100h100zM1300 1600v-500h-600v500h600zM600 1500v-100h-100v100h100zM1500 1500v-100h-100v100h100zM600 1300v-100h-100v100h100zM1500 1300 v-100h-100v100h100zM600 1100v-100h-100v100h100zM1500 1100v-100h-100v100h100zM1300 1000v-500h-600v500h600zM600 900v-100h-100v100h100zM1500 900v-100h-100v100h100zM600 700v-100h-100v100h100zM1500 700v-100h-100v100h100zM600 500v-100h-100v100h100zM1500 500 v-100h-100v100h100z" />
|
||||
<glyph unicode="" d="M1000 1460q190 0 291 -108q100 -108 100 -313q0 -192 -69 -327q-33 -62 -87.5 -111.5t-134.5 -100.5v-200h600v200h-369q146 101 212 234q74 153 74 335q0 267 -165 422q-166 155 -452 155q-287 0 -452 -157q-165 -156 -165 -420q0 -181 73 -333q62 -130 210 -236h-366 v-200h600v200q-84 55 -139 105t-85 112q-67 133 -67 322q0 206 100 313q99 108 291 108z" />
|
||||
<glyph unicode="" d="M700 1600v100h-400v-100h400zM1700 1500v200h-900v-200h900zM700 1300h-200v200l-400 -350l400 -350v200h200v300zM1700 1200v200h-900v-200h900zM1500 900v200h-700v-200h700zM1700 600v200h-900v-200h900zM700 600v100h-400v-100h400zM1100 300v200h-300v-200h300z" />
|
||||
<glyph unicode="" d="M300 1500v200h900v-200h-900zM1300 1600v100h400v-100h-400zM1300 1300h200v200l400 -350l-400 -350v200h-200v300zM300 1200v200h900v-200h-900zM500 900v200h700v-200h-700zM300 600v200h900v-200h-900zM1300 600v100h400v-100h-400zM900 300v200h300v-200h-300z" />
|
||||
<glyph unicode="" d="M1700 1000q0 190 -94 351.5t-255 255t-351 93.5q-143 0 -272.5 -55.5t-223 -149t-149 -223t-55.5 -272.5t55.5 -272.5t149 -223t223 -149t272.5 -55.5q190 0 351 93.5t255 255t94 351.5zM1070 852h-156v43q0 56 24 98q22 39 88 89q61 43 81 71q20 26 20 62q0 37 -28 58 q-28 19 -79 19q-88 0 -200 -57l-64 128q131 74 277 74q120 0 192 -58q71 -58 71 -155q0 -66 -29 -111q-27 -45 -111 -106q-55 -40 -71 -63q-15 -22 -15 -57v-35zM923 578q-27 26 -27 73q0 50 26 75t77 25q47 0 75 -26q27 -26 27 -74q0 -47 -27 -72q-27 -27 -75 -27t-76 26z " />
|
||||
<glyph unicode="" d="M1582 775q40 0 74 7q33 7 73 20v-84q-70 -26 -158 -26q-131 0 -201 79q-59 67 -68 179h-94q18 -32 18 -79q0 -80 -55 -126q-57 -45 -156 -45h-215v250h-141l93 -250h-103l-59 167h-228l-58 -167h-104l93 250h-93v100h131l93 249h106l92 -249h178v250h177q115 0 177 -41 q55 -36 55 -113q0 -52 -27 -87l-8 -9h129q8 62 31 110q36 71 98 106q64 37 151 37q93 0 169 -38l-35 -81q-26 13 -64 25q-35 11 -71 11q-83 0 -131 -59q-35 -44 -44 -111h293v-100h-295q9 -77 44 -119q45 -56 133 -56zM444 1104l-18 -54h103l-21 61q-2 5 -7.5 22t-9.5 29 q-12 41 -14 51q-14 -59 -33 -109zM897 1213v-163h119q39 3 64 18q28 19 28 66q0 42 -30 61q-30 18 -97 18h-84zM564 949v1h-173v-1h173zM1092 948l-3 2h-192v-168h104q60 0 92 23q31 24 31 74q0 46 -32 69z" />
|
||||
<glyph unicode="" d="M1774 1774q126 -127 126 -305t-126 -305l-153 -152q-45 -46 -108 -77l-213 65l169 164l76 77l76 76q63 63 63 152t-63 152q-63 64 -152 64t-152 -64l-77 -76l-76 -76l-164 -169l-65 214q31 63 77 107l152 153q127 126 305.5 126t304.5 -126zM200 1600l800 -600l-600 800z M600 1800l400 -800l-200 800h-200zM200 1400l800 -400l-800 200v200zM936 631l64 69l74 -235l-138 -139q-127 -126 -305 -126t-305 126q-126 126 -126 305t126 305l139 138l235 -74l-69 -64l-152 -153q-64 -63 -64 -152t64 -152q63 -64 152 -64t152 64zM1800 400l-800 600 l600 -800zM1400 200l-400 800l200 -800h200zM1800 600l-800 400l800 -200v-200z" />
|
||||
<glyph unicode="" d="M376 400h1248q176 219 176 500q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5t-255 -170.5t-170.5 -255t-63.5 -311q0 -281 176 -500zM1000 1600q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M600 1400q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1400 1400q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM863 845l337 455v-600q0 -82 -59 -141t-141 -59 t-141 59t-59 141q0 85 63 145zM400 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1600 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1100 700 q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5z" />
|
||||
<glyph unicode="" d="M500 200v1500h-200v-1500h200zM600 800v800q83 28 189 28.5t214.5 -14t220.5 -29t239 -13.5t237 28v-800q-83 -35 -201 -39t-229.5 13t-239 32.5t-229.5 19.5t-201 -26z" />
|
||||
<glyph unicode="" d="M300 1600h1400v-200h-1400v200zM300 1100h1400v-200h-1400v200zM300 600h1400v-200h-1400v200z" />
|
||||
<glyph unicode="" d="M300 997l600 403v-800zM1100 1400l600 -403l-600 -397v800z" />
|
||||
<glyph unicode="" d="M1000 1800q-163 0 -301 -80.5t-218.5 -218.5t-80.5 -301q0 -142 70 -266.5t183 -222.5q4 -3 23.5 -19.5t29.5 -25.5t30 -27.5t34.5 -33t33 -35.5t34.5 -42q133 -174 162 -271q29 97 162 271q16 21 34.5 42t33 35.5t34.5 33t30 27.5t29.5 25.5t23.5 19.5q113 98 183 222.5 t70 266.5q0 163 -80.5 301t-218.5 218.5t-301 80.5zM1000 1544q142 0 243 -101t101 -243t-101 -243t-243 -101t-243 101t-101 243t101 243t243 101z" />
|
||||
<glyph unicode="" d="M1300 686l117 594q60 33 96.5 91.5t36.5 128.5q0 104 -73 177t-177 73t-177 -73t-73 -177q0 -70 36.5 -128.5t96.5 -91.5zM1300 1650q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1472 1170l328 133v-900l-488 -203l-612 203l-500 -200v900 l500 200l427 -141l173 -730z" />
|
||||
<glyph unicode="" d="M400 500v300h-200v1000h1200v-300h200v-300h200v-1000h-1200v300h-200zM1100 1700q-82 0 -141 -59t-59 -141h400q0 83 -58.5 141.5t-141.5 58.5zM400 900v500h-100v-500h100zM1100 1200h400q0 83 -58.5 141.5t-141.5 58.5q-82 0 -141 -59t-59 -141zM600 600v500h-100 v-500h100zM1500 700q83 0 141.5 58.5t58.5 141.5q0 82 -59 141t-141 59t-141 -59t-59 -141q0 -83 58.5 -141.5t141.5 -58.5zM1700 300v200q-101 0 -185.5 16.5t-144.5 43t-115 58.5l-110 64t-115 58.5t-144.5 43t-185.5 16.5v-500h1000z" />
|
||||
<glyph unicode="" d="M500 1700h1400v-1100h-200v-200h-200v-200h-1400v1100h200v200h200v200zM1800 700v900h-1200v-900h1200zM1500 1100q-82 0 -141 59t-59 141t59 141t141 59t141 -59t59 -141t-59 -141t-141 -59zM1600 500v100h-1100v800h-100v-900h1200zM700 1400l1000 -600h-1000v600z M1400 300v100h-1100v800h-100v-900h1200z" />
|
||||
<glyph unicode="" d="M800 1500q0 41 -29.5 70.5t-70.5 29.5h-500q-41 0 -70.5 -29.5t-29.5 -70.5q0 -42 30.5 -71t69.5 -29h500q41 0 70.5 29.5t29.5 70.5zM1400 1000l400 400v-1000l-400 400v200zM1300 600v600q0 41 -29.5 70.5t-70.5 29.5h-800q-41 0 -70.5 -29.5t-29.5 -70.5v-600 q0 -41 29.5 -70.5t70.5 -29.5h800q41 0 70.5 29.5t29.5 70.5z" />
|
||||
<glyph unicode="" d="M1200 700v600q0 82 -59 141t-141 59h-700q-82 0 -141 -59t-59 -141v-600q0 -82 59 -141t141 -59h700q82 0 141 59t59 141zM1300 950l600 -450v1000l-600 -450v-100z" />
|
||||
<glyph unicode="" d="M1900 500v1000q0 82 -59 141t-141 59h-1300q-82 0 -141 -59t-59 -141v-1000q0 -82 59 -141t141 -59h1300q82 0 141 59t59 141zM800 600v800l600 -400z" />
|
||||
<glyph unicode="" d="M1450 800q124 0 212 -88t88 -212t-88 -212t-212 -88t-212 88t-88 212q0 34 9 69l-438 230q-89 -99 -221 -99q-124 0 -212 88t-88 212t88 212t212 88q130 0 221 -99l438 230q-9 35 -9 69q0 124 88 212t212 88t212 -88t88 -212t-88 -212t-212 -88q-130 0 -221 99l-438 -230 q9 -35 9 -69t-9 -69l438 -230q89 99 221 99z" />
|
||||
<glyph unicode="" d="M1800 1650q0 -46 -25.5 -83.5t-66.5 -54.5v-1311h-1509l422 673q-21 37 -21 76q0 62 44 106t106 44t106 -44t44 -106q0 -17 -5 -37l144 -63q45 50 111 50q22 0 51 -9l358 641q-59 44 -59 118q0 62 44 106t106 44q25 0 53 -10l5 9v-11q41 -17 66.5 -54.5t25.5 -83.5z M1608 301v1114l-329 -589q21 -37 21 -76q0 -62 -44 -106t-106 -44t-106 44t-44 106l1 7l-163 72q-40 -29 -88 -29q-24 0 -51 10l-320 -509h1229z" />
|
||||
<glyph unicode="" d="M1800 200l1 1228q45 27 72 72.5t27 99.5q0 82 -59 141t-141 59t-141 -59t-59 -141q0 -59 31.5 -107.5t82.5 -72.5l-413 -658q-52 38 -116 38q-62 0 -112 -34t-73 -90l-214 153q14 34 14 71q0 83 -58.5 141.5t-141.5 58.5t-141.5 -58.5t-58.5 -141.5q0 -54 26.5 -99 t71.5 -72l-298 -529h1700zM1700 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM500 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1085 700 q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z" />
|
||||
<glyph unicode="" d="M1622 1420q35 -52 23.5 -112.5t-63.5 -95.5t-112.5 -23.5t-95.5 63.5q-21 31 -55 67q-36 34 -67 55q-37 25 -77 41q-42 19 -84 26q-90 20 -182 1q-43 -9 -84 -27q-40 -16 -77 -41q-33 -22 -66 -55q-34 -34 -56 -67q-24 -36 -41 -76q-1 -2 -1 -4q-12 -30 -23 -72h-461v300 h266q9 16 12 20q42 62 91 111q51 51 111 91q63 43 128 70q71 30 141 43q151 32 302 0q70 -13 141 -43q65 -27 128 -70q60 -40 111 -91q49 -49 91 -111zM1250 1000q0 104 -73 177t-177 73t-177 -73t-73 -177t73 -177t177 -73t177 73t73 177zM378 580q-35 52 -23.5 113 t63.5 96t113 23t95 -64q21 -31 55 -67q36 -34 67 -55q37 -25 77 -41q36 -16 84 -26q87 -19 182 0q48 10 84 26q40 16 77 41q33 22 66 55q31 31 56 67q26 41 41 76q1 2 1 4q12 30 23 72h461v-300h-266q-2 -2 -5.5 -9t-6.5 -11q-42 -62 -91 -111q-51 -51 -111 -91 q-63 -43 -128 -70q-64 -27 -141 -43q-151 -32 -302 0q-77 16 -141 43q-65 27 -128 70q-60 40 -111 91q-49 49 -91 111z" />
|
||||
<glyph unicode="" d="M1800 1200l-500 -400v299q-86 -2 -152.5 -9t-143.5 -26t-141 -50.5t-132.5 -85.5t-130.5 -128q22 269 199 421t501 173v306zM400 600h1100v200l200 160v-560h-1500v1100h943q-274 -48 -441 -200h-302v-700z" />
|
||||
<glyph unicode="" d="M1894 1554q-75 -112 -183 -190q1 -15 1 -47q0 -147 -43 -294.5t-131 -282.5t-210 -239t-293 -166t-366 -62q-304 0 -563 165q48 -5 88 -5q255 0 455 157q-119 2 -212.5 73t-129.5 182q39 -7 69 -7q47 0 96 13q-127 26 -210.5 127t-83.5 233v4q80 -43 166 -46 q-75 51 -119 131.5t-44 174.5q0 100 50 184q138 -169 334.5 -270.5t421.5 -112.5q-10 45 -10 84q0 151 107.5 258.5t259.5 107.5q160 0 268 -116q126 26 233 89q-43 -132 -162 -202q107 11 211 57z" />
|
||||
<glyph unicode="" d="M605 1800q-87 0 -148.5 -61.5t-61.5 -148.5v-908q0 -6 -1 -9q0 -209 117.5 -337.5t342.5 -134.5q2 0 7 -0.5t8 -0.5h521q86 0 148 62t62 149t-62 148.5t-148 61.5h-544q-30 0 -30 39v303h574q86 0 148 61.5t62 148.5t-62 149t-148 62h-574v206q0 87 -62 148.5t-149 61.5z " />
|
||||
<glyph unicode="" d="M1492 200h308q0 214 -57.5 418t-161 376.5t-251 318t-323 247.5t-383 158.5t-424.5 56.5v-302q210 0 407 -64.5t356 -182t278.5 -274t185 -351t65.5 -401.5zM948 200h308q0 211 -84 403.5t-225.5 332t-337 222t-409.5 82.5v-302q150 0 286 -56t243 -160 q106 -104 162.5 -239t56.5 -283zM413 202q88 0 150.5 61t62.5 148q0 86 -62.5 147.5t-150.5 61.5t-150.5 -61.5t-62.5 -147.5q0 -87 62 -148t151 -61z" />
|
||||
<glyph unicode="" d="M289 1800h1423q37 0 62.5 -25.5t25.5 -62.5v-1424q0 -36 -25.5 -62t-62.5 -26h-408v620h208l31 241h-239v154q0 59 25 88.5t95 29.5h128v216q-66 9 -186 9q-142 0 -226.5 -83.5t-84.5 -235.5v-178h-209v-241h209v-620h-766q-37 0 -63 26t-26 62v1424q0 37 26 62.5 t63 25.5z" />
|
||||
<glyph unicode="" d="M846 200h293v730h245l37 284h-282v182q0 69 29.5 103.5t111.5 34.5h151v255q-95 11 -219 11q-167 0 -266.5 -98.5t-99.5 -277.5v-210h-246v-284h246v-730z" />
|
||||
<glyph unicode="" d="M600 1500v200h-300v-200h300zM1800 500v1100h-900l-200 -200h-500v-900h1600zM1100 1300q124 0 212 -88t88 -212t-88 -212t-212 -88t-212 88t-88 212t88 212t212 88z" />
|
||||
<glyph unicode="" d="M803 1554q-7 -40 -4.5 -85.5t20.5 -92t42 -84t61 -61t78 -23.5q50 0 94 36t68 89t35.5 113t-1.5 108q-16 72 -72.5 117.5t-123.5 45.5q-68 0 -124 -45.5t-73 -117.5zM390 1464q-13 -55 4 -123t61.5 -119t101.5 -51t101.5 51t61.5 119t4 123q-14 61 -62 100t-105 39 t-105 -39t-62 -100zM1276 1464q-13 -55 4 -123t61.5 -119t100.5 -51q57 0 101.5 51t61.5 119t4 123q-14 61 -62 100t-105 39t-104.5 -39t-61.5 -100zM1217 321l125 430q37 126 6 215t-122 138t-226 49q-207 0 -304 -109t-40 -293l126 -430q17 -53 79.5 -87t138.5 -34 q75 0 137.5 34t79.5 87zM607 1084q-107 -147 -42 -359l112 -379q-53 -31 -120 -31q-65 0 -117.5 28.5t-67.5 74.5l-107 365q-48 156 34 248t258 92q41 0 79 -6q-11 -11 -29 -33zM1442 1123q176 0 258.5 -92t33.5 -248l-107 -365q-15 -46 -67.5 -74.5t-117.5 -28.5 q-67 0 -120 31l111 377q67 215 -42 361q-13 18 -28 33q38 6 79 6z" />
|
||||
<glyph unicode="" d="M1770 1368l141 -142l-347 -341l-142 142l84 82q-54 129 -151 231l-461 -659l-526 -470q-29 -29 -70.5 -29t-71.5 29l-120 121q-29 29 -29 70.5t29 70.5l1097 992q-231 145 -567 148q412 125 658 30q25 -10 50 -23.5t44.5 -25t45 -33t39.5 -32.5t40 -39t35.5 -37.5t37 -43 t33 -40t34.5 -44t32 -40.5z" />
|
||||
<glyph unicode="" d="M855 1694q20 -7 21 -22t-11 -35.5t-30 -44.5t-32 -51.5t-19.5 -54t9 -54.5t52.5 -51q23 -17 61 -5t75 37t82.5 63.5t83.5 74t78 69t65 47.5q39 22 84.5 30t95 0t96 -47t77.5 -106q33 -72 41 -182t-14.5 -239.5t-70 -255.5t-135 -242t-200.5 -187q-117 -74 -246.5 -106 t-252.5 -20t-233.5 58.5t-198.5 132.5t-139 201q-29 66 -39.5 141t-2.5 147.5t30 147.5t57.5 142.5t79 131t95 113.5t106.5 91t113 62t113.5 27.5t108.5 -13.5zM976 1049q30 -68 126 -56q91 12 173 84q96 86 93 187q-1 34 -13 65q-26 65 -124 33q-92 -29 -176 -112 q-94 -94 -87 -171q2 -16 8 -30z" />
|
||||
<glyph unicode="" d="M400 1400h600v200h-800v-1201h800v201h-600v800zM600 1200h600v300l600 -500l-600 -500v300h-600v400z" />
|
||||
<glyph unicode="" d="M376 299h1248q176 221 176 501q0 162 -63.5 310.5t-170.5 255.5t-255 170.5t-311 63.5t-311 -63.5t-255 -170.5t-170.5 -255.5t-63.5 -310.5q0 -280 176 -501zM900 1400q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71z M400 1200q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM852 860q37 37 200 124.5t307 156.5l144 69q-30 -64 -76.5 -160.5t-141 -275t-131.5 -215.5q-63 -63 -151 -63t-151 63q-62 62 -62 150.5t62 150.5zM300 700 q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM900 700q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM1500 700q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5 q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71z" />
|
||||
<glyph unicode="" d="M1700 1200h100v-1100h-1600v1100h100v200q0 136 67 251t182 182t251 67q105 0 200 -42q95 42 200 42q136 0 251 -67t182 -182t67 -251v-200zM500 1400v-200h200v200q0 164 102 300h-2q-124 0 -212 -88t-88 -212zM1500 1200v200q0 124 -88 212t-212 88h-2 q102 -136 102 -300v-200h200zM1000 1622q-100 -90 -100 -222v-200h200v200q0 132 -100 222z" />
|
||||
<glyph unicode="" d="M446 1484l54 -230l-54 -229l201 -124l123 -201l230 54l230 -54l123 201l201 124l-54 229l54 230l-200 124l-124 201l-230 -55l-229 54l-125 -200zM1001 850q-167 0 -284 117t-117 284q0 165 117.5 282t283.5 117q165 0 282 -117t117 -282q0 -166 -117 -283.5t-282 -117.5 zM999 950q-124 0 -211.5 87.5t-87.5 212.5q0 124 87.5 212t211.5 88t212.5 -88t88.5 -212t-88 -212t-213 -88zM1383 840l-128 -224l-208 47l253 -583l140 220h250zM613 833l125 -225l213 51l-251 -579l-140 220h-250z" />
|
||||
<glyph unicode="" d="M200 1800h700v-700h-700v700zM1100 1800v-700h700v700h-700zM550 1550l150 150h-300zM1200 1200v500h500v-500h-500zM450 1450l-150 150v-300zM800 1600l-150 -150l150 -150v300zM550 1350l-150 -150h300zM900 200v700h-700v-700h700zM1800 200h-700v700h700v-700z M800 800v-500h-500v500h500zM1450 650l150 150h-300zM1200 400l150 150l-150 150v-300zM1550 550l150 -150v300zM1450 450l-150 -150h300z" />
|
||||
<glyph unicode="" d="M1500 1400v-200q82 0 141 -59t59 -141v-700q0 -82 -59 -141t-141 -59h-1000q-82 0 -141 59t-59 141v700q0 82 59 141t141 59v200q0 136 67 251t182 182t251 67t251 -67t182 -182t67 -251zM800 1400v-200h400v200q0 82 -59 141t-141 59t-141 -59t-59 -141zM1080 375v217 q54 24 87 73.5t33 109.5q0 83 -59 141.5t-141 58.5t-141 -58.5t-59 -141.5q0 -60 33 -109.5t87 -73.5v-217h160z" />
|
||||
<glyph unicode="" d="M1401 1600v-600h200v800h-1201v-800h201v600h800zM1201 1400v-600h300l-500 -600l-500 600h300v600h400z" />
|
||||
<glyph unicode="" d="M800 600v600h-300l500 600l500 -600h-300v-600h-400zM600 400v600h-200v-800h1201v800h-201v-600h-800z" />
|
||||
<glyph unicode="" d="M500 1300h1300v-1000h-1600v1300h700l200 -200h-700v-900h100v800z" />
|
||||
<glyph unicode="" d="M1900 1000q0 183 -71.5 349.5t-192 287t-287 192t-349.5 71.5t-349.5 -71.5t-287 -192t-192 -287t-71.5 -349.5t71.5 -349.5t192 -287t287 -192t349.5 -71.5t349.5 71.5t287 192t192 287t71.5 349.5zM800 990q-378 39 -548 229q74 240 271.5 396t453.5 167 q-33 -55 -56 -126t-32 -149t12 -154.5t73 -127.5q-35 -5 -69 6t-58.5 30t-51 40t-45.5 36t-43 17.5t-44 -14.5q-88 -69 -42 -150q50 -88 228 -144q62 -20 134 -33q97 -17 164.5 -40.5t106.5 -49.5t60 -62.5t27 -71t5 -84.5q-6 -298 -406 -470q2 86 -11.5 153t-38 109 t-55 73.5t-63.5 52t-62.5 37t-54 36.5t-35.5 43q10 42 18.5 67.5t27.5 61.5t52 66t82 56zM1649 1422q31 -48 54.5 -97.5t38.5 -92.5t23 -89t11.5 -81t1.5 -75.5t-4.5 -66t-10 -58.5t-11.5 -46.5t-12 -37.5l-7 -24q-21 51 -52 95.5t-60.5 74.5t-57.5 58t-50.5 60t-32.5 66 q-39 137 169 314z" />
|
||||
<glyph unicode="" d="M552 1800h743q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-1300q0 -41 -29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5v1200q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5v-1200q0 -41 -29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5v596h-43 q-123 0 -227 60.5t-164.5 164.5t-60.5 227t60.5 227t164.5 164.5t227 60.5zM1400 600l500 400l-500 400v-800z" />
|
||||
<glyph unicode="" d="M1365 1712q145 -74 248 -198t149 -268.5t35 -305t-85 -305.5t-198 -247.5t-268 -149t-305 -35.5t-306 85q-138 71 -237 185t-149 255l164 103q34 -120 113.5 -218t194.5 -158q111 -57 234 -65.5t233 27t204.5 114.5t151.5 190t66 234t-27 233t-114.5 205t-189.5 152 t-234 65.5t-233 -27t-204.5 -114.5t-151.5 -190l188 -97l-495 -308l-39 582l178 -91q74 145 198.5 248t269 149t305 34.5t304.5 -84.5zM929 929q-29 29 -29 71q0 4 2 10t2 9h-1l97 481l97 -481l303 -319l-450 212l2 2q-13 7 -23 15z" />
|
||||
<glyph unicode="" d="M400 1500h-322q-30 0 -51.5 -23.5t-17.5 -60.5l156 -999q185 736 221 913q8 36 36.5 53t61.5 17h516q-70 208 -77 231q-19 69 -78 69h-331q-28 0 -50.5 -17t-29.5 -47zM888 1500h-400q2 4 5 11t12.5 24t19.5 30t23.5 24t26.5 11h213q21 0 46 -25t40 -50zM267 375 q-49 -75 -126 -75h1573q40 0 67.5 22t35.5 61l168 844q5 35 -15 54t-47 19h-323v147q0 15 -19.5 34t-46.5 19h-376q-23 0 -45 -14.5t-32 -29.5l-10 -14l-71 -142h-441q-25 0 -45 -13.5t-24 -36.5q-159 -670 -172 -733q-17 -92 -51 -142zM1538 1300h-438q2 4 6.5 11t17.5 24 t25.5 30t30.5 24t33 11h229q20 0 37 -10.5t27.5 -25t18 -29t10.5 -25.5z" />
|
||||
<glyph unicode="" d="M1100 1800h700v-700l-1000 -1000l-700 700zM1400 1200q82 0 141 59t59 141t-59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59z" />
|
||||
<glyph unicode="" d="M2000 1000q0 203 -79.5 388t-213.5 319t-319 213.5t-388 79.5t-388.5 -79.5t-319.5 -213.5t-213 -319t-79 -388q0 -163 50.5 -315.5t143 -275.5t215.5 -215.5t275.5 -143t315.5 -50.5q203 0 388 79t319 213t213.5 319.5t79.5 388.5zM778 463l-341 915l117 8q24 3 32 31 t-3 54.5t-35 25.5q-145 -11 -237 -11q-37 0 -58 1q121 186 318.5 294t428.5 108q172 0 327.5 -61t277.5 -173q-58 9 -111.5 -33.5t-53.5 -124.5q0 -18 4.5 -37.5t8.5 -32.5t16 -36.5t17 -31.5t22.5 -37t21.5 -35q55 -96 55 -246q0 -66 -35 -191t-70 -217l-35 -92l-303 837 q24 1 44.5 5t29.5 8l8 4q24 2 32 33t-3 60.5t-35 28.5q-144 -12 -238 -12q-39 0 -97 3t-97 6l-39 3q-24 1 -35 -29t-3 -61t32 -32l92 -8l126 -341zM1741 1000q12 32 17.5 47t16.5 60.5t14.5 85t3.5 102t-9 130.5q105 -193 105 -425q0 -245 -119 -453.5t-321 -324.5 q247 661 292 778zM610 191q-226 109 -362.5 328t-136.5 481q0 196 72 359q336 -921 427 -1168zM1013 854l258 -698q-133 -45 -271 -45q-121 0 -229 33q28 83 112.5 329.5t129.5 380.5z" />
|
||||
<glyph unicode="" d="M1800 700h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200h-500v-200h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5 t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200h-500v-200h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200q0 82 59 141t141 59h500v200h-100q-41 0 -70.5 29.5t-29.5 71.5 v298q0 42 29.5 71.5t70.5 29.5h400q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-100v-200h500q82 0 141 -59t59 -141v-200z" />
|
||||
<glyph unicode="" d="M1100 1300h-151q-46 0 -89.5 -19.5t-69.5 -50.5l-90 270h-287l-239 -700h169l74 200h283v-400h-500q-82 0 -141 59t-59 141v700q0 82 59 141t141 59h700q82 0 141 -59t59 -141v-200zM651 1100h-202l100 293zM1000 1200h700q82 0 141 -59t59 -141v-700q0 -82 -59 -141 t-141 -59h-700q-82 0 -141 59t-59 141v700q0 82 59 141t141 59zM1725 700v108h-317v217h-116v-217h-317v-108h128q9 -66 42 -136t86 -126q-64 -26 -131.5 -44t-99.5 -18l5 -26q5 -26 10.5 -62t4.5 -58q62 0 154 32.5t174 82.5q83 -50 177 -82.5t157 -32.5q-1 14 1 33.5 t5 38.5t6 35.5t6 27.5l2 11q-33 0 -103 18.5t-135 44.5q51 56 83.5 126t41.5 135h136zM1344 507q-76 70 -101 193h209q-26 -124 -100 -193l-4 -3q-3 2 -4 3z" />
|
||||
<glyph unicode="" d="M1480 1812l334 -335q41 -44 40.5 -104t-37.5 -98l-986 -988l-686 -143l143 688q937 940 985 989q35 37 100 35t107 -44zM1143 1468l-688 -691l137 -137l682 697zM777 454l688 691l-132 132l-689 -689z" />
|
||||
<glyph unicode="" d="M700 1480q83 0 141.5 -58.5t58.5 -141.5q0 -52 -28 -100q-72 20 -172 20q-44 0 -87 -5t-64 -10l-21 -5q-28 48 -28 100q0 83 58.5 141.5t141.5 58.5zM1300 1480q83 0 141.5 -58.5t58.5 -141.5q0 -52 -28 -100q-72 20 -172 20q-44 0 -87 -5t-64 -10l-21 -5q-28 48 -28 100 q0 83 58.5 141.5t141.5 58.5zM1000 110q279 0 506 162t317 426l-132 46q-76 -222 -266.5 -358t-424.5 -136t-424.5 136t-266.5 358l-132 -46q90 -264 317 -426t506 -162z" />
|
||||
<glyph unicode="" d="M1500 1300v200h-1000v-200h1000zM1500 900v200h-1000v-200h1000zM1500 500v200h-1000v-200h1000z" />
|
||||
<glyph unicode="" d="M1600 1700h200v-1600h-1300q-124 0 -212 88t-88 212v1200q0 124 88 212t212 88h900v-1400h-900q-41 0 -70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5h1100v1400z" />
|
||||
<glyph unicode="" d="M500 300h1300v-200h-1300q-124 0 -212 88t-88 212v1200q0 124 88 212t212 88h1300v-1400h-1300q-41 0 -70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5zM700 650v1100q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5v-1100q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5 t14.5 35.5z" />
|
||||
<glyph unicode="" d="M1000 1800q12 -8 34.5 -21.5t96 -48t150.5 -61t192 -48t227 -21.5q0 -224 -38.5 -423t-100.5 -336.5t-136.5 -252.5t-149 -184.5t-136.5 -117.5t-101 -67l-38 -19q-9 4 -24.5 11.5t-63.5 38.5t-94 68.5t-109 103.5t-117.5 141.5t-109.5 185t-94 231t-63.5 282.5 t-24.5 338q112 0 225.5 20.5t195 50t147 59t98.5 50.5zM1000 1000h500q4 4 11 13t24 48t30 90t24 144t11 205q-20 4 -54.5 11.5t-126 30t-167 45t-150 54t-102.5 59.5v-700h-500q28 -112 90 -225.5t130 -195t132 -147t106 -98.5l42 -34v700z" />
|
||||
<glyph unicode="" d="M1600 1300v200h-1300v-200h1300zM1600 900v200h-1300v-200h1300zM1600 500v200h-1300v-200h1300z" />
|
||||
<glyph unicode="" d="M1000 1800q12 -8 34.5 -21.5t96 -48t150.5 -61t192 -48t227 -21.5q0 -224 -38.5 -423t-100.5 -336.5t-136.5 -252.5t-149 -184.5t-136.5 -117.5t-101 -67l-38 -19q-9 4 -24.5 11.5t-63.5 38.5t-94 68.5t-109 103.5t-117.5 141.5t-109.5 185t-94 231t-63.5 282.5 t-24.5 338q112 0 225.5 20.5t195 50t147 59t98.5 50.5z" />
|
||||
<glyph unicode="" d="M1495 1354l-354 -354l354 -354l-141 -141l-354 353l-353 -353l-142 142l353 353l-353 353l142 142l353 -353l354 353z" />
|
||||
<glyph unicode="" d="M1800 400h-1600v1200h1600v-1200zM705 1147q19 11 33 24q14 16 24 34q13 26 17 37q5 13 10 34l6 24q0 2 0.5 5t0.5 4q7 45 -4 90q-12 43 -46 72q-35 29 -86 29q-29 0 -56 -11q-26 -12 -41 -30q-17 -20 -27 -44t-12 -51q-1 -18 1 -55l2 -9q2 -11 6 -25q9 -30 10 -33 q6 -18 17 -37q13 -20 25 -33q15 -17 34 -25q19 -9 43 -9t43 9zM1700 1100v400h-500v-400h500zM662 1017l-138 88q-61 0 -114 -32q-53 -33 -81 -85q-29 -52 -29 -107v-125l20 -5q26 -8 55 -14q41 -10 80 -17q34 -7 100 -14q55 -6 107 -6q50 0 107 6q48 5 98 14q54 10 82 17 q16 3 34 8t20 5q13 4 21 6v125q0 55 -31 107q-32 53 -84 86q-53 33 -111 33zM1700 900v100h-500v-100h500zM1700 700v100h-500v-100h500zM1700 500v100h-1400v-100h1400z" />
|
||||
<glyph unicode="" d="M1800 200h-1600v1600h1600v-1600zM805 1247q19 11 33 24q14 16 24 34q13 26 17 37q5 13 10 34l6 24q0 2 0.5 5t0.5 4q7 45 -4 90q-12 43 -46 72q-35 29 -86 29q-29 0 -56 -11q-26 -12 -41 -30q-17 -20 -27 -44t-12 -51q-1 -18 1 -55l2 -9q2 -11 6 -25q9 -30 10 -33 q6 -18 17 -37q13 -20 25 -33q15 -17 34 -25q19 -9 43 -9t43 9zM1600 1500v100h-500v-100h500zM1600 1300v100h-500v-100h500zM762 1117l-138 88q-61 0 -114 -32q-53 -33 -81 -85q-29 -52 -29 -107v-125l20 -5q26 -8 55 -14q41 -10 80 -17q34 -7 100 -14q56 -6 107 -6 q50 0 107 6q48 5 98 14q54 10 82 17q16 3 34 8t20 5q13 4 21 6v125q0 55 -31 107q-32 53 -84 86q-53 33 -111 33zM1600 1100v100h-300v-100h300zM1600 900v100h-300v-100h300zM1600 600v100h-1200v-100h1200zM1600 400v100h-1200v-100h1200z" />
|
||||
<glyph unicode="" d="M730 1400l-3 19q-6 55 -3 108q3 56 25 104q22 50 52 86q33 39 83 60q52 23 113 23q103 0 171 -59q69 -60 91 -144q22 -85 9 -178l-3 -19q-1 -10 -11 -48q-7 -33 -20 -69q-13 -34 -34 -72q-18 -35 -47 -69q-25 -26 -67 -48q-39 -19 -86 -19q-46 0 -87 19q-42 21 -67 50 q-25 28 -49 66q-22 36 -34 73q-14 39 -21 67q-9 33 -12 50zM1650 776q50 -85 50 -214v-249q0 -4 -29 -13q-7 -2 -37 -10.5t-60 -16.5q-110 -24 -165 -34q-85 -15 -195 -27q-112 -12 -213 -12t-214 12q-90 8 -198 27q-44 8 -156 34q-43 10 -106 29l-27 11v249q0 134 46 215 q65 115 150 168q47 29 136 42t168 13l167 -167l-67 -133v-300l102 -108l98 108v300l-68 133l165 167q209 0 290 -52q96 -61 163 -172z" />
|
||||
<glyph unicode="" d="M1000 1900q153 0 282.5 -75.5t205 -204.5t75.5 -282q0 -52 -21 -118t-50.5 -123.5t-59.5 -107.5t-51 -79l-21 -30q-25 -33 -42.5 -86t-17.5 -94v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 -17.5 94t-42.5 86q-8 11 -21.5 30.5 t-48.5 77t-61.5 110.5t-48.5 120.5t-22 119.5q0 153 75 282t204.5 204.5t282.5 75.5zM700 313v87h600v-87q0 -53 -16 -83t-59 -30h-25q0 -46 -27.5 -73t-74.5 -27h-200q-46 0 -72 26.5t-26 73.5h-25q-43 0 -59 30t-16 83z" />
|
||||
<glyph unicode="" d="M1800 1100v-200h-1200l400 -400v-300l-800 800l800 800v-300l-400 -400h1200z" />
|
||||
<glyph unicode="" d="M1400 1500l-500 -500l500 -500v-300l-800 800l800 800v-300z" />
|
||||
<glyph unicode="" d="M1800 1000h-300l-400 400v-1200h-200v1200l-400 -400h-300l800 800z" />
|
||||
<glyph unicode="" d="M1500 600l-500 500l-500 -500h-300l800 800l800 -800h-300z" />
|
||||
<glyph unicode="" d="M1000 200v300l400 400h-1200v200h1200l-400 400v300l800 -800z" />
|
||||
<glyph unicode="" d="M600 500l500 500l-500 500v300l800 -800l-800 -800v300z" />
|
||||
<glyph unicode="" d="M1500 1000h300l-800 -800l-800 800h300l400 -400v1200h200v-1200z" />
|
||||
<glyph unicode="" d="M500 1400l500 -500l500 500h300l-800 -800l-800 800h300z" />
|
||||
<glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1100 1400q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5 t29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5zM1100 500v600h-200v-600h200z" />
|
||||
<glyph horiz-adv-x="600" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 55 KiB |
BIN
wp-includes/fonts/dashicons.ttf
Normal file
BIN
wp-includes/fonts/dashicons.ttf
Normal file
Binary file not shown.
BIN
wp-includes/fonts/dashicons.woff
Normal file
BIN
wp-includes/fonts/dashicons.woff
Normal file
Binary file not shown.
@ -2101,10 +2101,8 @@ function wp_admin_css_color($key, $name, $url, $colors = array()) {
|
||||
* @since 3.0.0
|
||||
*/
|
||||
function register_admin_color_schemes() {
|
||||
wp_admin_css_color( 'classic', _x( 'Blue', 'admin color scheme' ), admin_url( 'css/colors-classic.min.css' ),
|
||||
array( '#5589aa', '#cfdfe9', '#d1e5ee', '#eff8ff' ) );
|
||||
wp_admin_css_color( 'fresh', _x( 'Gray', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ),
|
||||
array( '#555', '#a0a0a0', '#ccc', '#f1f1f1' ) );
|
||||
wp_admin_css_color( 'fresh', _x( 'Default', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ),
|
||||
array( '#222', '#333', '#0074a2', '#2ea2cc' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
204
wp-includes/js/svg-painter.js
Normal file
204
wp-includes/js/svg-painter.js
Normal file
@ -0,0 +1,204 @@
|
||||
;var svgPainter = ( function( $, window, document, undefined ) {
|
||||
|
||||
'use strict';
|
||||
|
||||
$(document).ready( function() {
|
||||
|
||||
// detection for browser SVG capability
|
||||
if ( document.implementation.hasFeature( 'http://www.w3.org/TR/SVG11/feature#Image', '1.1' ) ) {
|
||||
document.body.className = document.body.className.replace( 'no-svg', 'svg' );
|
||||
}
|
||||
|
||||
svgPainter.init();
|
||||
|
||||
});
|
||||
|
||||
return {
|
||||
|
||||
elements : [],
|
||||
|
||||
init : function() {
|
||||
|
||||
this.selector = $( '#adminmenu .wp-menu-image, #wpadminbar .ab-item' );
|
||||
|
||||
this.setColors();
|
||||
this.findElements();
|
||||
this.paint();
|
||||
|
||||
},
|
||||
|
||||
setColors : function( colors ) {
|
||||
|
||||
if ( typeof colors === 'undefined' && typeof mp6_color_scheme !== 'undefined' ) {
|
||||
var colors = mp6_color_scheme;
|
||||
}
|
||||
|
||||
this.colorscheme = colors;
|
||||
|
||||
},
|
||||
|
||||
findElements : function() {
|
||||
|
||||
this.selector.each(function() {
|
||||
|
||||
var bgimg = $(this).css( 'background-image' );
|
||||
|
||||
if ( bgimg.indexOf( 'data:image/svg+xml;base64' ) != -1 ) {
|
||||
svgPainter.elements.push( $(this) );
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
},
|
||||
|
||||
paint : function() {
|
||||
|
||||
// loop through all elements
|
||||
$.each( this.elements, function( index, $element ) {
|
||||
|
||||
var $menuitem = $element.parent().parent();
|
||||
|
||||
if ( $menuitem.hasClass( 'current' ) || $menuitem.hasClass( 'wp-has-current-submenu' ) ) {
|
||||
|
||||
// paint icon in 'current' color
|
||||
svgPainter.paintElement( $element, svgPainter.colorscheme.icons.current );
|
||||
|
||||
} else {
|
||||
|
||||
// paint icon in base color
|
||||
svgPainter.paintElement( $element, svgPainter.colorscheme.icons.base );
|
||||
|
||||
// set hover callbacks
|
||||
$menuitem.hover(
|
||||
function() { svgPainter.paintElement( $element, svgPainter.colorscheme.icons.focus ); },
|
||||
function() { svgPainter.paintElement( $element, svgPainter.colorscheme.icons.base ); }
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
},
|
||||
|
||||
paintElement : function( $element, color ) {
|
||||
|
||||
// only accept hex colors: #101 or #101010
|
||||
if ( ! color.match( /^(#[0-9a-f]{3}|#[0-9a-f]{6})$/i ) )
|
||||
return;
|
||||
|
||||
var xml = $element.data( 'mp6-svg-' + color );
|
||||
|
||||
if ( ! xml ) {
|
||||
|
||||
var base64 = $element.css( 'background-image' ).match( /.+data:image\/svg\+xml;base64,(.+)\)/ );
|
||||
|
||||
if ( ! base64 )
|
||||
return;
|
||||
|
||||
try {
|
||||
var xml = window.atob( base64[1] );
|
||||
} catch ( e ) {
|
||||
var xml = $.base64.atob( base64[1] );
|
||||
}
|
||||
|
||||
// replace `fill` attributes
|
||||
xml = xml.replace( /fill="(.+?)"/g, 'fill="' + color + '"');
|
||||
|
||||
// replace `style` attributes
|
||||
xml = xml.replace( /style="(.+?)"/g, 'style="fill:' + color + '"');
|
||||
|
||||
// replace `fill` properties in `<style>` tags
|
||||
xml = xml.replace( /fill:.*?;/g, 'fill: ' + color + ';');
|
||||
|
||||
try {
|
||||
xml = window.btoa( xml );
|
||||
} catch ( e ) {
|
||||
xml = $.base64.btoa( xml );
|
||||
}
|
||||
|
||||
$element.data( 'mp6-svg-' + color, xml );
|
||||
|
||||
}
|
||||
|
||||
$element.attr( 'style', "background-image: url('data:image/svg+xml;base64," + xml + "') !important;" );
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
})( jQuery, window, document );
|
||||
|
||||
/*!
|
||||
* Customized for MP6
|
||||
*
|
||||
* Based on jquery.base64.js 0.0.3 - https://github.com/yckart/jquery.base64.js
|
||||
*
|
||||
* Based upon: https://gist.github.com/Yaffle/1284012
|
||||
*
|
||||
* Copyright (c) 2012 Yannick Albert (http://yckart.com)
|
||||
* Licensed under the MIT license
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
**/
|
||||
;(function($) {
|
||||
|
||||
var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
|
||||
a256 = '',
|
||||
r64 = [256],
|
||||
r256 = [256],
|
||||
i = 0;
|
||||
|
||||
while(i < 256) {
|
||||
var c = String.fromCharCode(i);
|
||||
a256 += c;
|
||||
r256[i] = i;
|
||||
r64[i] = b64.indexOf(c);
|
||||
++i;
|
||||
}
|
||||
|
||||
function code(s, discard, alpha, beta, w1, w2) {
|
||||
s = String(s);
|
||||
var buffer = 0,
|
||||
i = 0,
|
||||
length = s.length,
|
||||
result = '',
|
||||
bitsInBuffer = 0;
|
||||
|
||||
while(i < length) {
|
||||
var c = s.charCodeAt(i);
|
||||
c = c < 256 ? alpha[c] : -1;
|
||||
|
||||
buffer = (buffer << w1) + c;
|
||||
bitsInBuffer += w1;
|
||||
|
||||
while(bitsInBuffer >= w2) {
|
||||
bitsInBuffer -= w2;
|
||||
var tmp = buffer >> bitsInBuffer;
|
||||
result += beta.charAt(tmp);
|
||||
buffer ^= tmp << bitsInBuffer;
|
||||
}
|
||||
++i;
|
||||
}
|
||||
if(!discard && bitsInBuffer > 0) result += beta.charAt(buffer << (w2 - bitsInBuffer));
|
||||
return result;
|
||||
}
|
||||
|
||||
var Plugin = $.base64 = function(dir, input, encode) {
|
||||
return input ? Plugin[dir](input, encode) : dir ? null : this;
|
||||
};
|
||||
|
||||
$.base64.btoa = function(plain) {
|
||||
plain = code(plain, false, r256, b64, 8, 6);
|
||||
return plain + '===='.slice((plain.length % 4) || 4);
|
||||
};
|
||||
|
||||
$.base64.atob = function(coded, utf8decode) {
|
||||
coded = coded.replace(/[^A-Za-z0-9\+\/\=]/g, "");
|
||||
coded = String(coded).split('=');
|
||||
var i = coded.length;
|
||||
do {--i;
|
||||
coded[i] = code(coded[i], true, r64, a256, 6, 8);
|
||||
} while (i > 0);
|
||||
coded = coded.join('');
|
||||
return coded;
|
||||
};
|
||||
}(jQuery));
|
1
wp-includes/js/svg-painter.min.js
vendored
Normal file
1
wp-includes/js/svg-painter.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
var svgPainter=function(a,b,c){"use strict";return a(c).ready(function(){c.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image","1.1")&&(c.body.className=c.body.className.replace("no-svg","svg")),svgPainter.init()}),{elements:[],init:function(){this.selector=a("#adminmenu .wp-menu-image, #wpadminbar .ab-item"),this.setColors(),this.findElements(),this.paint()},setColors:function(a){if("undefined"==typeof a&&"undefined"!=typeof mp6_color_scheme)var a=mp6_color_scheme;this.colorscheme=a},findElements:function(){this.selector.each(function(){var b=a(this).css("background-image");-1!=b.indexOf("data:image/svg+xml;base64")&&svgPainter.elements.push(a(this))})},paint:function(){a.each(this.elements,function(a,b){var c=b.parent().parent();c.hasClass("current")||c.hasClass("wp-has-current-submenu")?svgPainter.paintElement(b,svgPainter.colorscheme.icons.current):(svgPainter.paintElement(b,svgPainter.colorscheme.icons.base),c.hover(function(){svgPainter.paintElement(b,svgPainter.colorscheme.icons.focus)},function(){svgPainter.paintElement(b,svgPainter.colorscheme.icons.base)}))})},paintElement:function(c,d){if(d.match(/^(#[0-9a-f]{3}|#[0-9a-f]{6})$/i)){var e=c.data("mp6-svg-"+d);if(!e){var f=c.css("background-image").match(/.+data:image\/svg\+xml;base64,(.+)\)/);if(!f)return;try{var e=b.atob(f[1])}catch(g){var e=a.base64.atob(f[1])}e=e.replace(/fill="(.+?)"/g,'fill="'+d+'"'),e=e.replace(/style="(.+?)"/g,'style="fill:'+d+'"'),e=e.replace(/fill:.*?;/g,"fill: "+d+";");try{e=b.btoa(e)}catch(g){e=a.base64.btoa(e)}c.data("mp6-svg-"+d,e)}c.attr("style","background-image: url('data:image/svg+xml;base64,"+e+"') !important;")}}}}(jQuery,window,document);!function(a){function b(a,b,c,d,e,f){a=String(a);for(var g=0,h=0,i=a.length,j="",k=0;i>h;){var l=a.charCodeAt(h);for(l=256>l?c[l]:-1,g=(g<<e)+l,k+=e;k>=f;){k-=f;var m=g>>k;j+=d.charAt(m),g^=m<<k}++h}return!b&&k>0&&(j+=d.charAt(g<<f-k)),j}for(var c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",d="",e=[256],f=[256],g=0;256>g;){var h=String.fromCharCode(g);d+=h,f[g]=g,e[g]=c.indexOf(h),++g}var i=a.base64=function(a,b,c){return b?i[a](b,c):a?null:this};a.base64.btoa=function(a){return a=b(a,!1,f,c,8,6),a+"====".slice(a.length%4||4)},a.base64.atob=function(a){a=a.replace(/[^A-Za-z0-9\+\/\=]/g,""),a=String(a).split("=");var c=a.length;do--c,a[c]=b(a[c],!0,e,d,6,8);while(c>0);return a=a.join("")}}(jQuery);
|
@ -1,3 +1,7 @@
|
||||
html {
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
||||
box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
|
||||
}
|
||||
|
||||
body.mceForceColors {background:#FFF; color:#000;}
|
||||
body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;}
|
||||
@ -39,10 +43,16 @@ font[face=mceinline] {font-family:inherit !important}
|
||||
/* WordPress styles */
|
||||
body {
|
||||
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
||||
font-size: 13px;
|
||||
line-height: 19px;
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
color: #333;
|
||||
margin: 10px;
|
||||
background-color: #fff;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 1.3em;
|
||||
}
|
||||
|
||||
.aligncenter,
|
||||
@ -83,7 +93,7 @@ dl.aligncenter {
|
||||
|
||||
.wp-caption-dd {
|
||||
font-size: 11px;
|
||||
line-height: 17px;
|
||||
line-height: 1.5;
|
||||
padding: 0 4px 5px;
|
||||
margin: 0;
|
||||
}
|
||||
@ -104,23 +114,25 @@ img.mce-wp-more {
|
||||
border: 0;
|
||||
border-top: 1px dotted #cccccc;
|
||||
display: block;
|
||||
width: 95%;
|
||||
height: 12px;
|
||||
margin: 15px auto 0;
|
||||
margin: 1.2em auto 0;
|
||||
}
|
||||
|
||||
img.mce-wp-more {
|
||||
background: transparent url("img/more_bug.gif") no-repeat right top;
|
||||
background-size: 52px 11px;
|
||||
}
|
||||
|
||||
img.mce-wp-nextpage {
|
||||
background: transparent url("img/page_bug.gif") no-repeat right top;
|
||||
background-size: 76px 11px;
|
||||
}
|
||||
|
||||
img.wp-gallery {
|
||||
border: 1px dashed #888;
|
||||
background: #f2f8ff url("img/gallery.png") no-repeat scroll center center;
|
||||
width: 99%;
|
||||
background-size: 40px 40px;
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
@ -130,3 +142,22 @@ img.wp-oembed {
|
||||
width: 300px;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
|
||||
@media print,
|
||||
(-o-min-device-pixel-ratio: 5/4),
|
||||
(-webkit-min-device-pixel-ratio: 1.25),
|
||||
(min-resolution: 120dpi) {
|
||||
|
||||
img.mce-wp-more {
|
||||
background-image: url('../images/mce-more-2x.png');
|
||||
}
|
||||
|
||||
img.mce-wp-nextpage {
|
||||
background-image: url('../images/mce-nextpage-2x.png');
|
||||
}
|
||||
|
||||
img.wp-gallery {
|
||||
background-image: url('../images/gallery-2x.png');
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +1,24 @@
|
||||
@import url('//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin-ext,latin');
|
||||
|
||||
/* Generic */
|
||||
body {
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
|
||||
background:#f1f1f1;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size:13px;
|
||||
background:#fcfcfc;
|
||||
padding:0;
|
||||
margin:8px 8px 0 8px;
|
||||
}
|
||||
|
||||
html {background:#f1f1f1;}
|
||||
td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
|
||||
textarea {resize:none;outline:none;}
|
||||
a:link, a:visited {color:black;}
|
||||
a:hover {color:#2B6FB6;}
|
||||
|
||||
a:link, a:hover {
|
||||
color: #2B6FB6;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #3C2BB6;
|
||||
}
|
||||
|
||||
.nowrap {white-space: nowrap}
|
||||
|
||||
/* Forms */
|
||||
@ -34,34 +42,78 @@ input.checkbox {border:1px none #000000; background:transparent; vertical-align:
|
||||
.mceActionPanel .button,
|
||||
input.mceButton,
|
||||
.updateButton {
|
||||
border: 1px solid #bbb;
|
||||
margin:0;
|
||||
padding:0 0 1px;
|
||||
font-weight:bold;
|
||||
font-size: 11px;
|
||||
width:94px;
|
||||
height:24px;
|
||||
color:#000;
|
||||
cursor:pointer;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
border: 1px solid #adadad;
|
||||
margin: 0;
|
||||
padding: 0 10px 1px;
|
||||
font-size: 13px;
|
||||
height: 24px;
|
||||
line-height: 22px;
|
||||
color: #333;
|
||||
cursor: pointer;
|
||||
-webkit-border-radius: 3px;
|
||||
-webkit-appearance: none;
|
||||
border-radius: 3px;
|
||||
background-color: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: linear-gradient(to top, #ddd, #fff);
|
||||
white-space: nowrap;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
background: #fafafa;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e9e9e9));
|
||||
background-image: -webkit-linear-gradient(top, #fafafa, #e9e9e9);
|
||||
background-image: -moz-linear-gradient(top, #fafafa, #e9e9e9);
|
||||
background-image: -o-linear-gradient(top, #fafafa, #e9e9e9);
|
||||
background-image: linear-gradient(to bottom, #fafafa, #e9e9e9);
|
||||
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
-webkit-box-shadow: inset 0 1px 0 #fff;
|
||||
-moz-box-shadow: inset 0 1px 0 #fff;
|
||||
box-shadow: inset 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
#insert {
|
||||
background: #2ea2cc;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#2ea2cc), to(#1e8cbe));
|
||||
background: -webkit-linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
|
||||
background: linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=0 );
|
||||
border-color: #0074a2;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
|
||||
box-shadow: inset 0 1px 0 rgba(120,200,230,0.5);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px 0 rgba(0,86,132,0.7);
|
||||
}
|
||||
|
||||
#insert:hover,
|
||||
#cancel:hover,
|
||||
input.mceButton:hover,
|
||||
.updateButton:hover,
|
||||
#insert:focus,
|
||||
#cancel:focus,
|
||||
input.mceButton:focus,
|
||||
.updateButton:focus {
|
||||
border: 1px solid #555;
|
||||
background: #f3f3f3;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
|
||||
background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: -o-linear-gradient(top, #fff, #f3f3f3);
|
||||
background-image: linear-gradient(to bottom, #fff, #f3f3f3);
|
||||
border-color: #999;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
#insert:hover,
|
||||
#insert:focus {
|
||||
background: #1e8cbe;
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#1e8cbe), to(#0074a2));
|
||||
background: -webkit-linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
|
||||
background: linear-gradient(top, #1e8cbe 0%,#0074a2 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e8cbe', endColorstr='#0074a2',GradientType=0 );
|
||||
border-color: #0074a2;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
|
||||
box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.mceActionPanel #insert {
|
||||
@ -103,6 +155,16 @@ td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #A
|
||||
.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
|
||||
.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
|
||||
|
||||
.wp-core-ui #tabs {
|
||||
padding-bottom: 5px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.wp-core-ui #tabs a {
|
||||
padding: 6px 10px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
/* Panels */
|
||||
.panel_wrapper div.panel {display:none;}
|
||||
.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
|
||||
|
@ -393,6 +393,8 @@ function wp_default_scripts( &$scripts ) {
|
||||
$scripts->add( 'media-editor', "/wp-includes/js/media-editor$suffix.js", array( 'shortcode', 'media-views' ), false, 1 );
|
||||
$scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models' ), false, 1 );
|
||||
|
||||
$scripts->add( 'svg-painter', '/wp-includes/js/svg-painter.js' );
|
||||
|
||||
if ( is_admin() ) {
|
||||
$scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 );
|
||||
did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array(
|
||||
@ -553,17 +555,22 @@ function wp_default_styles( &$styles ) {
|
||||
// Any rtl stylesheets that don't have a .min version
|
||||
$no_suffix = array( 'farbtastic' );
|
||||
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css" );
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array( 'open-sans', 'dashicons' ) );
|
||||
|
||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css" );
|
||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
||||
// Hotlink Open Sans, for now
|
||||
$styles->add( 'open-sans', '//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin-ext,latin' );
|
||||
|
||||
// Dashicons
|
||||
$styles->add( 'dashicons', '/wp-includes/css/dashicons.css' );
|
||||
|
||||
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
||||
$styles->add( 'colors', true, array('wp-admin', 'buttons') );
|
||||
$styles->add( 'colors', true, array( 'wp-admin', 'buttons', 'open-sans', 'dashicons' ) );
|
||||
|
||||
// do not refer to these directly, the right one is queued by the above "meta" colors handle
|
||||
$styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') );
|
||||
$styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array('wp-admin', 'buttons') );
|
||||
$styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array( 'wp-admin', 'buttons' ) );
|
||||
|
||||
$styles->add( 'media', "/wp-admin/css/media$suffix.css" );
|
||||
$styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') );
|
||||
@ -572,7 +579,7 @@ function wp_default_styles( &$styles ) {
|
||||
$styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" );
|
||||
$styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.12' );
|
||||
$styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.8' );
|
||||
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css" );
|
||||
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array( 'open-sans', 'dashicons' ) );
|
||||
$styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" );
|
||||
$styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" );
|
||||
$styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" );
|
||||
|
Loading…
x
Reference in New Issue
Block a user