Ticket #25858: 25858.diff
File 25858.diff, 338.2 KB (added by , 11 years ago) |
---|
-
src/wp-admin/admin-header.php
53 53 wp_enqueue_style( 'colors' ); 54 54 wp_enqueue_style( 'ie' ); 55 55 wp_enqueue_script('utils'); 56 wp_enqueue_script( 'svg-painter' ); 56 57 57 58 $admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix); 58 59 ?> … … 145 146 if ( wp_is_mobile() ) 146 147 $admin_body_class .= ' mobile'; 147 148 148 $admin_body_class .= ' no-customize-support'; 149 if ( is_multisite() ) 150 $admin_body_class .= ' multisite'; 149 151 152 if ( is_network_admin() ) 153 $admin_body_class .= ' network-admin'; 154 155 $admin_body_class .= ' no-customize-support no-svg'; 156 150 157 ?> 151 158 </head> 152 159 <?php -
src/wp-admin/css/colors-classic.css
1 /*------------------------------------------------------------------------------2 3 4 Howdy! This is the CSS file that controls the5 Blue (classic) color style on the WordPress Dashboard.6 7 This file contains both LTR and RTL styles.8 9 10 TABLE OF CONTENTS:11 ------------------12 1.0 - Left to Right Styles13 2.0 - Right to Left Styles14 15 16 ------------------------------------------------------------------------------*/17 18 19 /*------------------------------------------------------------------------------20 1.0 - Left to Right Styles21 ------------------------------------------------------------------------------*/22 23 .find-box-search,24 .find-box-buttons {25 background-color: #eff8ff;26 border-top: 1px solid #dce6f8;27 }28 29 .find-box {30 background-color: #5589aa;31 }32 33 .find-box-head {34 color: #fff;35 }36 37 .find-box-inside {38 background-color: #fff;39 }40 41 a.page-numbers:hover {42 border-color: #999;43 }44 45 body,46 #wpbody,47 .form-table .pre,48 .ui-autocomplete li a {49 color: #333;50 }51 52 body > #upload-menu {53 border-bottom-color: #fff;54 }55 56 #postcustomstuff table,57 #your-profile fieldset,58 #rightnow,59 div.dashboard-widget,60 #dashboard-widgets p.dashboard-widget-links {61 border-color: #d1e5ee;62 }63 64 #poststuff .inside label.spam,65 #poststuff .inside label.deleted {66 color: red;67 }68 69 #poststuff .inside label.waiting {70 color: orange;71 }72 73 #poststuff .inside label.approved {74 color: green;75 }76 77 #postcustomstuff table {78 border-color: #dfdfdf;79 background-color: #f9f9f9;80 }81 82 #postcustomstuff thead th {83 background-color: #f1f1f1;84 }85 86 table.widefat {87 border-color: #d1e5ee;88 background-color: #fff;89 }90 91 div.dashboard-widget-error {92 background-color: #c43;93 }94 95 div.dashboard-widget-notice {96 background-color: #cfe1ef;97 }98 99 div.dashboard-widget-submit {100 border-top-color: #ccc;101 }102 103 ul.category-tabs li {104 border-color: transparent;105 }106 107 div.tabs-panel,108 .wp-tab-panel,109 ul.add-menu-item-tabs li.tabs,110 .wp-tab-active {111 border-color: #d1e5ee;112 background-color: #fff;113 }114 115 ul.category-tabs li.tabs {116 border-color: #d1e5ee #d1e5ee #fff;117 }118 119 ul.category-tabs li.tabs,120 ul.add-menu-item-tabs li.tabs,121 .wp-tab-active {122 background-color: #fff;123 }124 125 kbd,126 code {127 background: #eff8ff;128 }129 130 textarea,131 input[type="text"],132 input[type="password"],133 input[type="file"],134 input[type="email"],135 input[type="number"],136 input[type="search"],137 input[type="tel"],138 input[type="url"],139 select {140 border-color: #d1e5ee;141 }142 143 textarea:focus,144 input[type="text"]:focus,145 input[type="password"]:focus,146 input[type="file"]:focus,147 input[type="email"]:focus,148 input[type="number"]:focus,149 input[type="search"]:focus,150 input[type="tel"]:focus,151 input[type="url"]:focus,152 select:focus {153 border-color: #b0c8d7;154 }155 156 input.disabled,157 textarea.disabled {158 background-color: #ccc;159 }160 161 #plugin-information .action-button a,162 #plugin-information .action-button a:hover,163 #plugin-information .action-button a:visited {164 color: #fff;165 }166 167 .revisions-meta,168 .widget .widget-top,169 .postbox h3,170 .stuffbox h3,171 .widefat thead tr th,172 .widefat tfoot tr th,173 h3.dashboard-widget-title,174 h3.dashboard-widget-title span,175 h3.dashboard-widget-title small,176 .sidebar-name,177 #nav-menu-header,178 #nav-menu-footer,179 .menu-item-handle,180 #fullscreen-topbar {181 background: #f5fafd;182 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));183 background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);184 background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);185 background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);186 background-image: linear-gradient(to top, #eff8ff, #f7fcfe);187 }188 189 .widget .widget-top,190 .postbox h3,191 .stuffbox h3 {192 border-bottom-color: #d1e5ee;193 text-shadow: #fff 0 1px 0;194 -webkit-box-shadow: 0 1px 0 #fff;195 box-shadow: 0 1px 0 #fff;196 }197 198 .form-table th,199 .form-wrap label {200 color: #222;201 text-shadow: #fff 0 1px 0;202 }203 204 .description,205 .form-wrap p {206 color: #666;207 }208 209 strong .post-com-count span {210 background-color: #21759b;211 }212 213 .sorthelper {214 background-color: #ccf3fa;215 }216 217 .ac_match,218 .subsubsub a.current {219 color: #000;220 }221 222 .wrap h2 {223 color: #174f69;224 }225 226 .wrap .add-new-h2,227 .wrap .add-new-h2:active {228 background: #f1f1f1;229 }230 231 .subtitle {232 color: #777;233 }234 235 .ac_over {236 background-color: #f0f0b8;237 }238 239 .ac_results {240 background-color: #fff;241 border-color: #b0c8d7;242 }243 244 .ac_results li {245 color: #101010;246 }247 248 .alternate,249 .alt {250 background-color: #f7fcfe;251 }252 253 .available-theme a.screenshot {254 background-color: #eff8ff;255 border-color: #acd;256 }257 258 #current-theme {259 border-bottom-color: #d1e5ee;260 }261 262 .bar {263 background-color: #e8e8e8;264 border-right-color: #99d;265 }266 267 #media-upload,268 #media-upload .media-item .slidetoggle {269 background: #fff;270 }271 272 #media-upload .slidetoggle {273 border-top-color: #dfdfdf;274 }275 276 div.error,277 .login #login_error {278 background-color: #ffebe8;279 border-color: #c00;280 }281 282 div.error a {283 color: #c00;284 }285 286 .form-invalid {287 background-color: #ffebe8 !important;288 }289 290 .form-invalid input,291 .form-invalid select {292 border-color: #c00 !important;293 }294 295 .submit,296 #commentsdiv #add-new-comment {297 border-color: #dfdfdf;298 }299 300 .highlight {301 background-color: #e4f2fd;302 color: #000;303 }304 305 .howto,306 .nonessential,307 #edit-slug-box,308 .form-input-tip,309 .subsubsub {310 color: #666;311 }312 313 .media-upload-form label.form-help,314 td.help {315 color: #9a9a9a;316 }317 318 .ui-autocomplete {319 border-color: #b0c8d7;320 background-color: #eff8ff;321 }322 323 .ui-autocomplete li a.ui-state-focus {324 background-color: #def1ff;325 }326 327 .post-com-count {328 color: #fff;329 }330 331 .post-com-count span {332 background-color: #bbb;333 color: #fff;334 }335 336 .post-com-count:hover span {337 background-color: #d54e21;338 }339 340 .quicktags, .search {341 background-color: #ccc;342 color: #000;343 }344 345 .side-info h5 {346 border-bottom-color: #dadada;347 }348 349 .side-info ul {350 color: #666;351 }352 353 a:hover,354 a:active {355 color: #d54e21;356 }357 358 a:focus {359 color: #124964;360 }361 362 #adminmenu a:hover,363 #adminmenu li.menu-top > a:focus,364 #adminmenu .wp-submenu a:hover,365 #the-comment-list .comment a:hover,366 #rightnow a:hover,367 #media-upload a.del-link:hover,368 div.dashboard-widget-submit input:hover,369 .subsubsub a:hover,370 .subsubsub a.current:hover,371 .ui-tabs-nav a:hover,372 .plugins .inactive a:hover,373 #all-plugins-table .plugins .inactive a:hover,374 #search-plugins-table .plugins .inactive a:hover {375 color: #d54e21;376 }377 378 #the-comment-list .comment-item,379 #dashboard-widgets #dashboard_quick_press form p.submit {380 border-color: #dfdfdf;381 }382 383 #side-sortables .category-tabs .tabs a,384 #side-sortables .add-menu-item-tabs .tabs a,385 .wp-tab-bar .wp-tab-active a {386 color: #333;387 }388 389 #dashboard_right_now .table_content,390 #dashboard_right_now .table_discussion {391 border-top-color: #d1e5ee;392 }393 394 #rightnow .rbutton {395 background-color: #ebebeb;396 color: #264761;397 }398 399 .submitbox .submit {400 background-color: #464646;401 color: #ccc;402 }403 404 .plugins a.delete:hover,405 #all-plugins-table .plugins a.delete:hover,406 #search-plugins-table .plugins a.delete:hover,407 .submitbox .submitdelete {408 color: #f00;409 border-bottom-color: #f00;410 }411 412 .submitbox .submitdelete:hover,413 #media-items a.delete:hover,414 #media-items a.delete-permanently:hover {415 color: #fff;416 background-color: #f00;417 border-bottom-color: #f00;418 }419 420 #normal-sortables .submitbox .submitdelete:hover {421 color: #000;422 background-color: #f00;423 border-bottom-color: #f00;424 }425 426 .tablenav .dots {427 border-color: transparent;428 }429 430 .tablenav .next,431 .tablenav .prev {432 border-color: transparent;433 color: #21759b;434 }435 436 .tablenav .next:hover,437 .tablenav .prev:hover {438 border-color: transparent;439 color: #d54e21;440 }441 442 div.updated,443 .login .message {444 background-color: #ffffe0;445 border-color: #e6db55;446 }447 448 .update-message {449 color: #000;450 }451 452 a.page-numbers {453 border-bottom-color: #b8d3e2;454 }455 456 .commentlist li {457 border-bottom-color: #ccc;458 }459 460 .widefat td,461 .widefat th {462 border-top-color: #fff;463 border-bottom-color: #d0dfe9;464 }465 466 .widefat th {467 text-shadow: rgba(255,255,255,0.8) 0 1px 0;468 }469 470 .widefat td {471 color: #555;472 }473 .widefat p,474 .widefat ol,475 .widefat ul {476 color: #333;477 }478 479 .widefat thead tr th,480 .widefat tfoot tr th,481 h3.dashboard-widget-title,482 h3.dashboard-widget-title span,483 h3.dashboard-widget-title small {484 color: #333;485 }486 487 th.sortable a:hover,488 th.sortable a:active,489 th.sortable a:focus {490 color: #333;491 }492 493 th.sortable a:focus {494 background: #e1e1e1;495 background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9));496 background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9);497 background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9);498 background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9);499 background-image: linear-gradient(to top, #dcdcdc, #e9e9e9);500 }501 502 h3.dashboard-widget-title small a {503 color: #d7d7d7;504 }505 506 h3.dashboard-widget-title small a:hover {507 color: #fff;508 }509 510 a,511 #adminmenu a,512 #the-comment-list p.comment-author strong a,513 #media-upload a.del-link,514 #media-items a.delete,515 #media-items a.delete-permanently,516 .plugins a.delete,517 .ui-tabs-nav a {518 color: #21759b;519 }520 521 #adminmenu .awaiting-mod,522 #adminmenu .update-plugins,523 #sidemenu a .update-plugins,524 #rightnow .reallynow {525 background-color: #464646;526 color: #fff;527 -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;528 box-shadow: rgba(255,255,255,0.5) 0 1px 0;529 }530 #plugin-information .action-button {531 background-color: #d54e21;532 color: #fff;533 }534 535 #adminmenu li.current a .awaiting-mod,536 #adminmenu li a.wp-has-current-submenu .update-plugins{537 background-color: #464646;538 color: #fff;539 -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;540 box-shadow: rgba(255,255,255,0.5) 0 1px 0;541 }542 543 div#media-upload-header,544 div#plugin-information-header {545 background-color: #f9f9f9;546 border-bottom-color: #dfdfdf;547 }548 549 #currenttheme img {550 border-color: #666;551 }552 553 #dashboard_secondary div.dashboard-widget-content ul li a {554 background-color: #f9f9f9;555 }556 557 input.readonly, textarea.readonly {558 background-color: #ddd;559 }560 561 #editable-post-name {562 background-color: #fffbcc;563 }564 565 #edit-slug-box strong,566 .tablenav .displaying-num,567 #submitted-on,568 .submitted-on {569 color: #777;570 }571 572 .login #nav a,573 .login #backtoblog a {574 color: #21759b !important;575 }576 577 .login #nav a:hover,578 .login #backtoblog a:hover {579 color: #d54e21 !important;580 }581 582 #wpfooter {583 color: #777;584 border-color: #b0c8d7;585 }586 587 .imgedit-group,588 #media-items .media-item,589 .media-item .describe {590 border-color: #dfdfdf;591 }592 593 .checkbox,594 .side-info,595 .plugins tr,596 #your-profile #rich_editing {597 background-color: #fcfcfc;598 }599 600 .plugins .inactive,601 .plugins .inactive th,602 .plugins .inactive td,603 tr.inactive + tr.plugin-update-tr .plugin-update {604 background-color: #f7fcfe;605 }606 607 .plugin-update-tr .update-message {608 background-color: #fffbe4;609 border-color: #dfdfdf;610 }611 612 .plugins .active,613 .plugins .active th,614 .plugins .active td {615 color: #000;616 }617 618 .plugins .inactive a {619 color: #579;620 }621 622 #the-comment-list tr.undo,623 #the-comment-list div.undo {624 background-color: #f4f4f4;625 }626 627 #the-comment-list .unapproved {628 background-color: #ffffe0;629 }630 631 #the-comment-list .approve a {632 color: #006505;633 }634 635 #the-comment-list .unapprove a {636 color: #d98500;637 }638 639 table.widefat span.delete a,640 table.widefat span.trash a,641 table.widefat span.spam a,642 #dashboard_recent_comments .delete a,643 #dashboard_recent_comments .trash a,644 #dashboard_recent_comments .spam a {645 color: #bc0b0b;646 }647 648 .welcome-panel {649 background: #f5fafd;650 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));651 background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);652 background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);653 background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);654 background-image: linear-gradient(to top, #eff8ff, #f7fcfe);655 border-color: #d1e5ee;656 }657 .welcome-panel p {658 color: #777;659 }660 .welcome-panel-column p {661 color: #464646;662 }663 .welcome-panel h3 {664 text-shadow: 1px 1px 1px #fff;665 }666 667 .widget,668 #widget-list .widget-top,669 .postbox,670 #titlediv,671 #poststuff .postarea,672 .stuffbox {673 border-color: #d1e5ee;674 -webkit-box-shadow: inset 0 1px 0 #fff;675 box-shadow: inset 0 1px 0 #fff;676 -webkit-border-radius: 3px;677 border-radius: 3px;678 }679 680 .widget,681 #widget-list .widget-top,682 .postbox,683 .menu-item-settings {684 background: #f5fafd;685 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));686 background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);687 background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);688 background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);689 background-image: linear-gradient(to top, #eff8ff, #f7fcfe);690 }691 692 .postbox h3 {693 color: #174f69;694 }695 696 .widget .widget-top {697 color: #174f69;698 }699 700 .js .sidebar-name:hover h3,701 .js .postbox h3:hover {702 color: #000;703 }704 705 .curtime #timestamp {706 background-image: url(../images/date-button.gif);707 }708 709 #quicktags #ed_link {710 color: #00f;711 }712 713 #rightnow .youhave {714 background-color: #f0f6fb;715 }716 717 #rightnow a {718 color: #448abd;719 }720 721 .tagchecklist span a,722 #bulk-titles div a {723 background: url(../images/xit.gif) no-repeat;724 }725 726 .tagchecklist span a:hover,727 #bulk-titles div a:hover {728 background: url(../images/xit.gif) no-repeat -10px 0;729 }730 731 #update-nag, .update-nag {732 background-color: #fffbcc;733 border-color: #e6db55;734 color: #555;735 }736 737 #screen-meta {738 background-color: #eff8ff;739 border-color: #d1e5ee;740 -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );741 box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );742 }743 744 #contextual-help-back {745 background: #fff;746 }747 748 .contextual-help-tabs a:hover {749 background-color: #ceeaff;750 color: #333;751 }752 753 #contextual-help-back,754 .contextual-help-tabs .active {755 border-color: #d1e5ee;756 }757 758 .contextual-help-tabs .active,759 .contextual-help-tabs .active a,760 .contextual-help-tabs .active a:hover {761 background: #fff;762 color: #000;763 }764 765 /* screen options and help tabs */766 #screen-options-link-wrap,767 #contextual-help-link-wrap {768 border-right: 1px solid #d1e5ee;769 border-left: 1px solid #d1e5ee;770 border-bottom: 1px solid #d1e5ee;771 background: #eff8ff;772 background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff));773 background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff);774 background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff);775 background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff);776 background-image: linear-gradient(to top, #def1ff, #eff8ff);777 }778 779 #screen-meta-links a {780 color: #606060;781 background: transparent url(../images/arrows.png) no-repeat right 4px;782 }783 784 #screen-meta-links a:hover,785 #screen-meta-links a:active {786 color: #000;787 background-color: transparent;788 }789 790 #screen-meta-links a.screen-meta-active {791 background-position: right -31px;792 }793 794 /* end screen options and help tabs */795 796 .login #backtoblog a {797 color: #464646;798 }799 800 #wphead {801 border-bottom: 1px solid #d0dfe9;802 }803 804 #wphead h1 a {805 color: #174f69;806 }807 808 #wpfooter a:link,809 #wpfooter a:visited {810 text-decoration: none;811 }812 813 #wpfooter a:hover {814 color: #000;815 text-decoration: underline;816 }817 818 .file-error,819 abbr.required,820 .widget-control-remove:hover,821 table.widefat .delete a:hover,822 table.widefat .trash a:hover,823 table.widefat .spam a:hover,824 #dashboard_recent_comments .delete a:hover,825 #dashboard_recent_comments .trash a:hover826 #dashboard_recent_comments .spam a:hover {827 color: #f00;828 }829 830 #pass-strength-result {831 background-color: #eee;832 border-color: #ddd !important;833 }834 835 #pass-strength-result.bad {836 background-color: #ffb78c;837 border-color: #ff853c !important;838 }839 840 #pass-strength-result.good {841 background-color: #ffec8b;842 border-color: #fc0 !important;843 }844 845 #pass-strength-result.short {846 background-color: #ffa0a0;847 border-color: #f04040 !important;848 }849 850 #pass-strength-result.strong {851 background-color: #c3ff88;852 border-color: #8dff1c !important;853 }854 855 /* editors */856 #poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar {857 border-color: #d0dfe9;858 background-color: #eff8ff;859 }860 861 #poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar * {862 color: #555;863 }864 865 #poststuff #editor-toolbar .active {866 border-color: #d0dfe9 #d0dfe9 #eff8ff;867 background-color: #eff8ff;868 color: #333;869 }870 871 .wp-editor-wrap .wp-editor-container,872 .wp-editor-wrap .wp_themeSkin table.mceLayout {873 border-color: #d1e5ee #d1e5ee #d0dfe9;874 }875 876 #editorcontainer {877 border-color: #d1e5ee #d1e5ee #d0dfe9;878 }879 880 #post-status-info {881 border-color: #d0dfe9 #d1e5ee #d1e5ee;882 }883 884 /* TinyMCE */885 886 .wp-admin .wp-editor-wrap .wp-switch-editor {887 background-color: #d3e9f2;888 border-color: #d1e5ee #d1e5ee #d3e9f2;889 color: #174F69;890 }891 892 .wp-admin .wp-editor-wrap .wp-switch-editor:active {893 background-color: #f5fafd;894 }895 896 .wp-admin .wp-editor-wrap.tmce-active .switch-tmce,897 .wp-admin .wp-editor-wrap.html-active .switch-html {898 background: #f7fcfe;899 border-color: #d1e5ee #d1e5ee #f7fcfe;900 }901 902 .wp-admin .wp-editor-wrap .quicktags-toolbar,903 .wp-admin .wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {904 border-color: #d0dfe9;905 background-color: #f5fafd;906 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));907 background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);908 background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);909 background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);910 background-image: linear-gradient(to top, #eff8ff, #f7fcfe);911 }912 913 .wp-admin .wp_themeSkin table.mceListBox {914 border-color: #d1e5ee;915 }916 917 .wp-admin .wp_themeSkin table.mceListBoxEnabled:hover,918 .wp-admin .wp_themeSkin table.mceListBoxEnabled:active,919 .wp-admin .wp_themeSkin table.mceListBoxHover,920 .wp-admin .wp_themeSkin table.mceListBoxHover:active,921 .wp-admin .wp_themeSkin table.mceListBoxSelected {922 border-color: #b8cfdf;923 }924 925 .wp-admin .wp_themeSkin a.mceButtonEnabled:hover,926 .wp-admin .wp_themeSkin table.mceSplitButton:hover {927 border-color: #c3d2dc;928 background: #f4f9fc;929 background-image: -webkit-gradient(linear, left bottom, left top, from(#f4f9fc), to(#fff));930 background-image: -webkit-linear-gradient(bottom, #f4f9fc, #fff);931 background-image: -moz-linear-gradient(bottom, #f4f9fc, #fff);932 background-image: -o-linear-gradient(bottom, #f4f9fc, #fff);933 background-image: linear-gradient(to top, #f4f9fc, #fff);934 }935 936 .wp-admin .wp_themeSkin a.mceButton:active,937 .wp-admin .wp_themeSkin a.mceButtonEnabled:active,938 .wp-admin .wp_themeSkin a.mceButtonSelected:active,939 .wp-admin .wp_themeSkin a.mceButtonActive,940 .wp-admin .wp_themeSkin a.mceButtonActive:active,941 .wp-admin .wp_themeSkin a.mceButtonActive:hover,942 .wp-admin .wp_themeSkin .mceSplitButtonSelected table,943 .wp-admin .wp_themeSkin .mceSplitButtonSelected table:hover {944 border-color: #8f9da9 #c3d2dc #c3d2dc #8f9da9;945 background: #f4f9fc;946 background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f4f9fc));947 background-image: -webkit-linear-gradient(bottom, #fff, #f4f9fc);948 background-image: -moz-linear-gradient(bottom, #fff, #f4f9fc);949 background-image: -o-linear-gradient(bottom, #fff, #f4f9fc);950 background-image: linear-gradient(to top, #fff, #f4f9fc);951 }952 953 .wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceOpen,954 .wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceAction {955 border-color: #8f9da9 #c3d2dc #c3d2dc #8f9da9;956 }957 958 .wp-admin .wp_themeSkin .mceSplitButton:hover a {959 border-color: #c3d2dc;960 }961 /* end TinyMCE */962 963 .editwidget .widget-inside {964 border-color: #d0dfe9;965 }966 967 #titlediv #title {968 background-color: #fff;969 }970 971 #tTips p#tTips_inside {972 background-color: #ddd;973 color: #333;974 }975 976 #poststuff .inside .the-tagcloud {977 border-color: #ddd;978 }979 980 /* menu */981 #adminmenuback,982 #adminmenuwrap {983 background-color: #eff8ff;984 border-color: #d1e5ee;985 }986 987 #adminmenushadow,988 #adminmenuback {989 background-image: url(../images/menu-shadow.png);990 background-position: top right;991 background-repeat: repeat-y;992 }993 994 #adminmenu li.wp-menu-separator {995 background: #d1e5ee;996 border-color: #bed1dd;997 }998 999 #adminmenu div.separator {1000 border-color: #d1e5ee;1001 }1002 1003 #adminmenu a.menu-top,1004 #adminmenu .wp-submenu .wp-submenu-head {1005 border-top-color: #fff;1006 border-bottom-color: #cae6ff;1007 }1008 1009 #adminmenu li.wp-menu-open {1010 border-color: #d1e5ee;1011 }1012 1013 #adminmenu li.menu-top:hover,1014 #adminmenu li.opensub > a.menu-top,1015 #adminmenu li > a.menu-top:focus {1016 background-color: #e0f1ff;1017 color: #d54e21;1018 text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );1019 }1020 1021 /* So it doesn't get applied to the number spans (comments, updates, etc) */1022 #adminmenu li.menu-top:hover > a span,1023 #adminmenu li.menu-top > a:focus span {1024 text-shadow: none;1025 }1026 1027 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,1028 #adminmenu li.current a.menu-top,1029 .folded #adminmenu li.wp-has-current-submenu,1030 .folded #adminmenu li.current.menu-top,1031 #adminmenu .wp-menu-arrow,1032 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {1033 background: #5589aa;1034 background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));1035 background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);1036 background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);1037 background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);1038 background-image: linear-gradient(to top, #5589aa, #619bbb);1039 }1040 1041 #adminmenu .wp-menu-arrow div {1042 background: #5589aa;1043 background-image: -webkit-gradient(linear, right bottom, left top, from(#5589aa), to(#619bbb));1044 background-image: -webkit-linear-gradient(bottom right, #5589aa, #619bbb);1045 background-image: -moz-linear-gradient(bottom right, #5589aa, #619bbb);1046 background-image: -o-linear-gradient(bottom right, #5589aa, #619bbb);1047 background-image: linear-gradient(to top left, #5589aa, #619bbb);1048 }1049 1050 #adminmenu li.wp-not-current-submenu .wp-menu-arrow {1051 border-top-color: #fff;1052 border-bottom-color: #cae6ff;1053 background: #e0f1ff;1054 }1055 1056 #adminmenu li.wp-not-current-submenu .wp-menu-arrow div {1057 background: #e0f1ff;1058 border-color: #cae6ff;1059 }1060 1061 .folded #adminmenu li.menu-top li:hover a {1062 background-image: none;1063 }1064 1065 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,1066 #adminmenu li.current a.menu-top,1067 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {1068 text-shadow: 0 -1px 0 #333;1069 color: #fff;1070 border-top-color: #5a8fad;1071 border-bottom-color: #5589aa;1072 }1073 1074 .folded #adminmenu li.wp-has-current-submenu,1075 .folded #adminmenu li.current.menu-top {1076 border-top-color: #5a8fad;1077 border-bottom-color: #5589aa;1078 }1079 1080 #adminmenu .wp-submenu a:hover,1081 #adminmenu .wp-submenu a:focus {1082 background-color: #eff8ff;1083 color: #333;1084 }1085 1086 #adminmenu .wp-submenu li.current,1087 #adminmenu .wp-submenu li.current a,1088 #adminmenu .wp-submenu li.current a:hover {1089 color: #333;1090 }1091 1092 #adminmenu .wp-submenu,1093 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,1094 .folded #adminmenu .wp-has-current-submenu .wp-submenu {1095 background-color: #fff;1096 border-color: #d0dfe9;1097 -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);1098 box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);1099 }1100 1101 #adminmenu .wp-submenu .wp-submenu-head {1102 background-color: #e0f1ff;1103 color: #333;1104 }1105 1106 /* collapse menu button */1107 #collapse-menu {1108 color: #a0c3d5;1109 border-top-color: #f9f9f9;1110 }1111 1112 #collapse-menu:hover {1113 color: #5a8fad;1114 }1115 1116 #collapse-button {1117 border-color: #d0dfe9;1118 background: #eff8ff;1119 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));1120 background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);1121 background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);1122 background-image: -o-linear-gradient(bottom, #eff8ff, #fff);1123 background-image: linear-gradient(to top, #eff8ff, #fff);1124 }1125 1126 #collapse-menu:hover #collapse-button {1127 border-color: #a0c3d5;1128 }1129 1130 #collapse-button div {1131 background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px;1132 }1133 1134 .folded #collapse-button div {1135 background-position: 0 -108px;1136 }1137 1138 /* Auto-folding of the admin menu */1139 @media only screen and (max-width: 900px) {1140 .auto-fold #adminmenu li.wp-has-current-submenu,1141 .auto-fold #adminmenu li.current.menu-top {1142 background-color: #5589aa;1143 background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));1144 background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);1145 background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);1146 background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);1147 background-image: linear-gradient(bottom, #5589aa, #619bbb);1148 }1149 1150 .auto-fold #adminmenu li.wp-has-current-submenu,1151 .auto-fold #adminmenu li.current.menu-top {1152 border-top-color: #5a8fad;1153 border-bottom-color: #5589aa;1154 }1155 1156 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,1157 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {1158 background-color: #fff;1159 border-color: #d0dfe9;1160 -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);1161 box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);1162 }1163 1164 .auto-fold #collapse-button div {1165 background-position: 0 -108px;1166 }1167 }1168 1169 /* menu and screen icons */1170 .icon16,1171 .icon32,1172 div.wp-menu-image {1173 background-color: transparent;1174 background-repeat: no-repeat;1175 }1176 1177 .icon16.icon-dashboard,1178 .menu-icon-dashboard div.wp-menu-image,1179 .icon16.icon-post,1180 .menu-icon-post div.wp-menu-image,1181 .icon16.icon-media,1182 .menu-icon-media div.wp-menu-image,1183 .icon16.icon-links,1184 .menu-icon-links div.wp-menu-image,1185 .icon16.icon-page,1186 .menu-icon-page div.wp-menu-image,1187 .icon16.icon-comments,1188 .menu-icon-comments div.wp-menu-image,1189 .icon16.icon-appearance,1190 .menu-icon-appearance div.wp-menu-image,1191 .icon16.icon-plugins,1192 .menu-icon-plugins div.wp-menu-image,1193 .icon16.icon-users,1194 .menu-icon-users div.wp-menu-image,1195 .icon16.icon-tools,1196 .menu-icon-tools div.wp-menu-image,1197 .icon16.icon-settings,1198 .menu-icon-settings div.wp-menu-image,1199 .icon16.icon-site,1200 .menu-icon-site div.wp-menu-image,1201 .icon16.icon-generic,1202 .menu-icon-generic div.wp-menu-image {1203 background-image: url(../images/menu-vs.png?ver=20121105);1204 }1205 1206 .icon16.icon-dashboard,1207 #adminmenu .menu-icon-dashboard div.wp-menu-image {1208 background-position: -59px -33px;1209 }1210 1211 #adminmenu .menu-icon-dashboard:hover div.wp-menu-image,1212 #adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,1213 #adminmenu .menu-icon-dashboard.current div.wp-menu-image {1214 background-position: -59px -1px;1215 }1216 1217 .icon16.icon-post,1218 #adminmenu .menu-icon-post div.wp-menu-image {1219 background-position: -269px -33px;1220 }1221 1222 #adminmenu .menu-icon-post:hover div.wp-menu-image,1223 #adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image,1224 #adminmenu .menu-icon-post.current div.wp-menu-image {1225 background-position: -269px -1px;1226 }1227 1228 .icon16.icon-media,1229 #adminmenu .menu-icon-media div.wp-menu-image {1230 background-position: -119px -33px;1231 }1232 1233 #adminmenu .menu-icon-media:hover div.wp-menu-image,1234 #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,1235 #adminmenu .menu-icon-media.current div.wp-menu-image {1236 background-position: -119px -1px;1237 }1238 1239 .icon16.icon-links,1240 #adminmenu .menu-icon-links div.wp-menu-image {1241 background-position: -89px -33px;1242 }1243 1244 #adminmenu .menu-icon-links:hover div.wp-menu-image,1245 #adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,1246 #adminmenu .menu-icon-links.current div.wp-menu-image {1247 background-position: -89px -1px;1248 }1249 1250 .icon16.icon-page,1251 #adminmenu .menu-icon-page div.wp-menu-image {1252 background-position: -149px -33px;1253 }1254 1255 #adminmenu .menu-icon-page:hover div.wp-menu-image,1256 #adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,1257 #adminmenu .menu-icon-page.current div.wp-menu-image {1258 background-position: -149px -1px;1259 }1260 1261 .icon16.icon-comments,1262 #adminmenu .menu-icon-comments div.wp-menu-image {1263 background-position: -29px -33px;1264 }1265 1266 #adminmenu .menu-icon-comments:hover div.wp-menu-image,1267 #adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,1268 #adminmenu .menu-icon-comments.current div.wp-menu-image {1269 background-position: -29px -1px;1270 }1271 1272 .icon16.icon-appearance,1273 #adminmenu .menu-icon-appearance div.wp-menu-image {1274 background-position: 1px -33px;1275 }1276 1277 #adminmenu .menu-icon-appearance:hover div.wp-menu-image,1278 #adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,1279 #adminmenu .menu-icon-appearance.current div.wp-menu-image {1280 background-position: 1px -1px;1281 }1282 1283 .icon16.icon-plugins,1284 #adminmenu .menu-icon-plugins div.wp-menu-image {1285 background-position: -179px -33px;1286 }1287 1288 #adminmenu .menu-icon-plugins:hover div.wp-menu-image,1289 #adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,1290 #adminmenu .menu-icon-plugins.current div.wp-menu-image {1291 background-position: -179px -1px;1292 }1293 1294 .icon16.icon-users,1295 #adminmenu .menu-icon-users div.wp-menu-image {1296 background-position: -300px -33px;1297 }1298 1299 #adminmenu .menu-icon-users:hover div.wp-menu-image,1300 #adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,1301 #adminmenu .menu-icon-users.current div.wp-menu-image {1302 background-position: -300px -1px;1303 }1304 1305 .icon16.icon-tools,1306 #adminmenu .menu-icon-tools div.wp-menu-image {1307 background-position: -209px -33px;1308 }1309 1310 #adminmenu .menu-icon-tools:hover div.wp-menu-image,1311 #adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,1312 #adminmenu .menu-icon-tools.current div.wp-menu-image {1313 background-position: -209px -1px;1314 }1315 1316 .icon16.icon-settings,1317 #adminmenu .menu-icon-settings div.wp-menu-image {1318 background-position: -239px -33px;1319 }1320 1321 #adminmenu .menu-icon-settings:hover div.wp-menu-image,1322 #adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,1323 #adminmenu .menu-icon-settings.current div.wp-menu-image {1324 background-position: -239px -1px;1325 }1326 1327 .icon16.icon-site,1328 #adminmenu .menu-icon-site div.wp-menu-image {1329 background-position: -359px -33px;1330 }1331 1332 #adminmenu .menu-icon-site:hover div.wp-menu-image,1333 #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,1334 #adminmenu .menu-icon-site.current div.wp-menu-image {1335 background-position: -359px -1px;1336 }1337 1338 .icon16.icon-generic,1339 #adminmenu .menu-icon-generic div.wp-menu-image {1340 background-position: -330px -33px;1341 }1342 1343 #adminmenu .menu-icon-generic:hover div.wp-menu-image,1344 #adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,1345 #adminmenu .menu-icon-generic.current div.wp-menu-image {1346 background-position: -330px -1px;1347 }1348 /* end menu and screen icons */1349 1350 /* Screen Icons */1351 .icon32.icon-post,1352 #icon-edit,1353 #icon-post,1354 .icon32.icon-dashboard,1355 #icon-index,1356 .icon32.icon-media,1357 #icon-upload,1358 .icon32.icon-links,1359 #icon-link-manager,1360 #icon-link,1361 #icon-link-category,1362 .icon32.icon-page,1363 #icon-edit-pages,1364 #icon-page,1365 .icon32.icon-comments,1366 #icon-edit-comments,1367 .icon32.icon-appearance,1368 #icon-themes,1369 .icon32.icon-plugins,1370 #icon-plugins,1371 .icon32.icon-users,1372 #icon-users,1373 #icon-profile,1374 #icon-user-edit,1375 .icon32.icon-tools,1376 #icon-tools,1377 #icon-admin,1378 .icon32.icon-settings,1379 #icon-options-general,1380 .icon32.icon-site,1381 #icon-ms-admin,1382 .icon32.icon-generic,1383 #icon-generic {1384 background-image: url(../images/icons32-vs.png?ver=20121105);1385 }1386 1387 .icon32.icon-post,1388 #icon-edit,1389 #icon-post {1390 background-position: -552px -5px;1391 }1392 1393 .icon32.icon-dashboard,1394 #icon-index {1395 background-position: -137px -5px;1396 }1397 1398 .icon32.icon-media,1399 #icon-upload {1400 background-position: -251px -5px;1401 }1402 1403 .icon32.icon-links,1404 #icon-link-manager,1405 #icon-link,1406 #icon-link-category {1407 background-position: -190px -5px;1408 }1409 1410 .icon32.icon-page,1411 #icon-edit-pages,1412 #icon-page {1413 background-position: -312px -5px;1414 }1415 1416 .icon32.icon-comments,1417 #icon-edit-comments {1418 background-position: -72px -5px;1419 }1420 1421 .icon32.icon-appearance,1422 #icon-themes {1423 background-position: -11px -5px;1424 }1425 1426 .icon32.icon-plugins,1427 #icon-plugins {1428 background-position: -370px -5px;1429 }1430 1431 .icon32.icon-users,1432 #icon-users,1433 #icon-profile,1434 #icon-user-edit {1435 background-position: -600px -5px;1436 }1437 1438 .icon32.icon-tools,1439 #icon-tools,1440 #icon-admin {1441 background-position: -432px -5px;1442 }1443 1444 .icon32.icon-settings,1445 #icon-options-general {1446 background-position: -492px -5px;1447 }1448 1449 .icon32.icon-site,1450 #icon-ms-admin {1451 background-position: -659px -5px;1452 }1453 1454 .icon32.icon-generic,1455 #icon-generic {1456 background-position: -708px -5px;1457 }1458 1459 /* end screen icons */1460 1461 /* Post format icons */1462 1463 .post-format-icon {1464 background: url(../images/post-formats-vs.png) no-repeat;1465 }1466 1467 /* Diff */1468 table.diff .diff-deletedline {1469 background-color: #ffe9e9;1470 }1471 1472 table.diff .diff-deletedline del {1473 background-color: #faa;1474 }1475 1476 table.diff .diff-addedline {1477 background-color: #e9ffe9;1478 }1479 1480 table.diff .diff-addedline ins {1481 background-color: #afa;1482 }1483 1484 .revisions-meta {1485 border: 1px solid #d1e5ee;1486 }1487 1488 .revisions-controls {1489 background: #fff;1490 background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(255,255,255,1)), color-stop(30px,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));1491 background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1492 background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1493 background: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1494 background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1495 }1496 1497 .revisions-tooltip,1498 .revisions-tooltip-arrow span {1499 border-color: #d1e5ee;1500 background-color: #fff;1501 }1502 1503 .revisions-tickmarks > div {1504 border-color: #d1e5ee;1505 }1506 1507 /* jQuery UI Slider */1508 .wp-slider.ui-slider {1509 border-color: #d1e5ee;1510 }1511 1512 .wp-slider .ui-slider-handle {1513 color: #333;1514 border-color: none;1515 }1516 1517 .wp-slider .ui-slider-handle {1518 border-color: #d0dfe9;1519 background: #eff8ff;1520 background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));1521 background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);1522 background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);1523 background-image: -o-linear-gradient(bottom, #eff8ff, #fff);1524 background-image: linear-gradient(to top, #eff8ff, #fff);1525 }1526 1527 .wp-slider .ui-slider-handle:hover,1528 .wp-slider .ui-slider-handle:focus {1529 border-color: #a0c3d5;1530 }1531 1532 .wp-slider .ui-slider-handle.ui-state-hover,1533 .wp-slider .ui-slider-handle.ui-state-focus {1534 border-color: #a0c3d5;1535 outline: none;1536 }1537 1538 /* edit image */1539 #sidemenu a {1540 background-color: #f9f9f9;1541 border-color: #f9f9f9;1542 border-bottom-color: #dfdfdf;1543 }1544 1545 #sidemenu a.current {1546 background-color: #fff;1547 border-color: #dfdfdf #dfdfdf #fff;1548 color: #d54e21;1549 }1550 1551 #replyerror {1552 border-color: #ddd;1553 background-color: #f9f9f9;1554 }1555 1556 /* table vim shortcuts */1557 .vim-current,1558 .vim-current th,1559 .vim-current td {1560 background-color: #e4f2fd !important;1561 }1562 1563 /* Install Plugins */1564 #plugin-information .fyi ul {1565 background-color: #eaf3fa;1566 }1567 1568 #plugin-information .fyi h2.mainheader {1569 background-color: #cee1ef;1570 }1571 1572 #plugin-information pre,1573 #plugin-information code {1574 background-color: #ededff;1575 }1576 1577 #plugin-information pre {1578 border: 1px solid #ccc;1579 }1580 1581 /* inline editor */1582 #bulk-titles {1583 border-color: #ddd;1584 }1585 1586 .inline-editor div.title {1587 background-color: #eaf3fa;1588 }1589 1590 .inline-editor ul.cat-checklist {1591 background-color: #fff;1592 border-color: #ddd;1593 }1594 1595 .inline-editor .quick-edit-save {1596 background-color: #f1f1f1;1597 }1598 1599 fieldset.inline-edit-col-right .inline-edit-col {1600 border-color: #dfdfdf;1601 }1602 1603 .attention {1604 color: #d54e21;1605 }1606 1607 .js .meta-box-sortables .postbox:hover .handlediv {1608 background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px;1609 }1610 1611 .tablenav .tablenav-pages {1612 color: #555;1613 }1614 1615 .tablenav .tablenav-pages a {1616 border-color: #d1e5ee;1617 background: #eee;1618 -moz-box-shadow: inset 0 1px 0 #fff;1619 -webkit-box-shadow: inset 0 1px 0 #fff;1620 box-shadow: inset 0 1px 0 #fff;1621 }1622 1623 .tablenav .tablenav-pages a:hover,1624 .tablenav .tablenav-pages a:focus {1625 color: #d54e21;1626 }1627 1628 .tablenav .tablenav-pages a.disabled,1629 .tablenav .tablenav-pages a.disabled:hover,1630 .tablenav .tablenav-pages a.disabled:focus {1631 color: #aaa;1632 }1633 1634 .tablenav .tablenav-pages .current {1635 background: #dfdfdf;1636 border-color: #d3d3d3;1637 }1638 1639 #availablethemes,1640 #availablethemes td {1641 border-color: #acd;1642 }1643 1644 #current-theme img {1645 border-color: #b0c8d7;1646 }1647 1648 #TB_window #TB_title a.tb-theme-preview-link,1649 #TB_window #TB_title a.tb-theme-preview-link:visited {1650 color: #999;1651 }1652 1653 #TB_window #TB_title a.tb-theme-preview-link:hover,1654 #TB_window #TB_title a.tb-theme-preview-link:focus {1655 color: #ccc;1656 }1657 1658 .misc-pub-section {1659 border-top-color: #fff;1660 border-bottom-color: #d1e5ee;1661 }1662 1663 #minor-publishing {1664 border-bottom-color: #cae6ff;1665 }1666 1667 #post-body .misc-pub-section {1668 border-left-color: #eee;1669 }1670 1671 .post-com-count span {1672 background-color: #bbb;1673 }1674 1675 .form-table .color-palette td {1676 border-color: #fff;1677 }1678 1679 .sortable-placeholder {1680 border-color: #bbb;1681 background-color: #f5f5f5;1682 }1683 1684 #post-body ul.category-tabs li.tabs a,1685 #post-body ul.add-menu-item-tabs li.tabs a,1686 body.press-this ul.category-tabs li.tabs a {1687 color: #333;1688 }1689 1690 .view-switch #view-switch-list,1691 .view-switch #view-switch-excerpt {1692 background-color: transparent;1693 background-image: url('../images/list.png');1694 background-repeat: no-repeat;1695 }1696 1697 .view-switch #view-switch-list {1698 background-position: 0 0;1699 }1700 1701 .view-switch .current #view-switch-list {1702 background-position: -40px 0;1703 }1704 1705 .view-switch #view-switch-excerpt {1706 background-position: -20px 0;1707 }1708 1709 .view-switch .current #view-switch-excerpt {1710 background-position: -60px 0;1711 }1712 1713 #header-logo {1714 background: transparent url(../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center;1715 }1716 1717 .popular-tags,1718 .feature-filter {1719 background-color: #fff;1720 border-color: #d1e5ee;1721 }1722 1723 div.widgets-sortables,1724 #widgets-left .inactive,1725 #available-widgets .widget-holder {1726 background-color: #f7fcfe;1727 border-color: #d0dfe9;1728 }1729 1730 #available-widgets .widget-description {1731 color: #555;1732 }1733 1734 .sidebar-name {1735 color: #464646;1736 text-shadow: #fff 0 1px 0;1737 border-color: #d0dfe9;1738 -webkit-box-shadow: inset 0 1px 0 #fff;1739 box-shadow: inset 0 1px 0 #fff;1740 }1741 1742 .js .sidebar-name:hover,1743 .js #removing-widget {1744 color: #d54e21;1745 }1746 1747 #removing-widget span {1748 color: black;1749 }1750 1751 .js .sidebar-name-arrow {1752 background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;1753 }1754 1755 .js .sidebar-name:hover .sidebar-name-arrow {1756 background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;1757 }1758 1759 .in-widget-title {1760 color: #606060;1761 }1762 1763 .deleting .widget-title * {1764 color: #aaa;1765 }1766 1767 .imgedit-menu div {1768 border-color: #d5d5d5;1769 background-color: #f1f1f1;1770 }1771 1772 .imgedit-menu div:hover {1773 border-color: #c1c1c1;1774 background-color: #eaeaea;1775 }1776 1777 .imgedit-menu div.disabled {1778 border-color: #ccc;1779 background-color: #ddd;1780 filter: alpha(opacity=50);1781 opacity: 0.5;1782 }1783 1784 #dashboard_recent_comments div.undo {1785 border-top-color: #dfdfdf;1786 }1787 1788 .comment-ays,1789 .comment-ays th {1790 border-color: #ddd;1791 }1792 1793 .comment-ays th {1794 background-color: #f1f1f1;1795 }1796 1797 /* added from nav-menu.css */1798 #menu-management .menu-edit {1799 border-color: #d0dfe9;1800 }1801 1802 #post-body {1803 background: #fff;1804 border-top-color: #fff;1805 border-bottom-color: #d0dfe9;1806 }1807 1808 #nav-menu-header {1809 border-bottom-color: #d0dfe9;1810 }1811 1812 #nav-menu-footer {1813 border-top-color: #fff;1814 }1815 1816 #menu-management .nav-tabs-arrow a {1817 color: #c1c1c1;1818 }1819 1820 #menu-management .nav-tabs-arrow a:hover {1821 color: #d54e21;1822 }1823 1824 #menu-management .nav-tabs-arrow a:active {1825 color: #464646;1826 }1827 1828 #menu-management .nav-tab-active {1829 border-color: #dfdfdf;1830 }1831 1832 #menu-management .nav-tab {1833 background: #f7fcfe;1834 border-color: #d0dfe9;1835 }1836 1837 .js .input-with-default-title {1838 color: #aaa;1839 }1840 1841 #cancel-save {1842 color: #f00;1843 }1844 1845 #cancel-save:hover {1846 background-color: #f00;1847 color: #fff;1848 }1849 1850 .list-container {1851 border-color: #dfdfdf;1852 }1853 1854 .menu-item-handle {1855 border-color: #d0dfe9;1856 }1857 1858 .menu li.deleting .menu-item-handle {1859 background-color: #f66;1860 text-shadow: #ccc;1861 }1862 1863 .item-type { /* Menu item controls */1864 color: #999;1865 }1866 1867 .item-controls .menu-item-delete:hover {1868 color: #f00;1869 }1870 1871 .nav-menus-php .item-edit {1872 background: transparent url(../images/arrows-vs.png) no-repeat 8px 10px;1873 border-bottom-color: #eff8ff;1874 }1875 1876 .nav-menus-php .item-edit:hover {1877 background: transparent url(../images/arrows-dark-vs.png) no-repeat 8px 10px;1878 }1879 1880 .menu-item-settings { /* Menu editing */1881 border-color: #d0dfe9;1882 }1883 1884 .link-to-original {1885 color: #777;1886 border-color: #d0dfe9;1887 }1888 1889 #cancel-save:hover {1890 color: #fff !important;1891 }1892 1893 #update-menu-item {1894 color: #fff !important;1895 }1896 1897 #update-menu-item:hover,1898 #update-menu-item:active,1899 #update-menu-item:focus {1900 color: #eaf2fa !important;1901 border-color: #13455b !important;1902 }1903 1904 .submitbox .submitcancel {1905 color: #21759b;1906 border-bottom-color: #21759b;1907 }1908 1909 .submitbox .submitcancel:hover {1910 background: #21759b;1911 color: #fff;1912 }1913 /* end added from nav-menu.css */1914 1915 .nav-tab {1916 border-color: #d1e5ee #d1e5ee #fff;1917 }1918 1919 .nav-tab:hover,1920 .nav-tab-active {1921 border-color: #acd #acd #fff;1922 }1923 1924 h2.nav-tab-wrapper, h3.nav-tab-wrapper {1925 border-bottom-color: #acd;1926 }1927 1928 #menu-management .nav-tab-active,1929 .menu-item-handle,1930 .menu-item-settings {1931 -webkit-box-shadow: inset 0 1px 0 #fff;1932 box-shadow: inset 0 1px 0 #fff;1933 }1934 1935 #menu-management .nav-tab-active {1936 background: #f7fcfe;1937 border-bottom-color: #f7fcfe;1938 }1939 1940 #upload-form label {1941 color: #777;1942 }1943 1944 /* custom header & background pages */1945 1946 /* full screen */1947 .fullscreen-overlay {1948 background: #fff;1949 }1950 1951 .wp-fullscreen-focus #wp-fullscreen-title,1952 .wp-fullscreen-focus #wp-fullscreen-container {1953 border-color: #bed1dd;1954 }1955 1956 #fullscreen-topbar {1957 border-bottom-color: #d1e5ee;1958 }1959 1960 /* Begin About Pages */1961 1962 .about-wrap h1 {1963 color: #333;1964 text-shadow: 1px 1px 1px #fff;1965 }1966 1967 .about-text {1968 color: #777;1969 }1970 1971 .wp-badge {1972 color: #fff;1973 text-shadow: 0 -1px 0 rgba(22, 57, 81, 0.3);1974 }1975 1976 .about-wrap h2 .nav-tab {1977 color: #21759b;1978 }1979 1980 .about-wrap h2 .nav-tab:hover {1981 color: #d54e21;1982 }1983 1984 .about-wrap h2 .nav-tab-active,1985 .about-wrap h2 .nav-tab-active:hover {1986 color: #333;1987 }1988 1989 .about-wrap h2 .nav-tab-active {1990 text-shadow: 1px 1px 1px #fff;1991 color: #464646;1992 }1993 1994 .about-wrap h3 {1995 color: #333;1996 text-shadow: 1px 1px 1px #fff;1997 }1998 1999 .about-wrap .feature-section h4 {2000 color: #464646;2001 }2002 2003 .about-wrap h4.wp-people-group {2004 text-shadow: 1px 1px 1px #fff;2005 }2006 2007 .about-wrap .point-releases {2008 border-bottom: 1px solid #dfdfdf;2009 }2010 2011 .about-wrap .point-releases h3 {2012 border-top: 1px solid #dfdfdf;2013 }2014 2015 .about-wrap .point-releases h3:first-child {2016 border: 0;2017 }2018 2019 .about-wrap li.wp-person img.gravatar {2020 -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );2021 box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );2022 }2023 2024 .about-wrap li.wp-person .title {2025 color: #464646;2026 text-shadow: 1px 1px 1px #fff;2027 }2028 2029 .freedoms-php .about-wrap ol li {2030 color: #999;2031 }2032 2033 .freedoms-php .about-wrap ol p {2034 color: #464646;2035 }2036 2037 /* End About Pages */2038 2039 2040 /*------------------------------------------------------------------------------2041 2.0 - Right to Left Styles2042 ------------------------------------------------------------------------------*/2043 2044 .rtl .bar {2045 border-right-color: transparent;2046 border-left-color: #99d;2047 }2048 2049 .rtl #screen-meta-links a.show-settings {2050 background-position: left 3px;2051 }2052 2053 .rtl #screen-meta-links a.show-settings.screen-meta-active {2054 background-position: left -33px;2055 }2056 2057 /* Menu */2058 .rtl #adminmenushadow,2059 .rtl #adminmenuback {2060 background-image: url(../images/menu-shadow-rtl.png);2061 background-position: top left;2062 }2063 2064 .rtl #adminmenu .wp-submenu .wp-submenu-head {2065 border-right-color: transparent;2066 border-left-color: #d1e5ee;2067 }2068 2069 .rtl #adminmenu .wp-submenu,2070 .rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu {2071 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );2072 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );2073 }2074 2075 .rtl #adminmenu .wp-has-current-submenu .wp-submenu {2076 -webkit-box-shadow: none;2077 box-shadow: none;2078 }2079 2080 /* Collapse Menu Button */2081 .rtl #collapse-button div {2082 background-position: 0 -108px;2083 }2084 2085 .rtl.folded #collapse-button div {2086 background-position: 0 -72px;2087 }2088 2089 /* Auto-folding of the admin menu for RTL */2090 @media only screen and (max-width: 900px) {2091 .rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,2092 .rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {2093 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );2094 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );2095 }2096 2097 .rtl.auto-fold #collapse-button div {2098 background-position: 0 -72px;2099 }2100 }2101 2102 /* edit image */2103 .js.rtl .meta-box-sortables .postbox:hover .handlediv {2104 background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px;2105 }2106 2107 .rtl #post-body .misc-pub-section {2108 border-right-color: transparent;2109 border-left-color: #d1e5ee;2110 }2111 2112 .js.rtl .sidebar-name-arrow {2113 background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;2114 }2115 2116 .js.rtl .sidebar-name:hover .sidebar-name-arrow {2117 background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;2118 }2119 2120 /**2121 * HiDPI Displays2122 */2123 @media print,2124 (-o-min-device-pixel-ratio: 5/4),2125 (-webkit-min-device-pixel-ratio: 1.25),2126 (min-resolution: 120dpi) {2127 2128 .curtime #timestamp {2129 background-image: url("../images/date-button-2x.gif?ver=20120916");2130 background-size: 16px auto;2131 }2132 2133 .tagchecklist span a,2134 #bulk-titles div a,2135 .tagchecklist span a:hover,2136 #bulk-titles div a:hover {2137 background-image: url("../images/xit-2x.gif?ver=20120916");2138 background-size: 20px auto;2139 }2140 2141 #screen-meta-links a.show-settings,2142 #screen-meta-links a.show-settings.screen-meta-active,2143 #adminmenu .wp-has-submenu:hover .wp-menu-toggle,2144 #adminmenu .wp-menu-open .wp-menu-toggle,2145 #collapse-button div,2146 .nav-menus-php .item-edit,2147 .js .meta-box-sortables .postbox:hover .handlediv,2148 .sidebar-name-arrow,2149 .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,2150 .rtl #adminmenu .wp-menu-open .wp-menu-toggle,2151 .js.rtl .meta-box-sortables .postbox:hover .handlediv,2152 .rtl .sidebar-name-arrow {2153 background-image: url("../images/arrows-vs-2x.png?ver=20120916");2154 background-size: 15px 123px;2155 }2156 2157 #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,2158 #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,2159 .nav-menus-php .item-edit:hover,2160 .sidebar-name:hover .sidebar-name-arrow,2161 .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,2162 .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,2163 .rtl .sidebar-name:hover .sidebar-name-arrow {2164 background-image: url("../images/arrows-dark-vs-2x.png?ver=20120916");2165 background-size: 15px 123px;2166 }2167 2168 .view-switch #view-switch-list,2169 .view-switch #view-switch-excerpt {2170 background-image: url("../images/list-2x.png?ver=20120916");2171 background-size: 80px 20px;2172 }2173 2174 .icon32.icon-post,2175 #icon-edit,2176 #icon-post,2177 .icon32.icon-dashboard,2178 #icon-index,2179 .icon32.icon-media,2180 #icon-upload,2181 .icon32.icon-links,2182 #icon-link-manager,2183 #icon-link,2184 #icon-link-category,2185 .icon32.icon-page,2186 #icon-edit-pages,2187 #icon-page,2188 .icon32.icon-comments,2189 #icon-edit-comments,2190 .icon32.icon-appearance,2191 #icon-themes,2192 .icon32.icon-plugins,2193 #icon-plugins,2194 .icon32.icon-users,2195 #icon-users,2196 #icon-profile,2197 #icon-user-edit,2198 .icon32.icon-tools,2199 #icon-tools,2200 #icon-admin,2201 .icon32.icon-settings,2202 #icon-options-general,2203 .icon32.icon-site,2204 #icon-ms-admin,2205 .icon32.icon-generic,2206 #icon-generic {2207 background-image: url(../images/icons32-vs-2x.png?ver=20121105);2208 background-size: 756px 45px;2209 }2210 2211 .icon16.icon-dashboard,2212 .menu-icon-dashboard div.wp-menu-image,2213 .icon16.icon-post,2214 .menu-icon-post div.wp-menu-image,2215 .icon16.icon-media,2216 .menu-icon-media div.wp-menu-image,2217 .icon16.icon-links,2218 .menu-icon-links div.wp-menu-image,2219 .icon16.icon-page,2220 .menu-icon-page div.wp-menu-image,2221 .icon16.icon-comments,2222 .menu-icon-comments div.wp-menu-image,2223 .icon16.icon-appearance,2224 .menu-icon-appearance div.wp-menu-image,2225 .icon16.icon-plugins,2226 .menu-icon-plugins div.wp-menu-image,2227 .icon16.icon-users,2228 .menu-icon-users div.wp-menu-image,2229 .icon16.icon-tools,2230 .menu-icon-tools div.wp-menu-image,2231 .icon16.icon-settings,2232 .menu-icon-settings div.wp-menu-image,2233 .icon16.icon-site,2234 .menu-icon-site div.wp-menu-image,2235 .icon16.icon-generic,2236 .menu-icon-generic div.wp-menu-image {2237 background-image: url('../images/menu-vs-2x.png?ver=20121105');2238 background-size: 390px 64px;2239 }2240 2241 #header-logo {2242 background-image: url('../images/wp-logo-vs-2x.png?ver=20120916');2243 background-size: 16px auto;2244 }2245 2246 /* 16px post formats */2247 .post-format-icon {2248 background-image: url(../images/post-formats32-vs.png);2249 background-size: 16px 304px;2250 }2251 2252 } -
src/wp-admin/css/colors-fresh.css
1 1 /*------------------------------------------------------------------------------ 2 2 3 This is MP6 as of r800130 3 4 4 5 Howdy! This is the CSS file that controls the 5 Gray (fresh)color style on the WordPress Dashboard.6 fresh color style on the WordPress Dashboard. 6 7 7 8 This file contains both LTR and RTL styles. 8 9 … … 20 21 1.0 - Left to Right Styles 21 22 ------------------------------------------------------------------------------*/ 22 23 24 html { 25 background: #eee; 26 } 27 28 /* Checkbooms */ 29 30 input[type=checkbox], 31 input[type=radio] { 32 background: #fff; 33 border-color: #bbb !important; 34 color: #555; 35 36 -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 37 box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1); 38 } 39 40 input[type=checkbox]:checked:before { 41 color: #1e8cbe; 42 } 43 44 input[type=radio]:checked:before { 45 background-color: #1e8cbe; 46 } 47 48 #wpbody select { 49 border-color: #bbb; 50 } 51 52 .wp-core-ui input[type="reset"]:hover, 53 .wp-core-ui input[type="reset"]:active { 54 color: #2ea2cc; 55 } 56 57 58 /* Helper classes for pulling MP6 colors */ 59 60 .mp6-primary { 61 color: #fff; 62 background-color: #333; 63 } 64 .mp6-text-primary { 65 color: #333; 66 } 67 68 .mp6-highlight { 69 color: white; 70 background-color: #1e8cbe; 71 } 72 .mp6-text-highlight { 73 color: #1e8cbe; 74 } 75 76 .mp6-notification { 77 color: #fff; 78 background-color: #D54E21; 79 } 80 .mp6-text-notification { 81 color: #D54E21; 82 } 83 84 .mp6-text-icon { 85 color: #999; 86 } 87 88 89 #adminmenu .wp-has-current-submenu .wp-submenu, 90 .no-js li.wp-has-current-submenu:hover .wp-submenu, 91 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 92 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, 93 #adminmenu .wp-has-current-submenu.opensub .wp-submenu { 94 background-color: #333; 95 } 96 97 #adminmenu .wp-has-current-submenu .wp-submenu a, 98 .no-js li.wp-has-current-submenu:hover .wp-submenu a, 99 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, 100 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open a, 101 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { 102 color: #bbb; 103 } 104 105 #adminmenu .wp-submenu a:hover, 106 #adminmenu .wp-submenu a:focus, 107 #adminmenu .wp-has-current-submenu .wp-submenu a:hover, 108 #adminmenu .wp-has-current-submenu .wp-submenu a:focus, 109 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, 110 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open a:hover, 111 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open a:focus, 112 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover, 113 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, 114 .no-js li.wp-has-current-submenu:hover .wp-submenu a:hover, 115 .no-js li.wp-has-current-submenu:hover .wp-submenu a:focus, 116 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, 117 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, 118 .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, 119 .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus { 120 background: none; 121 color: #2ea2cc; 122 } 123 124 ul#adminmenu a.wp-has-current-submenu:after, 125 ul#adminmenu > li.current > a.current:after { 126 border-right-color: #eee; 127 } 128 129 #dashboard_right_now .t, 130 #dashboard_right_now .b { 131 color: #777; 132 } 133 134 #the-comment-list .comment-item p.row-actions, 135 #dashboard_recent_comments .subsubsub, 136 .plugins .row-actions-visible, 137 .row-actions { 138 color: #ddd; 139 } 140 23 141 .find-box-search, 24 142 .find-box-buttons { 25 143 background-color: #f7f7f7; 26 border-top: 1px solid #d dd;144 border-top: 1px solid #dfdfdf; 27 145 } 28 146 29 147 .find-box { … … 46 164 #wpbody, 47 165 .form-table .pre, 48 166 .ui-autocomplete li a { 49 color: # 333;167 color: #555; 50 168 } 51 169 52 170 body > #upload-menu { … … 84 202 } 85 203 86 204 table.widefat { 87 border-color: # dfdfdf;88 background-color: #f 9f9f9;205 border-color: #fff; 206 background-color: #fff; 89 207 } 90 208 209 th .comment-grey-bubble:before { 210 color: #444; 211 } 212 213 .sorting-indicator:before { 214 color: #444; 215 } 216 91 217 div.dashboard-widget-error { 92 218 background-color: #c43; 93 219 } … … 109 235 ul.add-menu-item-tabs li.tabs, 110 236 .wp-tab-active { 111 237 border-color: #dfdfdf; 112 background-color: #f ff;238 background-color: #fdfdfd; 113 239 } 114 240 115 241 ul.category-tabs li.tabs { … … 119 245 ul.category-tabs li.tabs, 120 246 ul.add-menu-item-tabs li.tabs, 121 247 .wp-tab-active { 122 background-color: #f ff;248 background-color: #fdfdfd; 123 249 } 124 250 125 251 kbd, 126 252 code { 127 253 background: #eaeaea; 254 background: rgba(0,0,0,0.07); 128 255 } 129 256 130 257 textarea, 131 258 input[type="text"], 132 259 input[type="password"], 133 input[type="file"],134 260 input[type="email"], 135 261 input[type="number"], 136 262 input[type="search"], 137 263 input[type="tel"], 138 264 input[type="url"], 265 .titlewrap input { 266 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 267 } 268 269 textarea, 270 input[type="text"], 271 input[type="password"], 272 input[type="email"], 273 input[type="number"], 274 input[type="search"], 275 input[type="tel"], 276 input[type="url"], 277 .titlewrap input, 139 278 select { 140 border-color: #d fdfdf;279 border-color: #dedede; 141 280 } 142 281 282 .inside textarea, 283 .inside input[type="text"], 284 .inside input[type="password"], 285 .inside input[type="email"], 286 .inside input[type="number"], 287 .inside input[type="search"], 288 .inside input[type="tel"], 289 .inside input[type="url"] { 290 border-color: #ddd; 291 } 292 143 293 textarea:focus, 144 294 input[type="text"]:focus, 145 295 input[type="password"]:focus, 146 input[type="file"]:focus,147 296 input[type="email"]:focus, 148 297 input[type="number"]:focus, 149 298 input[type="search"]:focus, … … 153 302 border-color: #aaa; 154 303 } 155 304 305 input:disabled, 156 306 input.disabled, 307 textarea:disabled, 157 308 textarea.disabled { 158 background-color: #ccc; 309 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 310 box-shadow: inset 0 1px 2px rgba(0,0,0,0.04); 311 border-color: rgba(222, 222, 222, .75); 312 background: rgba(255, 255, 255, .5); 313 color: rgba(51, 51, 51, .5); 159 314 } 160 315 161 316 #plugin-information .action-button a, … … 164 319 color: #fff; 165 320 } 166 321 167 .revisions-meta, 322 /* 168 323 .widget .widget-top, 169 324 .postbox h3, 170 325 .stuffbox h3, 171 .widefat thead tr th, 172 .widefat tfoot tr th, 326 .control-section .accordion-section-title, 173 327 h3.dashboard-widget-title, 174 328 h3.dashboard-widget-title span, 175 329 h3.dashboard-widget-title small, 176 330 .sidebar-name, 177 331 #nav-menu-header, 178 332 #nav-menu-footer, 179 .menu-item-handle { 180 background: #f1f1f1; 181 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 182 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); 183 background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9); 184 background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9); 185 background-image: linear-gradient(to top, #ececec, #f9f9f9); 333 .menu-item-handle, 334 .checkbox, 335 .side-info, 336 .widefat thead th, 337 .widefat tfoot th { 338 background: #fcfcfc; 339 border-top: none; 340 border-bottom: 1px solid #e1e1e1; 186 341 } 342 */ 187 343 344 .accordion-section-content { 345 border-left: none; 346 border-right: none; 347 } 188 348 349 /* 350 .js .control-section:hover .accordion-section-title, 351 .js .control-section .accordion-section-title:hover, 352 .js .control-section.open .accordion-section-title, 353 .js .control-section .accordion-section-title:focus { 354 background: #0074a2; 355 border-color: #0074a2 !important; 356 } 357 */ 189 358 190 .widget .widget-top, 191 .postbox h3, 192 .stuffbox h3 { 193 border-bottom-color: #dfdfdf; 194 text-shadow: #fff 0 1px 0; 195 -webkit-box-shadow: 0 1px 0 #fff; 196 box-shadow: 0 1px 0 #fff; 359 .widefat tfoot th { 360 border-bottom: none; 361 border-top: 1px solid #e1e1e1; 197 362 } 198 363 364 .widefat thead th { 365 border-bottom: 1px solid #e1e1e1; 366 } 367 199 368 .form-table th, 200 369 .form-wrap label { 201 370 color: #222; 202 text-shadow: #fff 0 1px 0;203 371 } 204 372 373 .form-table th { 374 border-bottom: 1px solid #dfdfdf; 375 } 376 377 .form-table td { 378 border-bottom: 1px solid #dfdfdf; 379 } 380 .form-table.editcomment td { 381 border-bottom: none; 382 } 383 205 384 .description, 206 385 .form-wrap p { 207 386 color: #666; 208 387 } 209 388 210 389 strong .post-com-count span { 211 background-color: # 21759b;390 background-color: #0074a2; 212 391 } 213 392 393 .post-com-count:after { /* draw bubble connector using CSS! */ 394 border-top: 5px solid #bbbbbb; 395 border-right: 5px solid transparent; 396 } 397 398 strong .post-com-count:after { 399 border-top: 5px solid #0076a0; 400 } 401 402 .post-com-count:hover:after { 403 border-top: 5px solid #2ea2cc; 404 } 405 214 406 .sorthelper { 215 407 background-color: #ccf3fa; 216 408 } … … 221 413 } 222 414 223 415 .wrap h2 { 224 color: # 464646;416 color: #000; 225 417 } 226 418 227 419 .wrap .add-new-h2, 228 .wrap .add-new-h2:active { 229 background: #f1f1f1; 420 .wrap .add-new-h2:active, 421 #add-new-comment a { 422 background: #e0e0e0; 230 423 } 231 424 425 .wrap .add-new-h2:hover, 426 #add-new-comment a:hover { 427 background: #2ea2cc; 428 color: #fff; 429 } 430 232 431 .subtitle { 233 432 color: #777; 234 433 } … … 248 447 249 448 .alternate, 250 449 .alt { 251 background-color: #f cfcfc;450 background-color: #f9f9f9; 252 451 } 253 452 254 453 .available-theme a.screenshot { 255 background-color: #f 1f1f1;256 border-color: # ddd;454 background-color: #fff; 455 border-color: #ccc; 257 456 } 258 457 259 458 #current-theme { … … 265 464 border-right-color: #99d; 266 465 } 267 466 268 #media-upload,269 #media-upload .media-item .slidetoggle {270 background: #fff;271 }272 273 #media-upload .slidetoggle {274 border-top-color: #dfdfdf;275 }276 277 div.error,278 .login #login_error {279 background-color: #ffebe8;280 border-color: #c00;281 }282 283 div.error a {284 color: #c00;285 }286 287 467 .form-invalid { 288 468 background-color: #ffebe8 !important; 289 469 } … … 295 475 296 476 .submit, 297 477 #commentsdiv #add-new-comment { 298 border -color: #dfdfdf;478 border: none; 299 479 } 300 480 301 481 .highlight { … … 335 515 } 336 516 337 517 .post-com-count:hover span { 338 background-color: # d54e21;518 background-color: #2ea2cc; 339 519 } 340 520 341 521 .quicktags, .search { … … 353 533 354 534 a:hover, 355 535 a:active { 356 color: # d54e21;536 color: #2ea2cc; 357 537 } 358 538 359 539 a:focus { … … 363 543 #adminmenu a:hover, 364 544 #adminmenu li.menu-top > a:focus, 365 545 #adminmenu .wp-submenu a:hover, 366 #the-comment-list .comment a:hover,367 546 #rightnow a:hover, 368 547 #media-upload a.del-link:hover, 369 548 div.dashboard-widget-submit input:hover, 370 549 .subsubsub a:hover, 371 550 .subsubsub a.current:hover, 372 .ui-tabs-nav a:hover, 373 .plugins .inactive a:hover, 374 #all-plugins-table .plugins .inactive a:hover, 375 #search-plugins-table .plugins .inactive a:hover { 376 color: #d54e21; 551 .ui-tabs-nav a:hover { 552 color: #2ea2cc; 377 553 } 378 554 379 555 #the-comment-list .comment-item, 380 556 #dashboard-widgets #dashboard_quick_press form p.submit { 381 border -color: #dfdfdf;557 border: none; 382 558 } 383 559 384 560 #side-sortables .category-tabs .tabs a, … … 392 568 color: #264761; 393 569 } 394 570 395 #dashboard_right_now .table_content, 396 #dashboard_right_now .table_discussion { 397 border-top-color: #ececec; 571 p.submit { 572 border-top-color: #dfdfdf; 398 573 } 399 574 400 575 .submitbox .submit { … … 402 577 color: #ccc; 403 578 } 404 579 580 table.widefat span.delete a, 581 table.widefat span.trash a, 582 table.widefat span.spam a, 583 #dashboard_recent_comments .delete a, 584 #dashboard_recent_comments .trash a, 585 #dashboard_recent_comments .spam a, 586 .plugins a.delete, 587 #all-plugins-table .plugins a.delete, 588 #search-plugins-table .plugins a.delete, 589 .submitbox .submitdelete, 590 #media-items a.delete, 591 #media-items a.delete-permanently, 592 #nav-menu-footer .menu-delete { 593 color: #a00; 594 } 595 596 table.widefat span.delete a:hover, 597 table.widefat span.trash a:hover, 598 table.widefat span.spam a:hover, 599 #dashboard_recent_comments .delete a:hover, 600 #dashboard_recent_comments .trash a:hover, 601 #dashboard_recent_comments .spam a:hover, 405 602 .plugins a.delete:hover, 406 603 #all-plugins-table .plugins a.delete:hover, 407 604 #search-plugins-table .plugins a.delete:hover, 408 .submitbox .submitdelete {409 color: #f00;410 border-bottom-color: #f00;411 }412 413 605 .submitbox .submitdelete:hover, 414 606 #media-items a.delete:hover, 415 607 #media-items a.delete-permanently:hover, 416 608 #nav-menu-footer .menu-delete:hover { 417 color: #fff; 418 background-color: #f00; 419 border-bottom-color: #f00; 609 color: #f00; 420 610 } 421 611 422 612 #normal-sortables .submitbox .submitdelete:hover { … … 432 622 .tablenav .next, 433 623 .tablenav .prev { 434 624 border-color: transparent; 435 color: # 21759b;625 color: #0074a2; 436 626 } 437 627 438 628 .tablenav .next:hover, 439 629 .tablenav .prev:hover { 440 630 border-color: transparent; 441 color: # d54e21;631 color: #2ea2cc; 442 632 } 443 633 444 634 div.updated, 445 .login .message { 446 background-color: #ffffe0; 447 border-color: #e6db55; 635 .login .message, 636 .press-this #message { 637 background-color: #fff; 638 border-left: 4px solid #7ad03a; 639 640 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 641 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 448 642 } 449 643 644 #update-nag, 645 .update-nag { 646 background-color: #fff; 647 border-left: 4px solid #ffba00; 648 649 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 650 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 651 } 652 653 div.error, 654 .login #login_error { 655 background: #fff; 656 border-left: 4px solid #dd3d36; 657 658 -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 659 box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1); 660 } 661 450 662 .update-message { 451 663 color: #000; 452 664 } … … 461 673 462 674 .widefat td, 463 675 .widefat th { 464 border-top-color: #fff; 465 border-bottom-color: #dfdfdf; 676 color: #555; 466 677 } 467 678 468 .widefat th {469 text-shadow: rgba(255,255,255,0.8) 0 1px 0;470 }471 472 .widefat td {473 color: #555;474 }475 679 .widefat p, 476 680 .widefat ol, 477 681 .widefat ul { … … 486 690 color: #333; 487 691 } 488 692 693 th.manage-column a, 489 694 th.sortable a:hover, 490 695 th.sortable a:active, 491 696 th.sortable a:focus { … … 494 699 495 700 th.sortable a:focus { 496 701 background: #e1e1e1; 497 background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9));498 background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9);499 background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9);500 background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9);501 background-image: linear-gradient(to top, #dcdcdc, #e9e9e9);502 702 } 503 703 504 704 h3.dashboard-widget-title small a { … … 510 710 } 511 711 512 712 a, 513 #adminmenu a,514 713 #the-comment-list p.comment-author strong a, 515 714 #media-upload a.del-link, 516 715 #media-items a.delete, 517 716 #media-items a.delete-permanently, 518 717 .plugins a.delete, 519 .ui-tabs-nav a { 520 color: #21759b; 718 .ui-tabs-nav a, 719 .plugins .inactive a { 720 color: #0074a2; 721 -webkit-transition-property: border, background, color; 722 -moz-transition-property: border, background, color; 723 transition-property: border, background, color; 724 -webkit-transition-duration: .05s; 725 -moz-transition-duration: .05s; 726 transition-duration: .05s; 727 -webkit-transition-timing-function: ease-in-out; 728 -moz-transition-timing-function: ease-in-out; 729 transition-timing-function: ease-in-out; 521 730 } 522 731 732 .wp-list-table a, 733 .media-router a { 734 -moz-transition: none; 735 -webkit-transition: none; 736 transition: none; 737 } 738 739 #adminmenu a { 740 color: #eee; 741 -webkit-transition: all .1s ease-in-out; 742 -moz-transition: all .1s ease-in-out; 743 transition: all .1s ease-in-out; 744 } 745 523 746 #adminmenu .awaiting-mod, 524 747 #adminmenu .update-plugins, 525 748 #sidemenu a .update-plugins, 526 749 #rightnow .reallynow { 527 background-color: # 464646;750 background-color: #d54e21; 528 751 color: #fff; 529 -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;530 box-shadow: rgba(255,255,255,0.5) 0 1px 0;531 752 } 532 753 #plugin-information .action-button { 533 background-color: # d54e21;754 background-color: #2ea2cc; 534 755 color: #fff; 535 756 } 536 757 537 758 #adminmenu li.current a .awaiting-mod, 538 #adminmenu li a.wp-has-current-submenu .update-plugins {539 background-color: # 464646;759 #adminmenu li a.wp-has-current-submenu .update-plugins { 760 background-color: #2ea2cc; 540 761 color: #fff; 541 -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;542 box-shadow: rgba(255,255,255,0.5) 0 1px 0;543 762 } 544 763 545 764 div#media-upload-header, … … 571 790 color: #777; 572 791 } 573 792 574 .login #nav a, 575 .login #backtoblog a { 576 color: #21759b !important; 793 .plugins .inactive a:hover { 794 color: #2ea2cc; 577 795 } 578 796 579 .login #nav a:hover,580 .login #backtoblog a:hover {581 color: #d54e21 !important;582 }583 584 797 #wpfooter { 585 798 color: #777; 586 border-color: #dfdfdf;799 border-color: transparent; 587 800 } 588 801 589 802 .imgedit-group, … … 592 805 border-color: #dfdfdf; 593 806 } 594 807 595 .checkbox, 596 .side-info, 597 .plugins tr, 598 #your-profile #rich_editing { 599 background-color: #fcfcfc; 808 .plugins .plugin-description p, 809 .plugins .plugin-version-author-uri { 810 color: #333; 600 811 } 601 812 602 .plugins .inactive, 603 .plugins .inactive th, 604 .plugins .inactive td, 605 tr.inactive + tr.plugin-update-tr .plugin-update { 606 background-color: #f4f4f4; 813 .plugins .inactive .plugin-title strong { 814 color: #333; 607 815 } 608 816 817 .plugin-update-tr .plugin-update { 818 border: none; 819 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 820 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 821 } 822 609 823 .plugin-update-tr .update-message { 610 background-color: #f ffbe4;611 b order-color: #dfdfdf;824 background-color: #f7f7f7; 825 background-color: rgba(0,0,0,0.03); 612 826 } 613 827 614 .plugins .active, 615 .plugins .active th, 616 .plugins .active td { 828 tr.active.update + tr.plugin-update-tr .plugin-update .update-message { 829 background-color: #fcf3ef; 830 } 831 832 .plugin-update-tr .update-message:before { 833 color: #d54e21; 834 } 835 836 .plugins, 837 .plugins th, 838 .plugins td { 617 839 color: #000; 618 840 } 619 841 … … 621 843 color: #579; 622 844 } 623 845 846 .plugins tr { 847 background: #fff; 848 } 849 850 .plugins .inactive td, 851 .plugins .inactive th, 852 .plugins .active td, 853 .plugins .active th, 854 .plugin-install #the-list td { 855 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 856 box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); 857 } 858 859 .plugins .update td, 860 .plugins .update th { 861 -webkit-box-shadow: none; 862 box-shadow: none; 863 } 864 865 .plugins .active td, 866 .plugins .active th, 867 tr.active + tr.plugin-update-tr .plugin-update { 868 background-color: #f7fcfe; 869 } 870 871 .plugins .active.update td, 872 .plugins .active.update th, 873 tr.active.update + tr.plugin-update-tr .plugin-update { 874 background-color: #fefaf7; 875 } 876 877 .plugins tr.active.plugin-update-tr + tr.inactive th, 878 .plugins tr.active.plugin-update-tr + tr.inactive td, 879 .plugins tr.active + tr.inactive th, 880 .plugins tr.active + tr.inactive td { 881 border-top: 1px solid rgba(0,0,0,0.03); 882 883 -webkit-box-shadow: inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 884 box-shadow: inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1; 885 } 886 887 .plugins tr.active + tr.inactive.update th, 888 .plugins tr.active + tr.inactive.update td { 889 -webkit-box-shadow: none; 890 box-shadow: none; 891 } 892 893 .plugins .active th.check-column { 894 border-left: 4px solid #2ea2cc; 895 } 896 897 .plugins .active.update th.check-column, 898 .plugins .active.update + .plugin-update-tr .plugin-update { 899 border-left: 4px solid #d54e21; 900 } 901 902 .post-state-format:before, 903 .post-format-icon:before { 904 color: #ddd; 905 -webkit-transition: all .1s ease-in-out; 906 -moz-transition: all .1s ease-in-out; 907 transition: all .1s ease-in-out; 908 } 909 910 input[type="radio"]:checked+label:before { 911 color: #888888; 912 } 913 914 a.post-state-format:hover:before, 915 a.post-format-icon:hover:before { 916 color: #2ea2cc; 917 } 918 919 #the-list tr:last-child td, 920 #the-list tr:last-child th { 921 border-bottom: none !important; 922 -webkit-box-shadow: none; 923 box-shadow: none; 924 } 925 624 926 #the-comment-list tr.undo, 625 927 #the-comment-list div.undo { 626 928 background-color: #f4f4f4; 627 929 } 628 930 629 #the-comment-list .unapproved { 630 background-color: #ffffe0; 931 #the-comment-list .unapproved th, 932 #the-comment-list .unapproved td, 933 #dashboard_recent_comments #the-comment-list .unapproved { 934 background-color: #fefaf7; 631 935 } 632 936 937 #the-comment-list .unapproved th.check-column, 938 #dashboard_recent_comments #the-comment-list .unapproved { 939 border-left: 4px solid #d54e21; 940 } 941 942 #dashboard_recent_comments #the-comment-list .unapproved .avatar { 943 margin-left: -4px; 944 } 945 633 946 #the-comment-list .approve a { 634 947 color: #006505; 635 948 } … … 638 951 color: #d98500; 639 952 } 640 953 641 table.widefat span.delete a, 642 table.widefat span.trash a, 643 table.widefat span.spam a, 644 #dashboard_recent_comments .delete a, 645 #dashboard_recent_comments .trash a, 646 #dashboard_recent_comments .spam a { 647 color: #bc0b0b; 954 #the-comment-list th, 955 #the-comment-list td { 956 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 957 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); 648 958 } 649 959 650 .welcome-panel { 651 background: #f5f5f5; 652 background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#fafafa)); 653 background-image: -webkit-linear-gradient(bottom, #f5f5f5, #fafafa); 654 background-image: -moz-linear-gradient(bottom, #f5f5f5, #fafafa); 655 background-image: -o-linear-gradient(bottom, #f5f5f5, #fafafa); 656 background-image: linear-gradient(to top, #f5f5f5, #fafafa); 657 border-color: #dfdfdf; 960 #the-comment-list tr:last-child th, 961 #the-comment-list tr:last-child td { 962 -webkit-box-shadow: none; 963 box-shadow: none; 658 964 } 965 966 #the-comment-list tr.unapproved + tr.approved th, 967 #the-comment-list tr.unapproved + tr.approved td { 968 border-top: 1px solid rgba(0, 0, 0, 0.03); 969 } 970 971 .comments #the-comment-list .alt { 972 background-color: transparent; 973 } 974 659 975 .welcome-panel p { 660 976 color: #777; 661 977 } 978 979 .welcome-panel a { 980 text-decoration: none; 981 } 982 662 983 .welcome-panel-column p { 663 984 color: #464646; 664 985 } 665 .welcome-panel h3 { 666 text-shadow: 1px 1px 1px #fff; 986 987 .welcome-panel .welcome-icon:before { 988 color: #888; 667 989 } 668 990 669 991 .widget, 670 #widget-list .widget-top, 992 #available-widgets .widget-top, 993 .menu-item-settings, 671 994 .postbox, 672 #titlediv, 673 #poststuff .postarea, 674 .stuffbox { 675 border-color: #dfdfdf; 676 -webkit-box-shadow: inset 0 1px 0 #fff; 677 box-shadow: inset 0 1px 0 #fff; 678 -webkit-border-radius: 3px; 679 border-radius: 3px; 995 #menu-settings-column .accordion-container, 996 #menu-management .menu-edit, 997 .manage-menus, 998 table.widefat, 999 .stuffbox, 1000 p.popular-tags, 1001 .widgets-holder-wrap, 1002 .welcome-panel, 1003 .wp-editor-container, 1004 #post-status-info, 1005 .popular-tags, 1006 .feature-filter { 1007 border: 1px solid #dedede; 1008 -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 1009 box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 680 1010 } 681 1011 682 .widget, 683 #widget-list .widget-top, 1012 .wp-editor-container { 1013 border-bottom: none; 1014 } 1015 1016 #available-widgets .widget, 1017 .widget.ui-sortable-helper { 1018 -webkit-box-shadow: none; 1019 box-shadow: none; 1020 } 1021 1022 .postbox table.widefat { 1023 -webkit-box-shadow: none; 1024 box-shadow: none; 1025 } 1026 1027 .welcome-panel, 684 1028 .postbox, 685 .menu-item-settings { 686 background: #f5f5f5; 687 background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f9f9f9)); 688 background-image: -webkit-linear-gradient(bottom, #f5f5f5, #f9f9f9); 689 background-image: -moz-linear-gradient(bottom, #f5f5f5, #f9f9f9); 690 background-image: -o-linear-gradient(bottom, #f5f5f5, #f9f9f9); 691 background-image: linear-gradient(to top, #f5f5f5, #f9f9f9); 1029 table.widefat, 1030 .wp-editor-container, 1031 .stuffbox, 1032 p.popular-tags, 1033 .widgets-holder-wrap, 1034 .popular-tags, 1035 .feature-filter { 1036 background: #fff; 692 1037 } 693 1038 694 .postbox h3 { 695 color: #464646; 1039 .postbox h3, 1040 #namediv h3, 1041 #submitdiv h3, 1042 #dashboard_recent_comments .comment { 1043 color: #555; 1044 border-bottom: 1px solid #eeeeee; 696 1045 } 697 1046 698 .widget .widget-top { 699 color: #222; 1047 .widget .widget-top, 1048 .menu-item-handle { 1049 background: #e9e9e9; 1050 color: #333; 700 1051 } 701 1052 702 1053 .js .sidebar-name:hover h3, … … 704 1055 color: #000; 705 1056 } 706 1057 707 .curtime #timestamp { 708 background-image: url(../images/date-button.gif); 1058 #misc-publishing-actions label[for="post_status"]:before, 1059 #post-body #visibility:before, 1060 .curtime #timestamp:before, 1061 #post-body .misc-pub-revisions:before, 1062 span.wp-media-buttons-icon:before { 1063 color: #888; 709 1064 } 710 1065 711 1066 #rightnow .youhave { … … 716 1071 color: #448abd; 717 1072 } 718 1073 719 .tagchecklist span a, 720 #bulk-titles div a { 721 background: url(../images/xit.gif) no-repeat; 1074 #welcome-panel.welcome-panel .welcome-panel-close::before, 1075 .tagchecklist span a:before, 1076 #bulk-titles div a:before, 1077 .wp-pointer-buttons a.close:before { 1078 background: none; 1079 color: #bbb; 722 1080 } 723 1081 724 .tagchecklist span a:hover, 725 #bulk-titles div a:hover { 726 background: url(../images/xit.gif) no-repeat -10px 0; 1082 #welcome-panel.welcome-panel .welcome-panel-close:hover:before, 1083 .tagchecklist span a:hover:before, 1084 #bulk-titles div a:hover:before, 1085 .wp-pointer-buttons a.close:hover:before { 1086 color: #c00; 727 1087 } 728 1088 729 #update-nag, .update-nag {730 background-color: #fffbcc;731 border-color: #e6db55;732 color: #555;733 }734 735 1089 #screen-meta { 736 background-color: #f1f1f1; 737 border-color: #ccc; 738 -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 ); 739 box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 ); 1090 background-color: #fff; 1091 border: 1px solid #dedede; 1092 border-top: none; 1093 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025); 1094 box-shadow: 0 1px 0 rgba(0,0,0,.025); 740 1095 } 741 1096 742 1097 #contextual-help-back { 743 background: #f ff;1098 background: #f6fbfd; 744 1099 } 745 1100 746 1101 .contextual-help-tabs a:hover { … … 748 1103 } 749 1104 750 1105 #contextual-help-back, 1106 .contextual-help-tabs .active a { 1107 border-color: #e1e1e1; 1108 } 1109 751 1110 .contextual-help-tabs .active { 752 border-color: #ccc; 1111 border-color: #2ea2cc; 1112 1113 -webkit-box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1114 box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 753 1115 } 754 1116 755 1117 .contextual-help-tabs .active, 756 1118 .contextual-help-tabs .active a, 757 1119 .contextual-help-tabs .active a:hover { 758 background: #f ff;1120 background: #f6fbfd; 759 1121 color: #333; 760 1122 } 761 1123 762 1124 /* screen options and help tabs */ 763 1125 #screen-options-link-wrap, 764 1126 #contextual-help-link-wrap { 765 border-right: 1px solid #ccc; 766 border-left: 1px solid #ccc; 767 border-bottom: 1px solid #ccc; 768 background: #e3e3e3; 769 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); 770 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); 771 background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); 772 background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); 773 background-image: linear-gradient(to top, #dfdfdf, #f1f1f1); 1127 border: 1px solid #dedede; 1128 border-top: none; 1129 background: #fff; 1130 -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 1131 box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 774 1132 } 775 1133 776 1134 #screen-meta-links a { 777 1135 color: #777; 778 background: transparent url(../images/arrows.png) no-repeat right 4px;779 1136 } 780 1137 1138 #screen-meta-links a:after { 1139 color: #bbb; 1140 } 1141 781 1142 #screen-meta-links a:hover, 782 1143 #screen-meta-links a:active { 783 1144 color: #333; 784 background-color: transparent;785 1145 } 786 1146 787 #screen-meta-links a.screen-meta-active { 788 background-position: right -31px; 1147 #screen-meta-links a:focus { 1148 border-color: #aaa; 1149 color: #333; 1150 -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15); 1151 box-shadow: 0 2px 3px rgba(0,0,0,0.15); 789 1152 } 790 791 1153 /* end screen options and help tabs */ 792 1154 793 .login #backtoblog a {794 color: #464646;795 }796 797 1155 #wphead { 798 border-bottom : #dfdfdf 1px solid;1156 border-bottom-color: #dfdfdf; 799 1157 } 800 1158 801 1159 #wphead h1 a { 802 1160 color: #464646; 803 1161 } 804 1162 805 #wpfooter a:link,806 #wpfooter a:visited {807 text-decoration: none;808 }809 810 #wpfooter a:hover {811 text-decoration: underline;812 }813 814 1163 .file-error, 815 1164 abbr.required, 816 1165 .widget-control-remove:hover, … … 849 1198 } 850 1199 851 1200 #post-status-info { 852 border-color: #dfdfdf #ccc #ccc; 853 background-color: #eaeaea; 1201 background-color: #f7f7f7; 854 1202 } 855 1203 856 .editwidget .widget-inside { 857 border-color: #dfdfdf; 1204 .widget-inside, 1205 .menu-item-settings { 1206 background: #eee; 858 1207 } 859 1208 860 1209 #titlediv #title { … … 873 1222 /* menu */ 874 1223 #adminmenuback, 875 1224 #adminmenuwrap { 876 background-color: #ececec; 877 border-color: #ccc; 1225 background-color: #222; 878 1226 } 879 1227 880 #adminmenushadow,881 #adminmenuback {882 background-image: url(../images/menu-shadow.png);883 background-position: top right;884 background-repeat: repeat-y;885 }886 887 1228 #adminmenu li.wp-menu-separator { 888 background: #dfdfdf;889 border-color: #cfcfcf;1229 background: transparent; 1230 border-color: transparent; 890 1231 } 891 1232 892 1233 #adminmenu div.separator { 893 border-color: #e1e1e1;1234 border-color: transparent; 894 1235 } 895 1236 896 #adminmenu a.menu-top,897 #adminmenu .wp-submenu .wp-submenu-head {898 border-top-color: #f9f9f9;899 border-bottom-color: #dfdfdf;900 }901 902 1237 #adminmenu li.wp-menu-open { 903 1238 border-color: #dfdfdf; 904 1239 } 905 1240 1241 #adminmenu li.menu-top, 1242 #adminmenu li.opensub > a.menu-top, 1243 #adminmenu li > a.menu-top { 1244 -webkit-transition: all .1s ease-in-out; 1245 -moz-transition: all .1s ease-in-out; 1246 transition: all .1s ease-in-out; 1247 } 1248 906 1249 #adminmenu li.menu-top:hover, 907 1250 #adminmenu li.opensub > a.menu-top, 908 1251 #adminmenu li > a.menu-top:focus { 909 background-color: #e4e4e4; 910 color: #d54e21; 911 text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 ); 1252 background-color: #111; 1253 color: #2ea2cc; 912 1254 } 913 1255 914 /* So it doesn't get applied to the number spans (comments, updates, etc) */ 915 #adminmenu li.menu-top:hover > a span, 916 #adminmenu li.menu-top > a:focus span { 917 text-shadow: none; 1256 /* flyout menu arrow */ 1257 #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after { 1258 border-right-color: #333; 918 1259 } 919 1260 920 1261 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, … … 922 1263 .folded #adminmenu li.wp-has-current-submenu, 923 1264 .folded #adminmenu li.current.menu-top, 924 1265 #adminmenu .wp-menu-arrow, 925 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { 926 background: #777; 927 background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); 928 background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); 929 background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); 930 background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); 931 background-image: linear-gradient(to top, #6d6d6d, #808080); 932 } 933 1266 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, 934 1267 #adminmenu .wp-menu-arrow div { 935 background: #777; 936 background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080)); 937 background-image: -webkit-linear-gradient(bottom right, #6d6d6d, #808080); 938 background-image: -moz-linear-gradient(bottom right, #6d6d6d, #808080); 939 background-image: -o-linear-gradient(bottom right, #6d6d6d, #808080); 940 background-image: linear-gradient(to top left, #6d6d6d, #808080); 1268 background: #0074a2; 941 1269 } 942 1270 943 1271 #adminmenu li.wp-not-current-submenu .wp-menu-arrow { 944 1272 border-top-color: #f9f9f9; 945 1273 border-bottom-color: #dfdfdf; 946 background: #e4e4e4;1274 background: transparent; 947 1275 } 948 1276 949 1277 #adminmenu li.wp-not-current-submenu .wp-menu-arrow div { 950 background: # e4e4e4;951 border-color: # ccc;1278 background: #111; 1279 border-color: #111; 952 1280 } 953 1281 954 .folded #adminmenu li.menu-top li:hover a {955 background-image: none;956 }957 958 1282 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, 959 1283 #adminmenu li.current a.menu-top, 960 1284 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { 961 text-shadow: 0 -1px 0 #333;962 1285 color: #fff; 963 border-top-color: #808080;964 border-bottom-color: #6d6d6d;965 1286 } 966 1287 967 1288 .folded #adminmenu li.wp-has-current-submenu, 968 1289 .folded #adminmenu li.current.menu-top { 969 border-top-color: #808080; 970 border-bottom-color: #6d6d6d; 1290 border-color: #666; /* Match the background color of the current menu item for a flat appearance */ 971 1291 } 972 1292 973 #adminmenu .wp-submenu a:hover,974 #adminmenu .wp-submenu a:focus {975 background-color: #eaf2fa;976 color: #333;977 }978 979 1293 #adminmenu .wp-submenu li.current, 980 1294 #adminmenu .wp-submenu li.current a, 981 #adminmenu .wp-submenu li.current a:hover { 982 color: #333; 1295 #adminmenu .opensub .wp-submenu li.current a, 1296 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, 1297 #adminmenu .wp-submenu li.current a:hover, 1298 #adminmenu .wp-submenu li.current a:focus { 1299 color: #fff; 1300 background: transparent; 983 1301 } 984 1302 985 1303 #adminmenu .wp-submenu, 986 1304 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 987 1305 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 988 background-color: # fff;989 border-color: #dfdfdf; 990 -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);991 box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);1306 background-color: #333; 1307 1308 -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2); 1309 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 992 1310 } 993 1311 1312 #adminmenu .wp-submenu a, 1313 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, 1314 .folded #adminmenu .wp-has-current-submenu .wp-submenu a { 1315 color: #bbb; 1316 } 1317 994 1318 #adminmenu .wp-submenu .wp-submenu-head { 995 background-color: #e4e4e4; 996 color: #333; 1319 color: #fff; 997 1320 } 998 1321 999 1322 /* collapse menu button */ 1000 1323 #collapse-menu { 1001 1324 color: #aaa; 1002 border-top-color: #f9f9f9; 1325 -webkit-transition: all .1s ease-in-out; 1326 -moz-transition: all .1s ease-in-out; 1327 transition: all .1s ease-in-out; 1003 1328 } 1004 1329 1005 1330 #collapse-menu:hover { 1006 color: # 999;1331 color: #2ea2cc; 1007 1332 } 1008 1333 1009 #collapse-button { 1010 border-color: #ccc; 1011 background: #f4f4f4; 1012 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); 1013 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); 1014 background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); 1015 background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); 1016 background-image: linear-gradient(to top, #dfdfdf, #fff); 1334 #collapse-button div:after { 1335 color: #aaa; 1017 1336 } 1018 1337 1019 #collapse-menu:hover #collapse-button {1020 border-color: #aaa;1338 #collapse-menu:hover #collapse-button div:after { 1339 color: #2ea2cc; 1021 1340 } 1022 1341 1023 # collapse-button div{1024 background: transparent url(../images/arrows.png) no-repeat 0 -72px;1342 #adminmenu div.wp-menu-image:before { 1343 color: #999; 1025 1344 } 1026 1345 1027 . folded #collapse-button div{1028 background-position: 0 -108px;1346 .icon16:before { 1347 color: #999; 1029 1348 } 1030 1349 1031 /* Auto-folding of the admin menu */ 1032 @media only screen and (max-width: 900px) { 1033 .auto-fold #adminmenu li.wp-has-current-submenu, 1034 .auto-fold #adminmenu li.current.menu-top { 1035 background-color: #777; 1036 background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); 1037 background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); 1038 background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); 1039 background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); 1040 background-image: linear-gradient(bottom, #6d6d6d, #808080); 1041 } 1042 1043 .auto-fold #adminmenu li.wp-has-current-submenu, 1044 .auto-fold #adminmenu li.current.menu-top { 1045 border-top-color: #808080; 1046 border-bottom-color: #6d6d6d; 1047 } 1048 1049 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1050 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1051 background-color: #fff; 1052 border-color: #dfdfdf; 1053 -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4); 1054 box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4); 1055 } 1056 1057 .auto-fold #collapse-button div { 1058 background-position: 0 -108px; 1059 } 1350 #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before { 1351 color: #fff; 1060 1352 } 1061 1353 1062 /* menu and screen icons */ 1063 .icon16, 1064 .icon32, 1065 div.wp-menu-image { 1066 background-color: transparent; 1067 background-repeat: no-repeat; 1354 #adminmenu li:hover div.wp-menu-image:before { 1355 color: #2ea2cc; 1068 1356 } 1069 1357 1070 .icon16.icon-dashboard, 1071 .menu-icon-dashboard div.wp-menu-image, 1072 .icon16.icon-post, 1073 .menu-icon-post div.wp-menu-image, 1074 .icon16.icon-media, 1075 .menu-icon-media div.wp-menu-image, 1076 .icon16.icon-links, 1077 .menu-icon-links div.wp-menu-image, 1078 .icon16.icon-page, 1079 .menu-icon-page div.wp-menu-image, 1080 .icon16.icon-comments, 1081 .menu-icon-comments div.wp-menu-image, 1082 .icon16.icon-appearance, 1083 .menu-icon-appearance div.wp-menu-image, 1084 .icon16.icon-plugins, 1085 .menu-icon-plugins div.wp-menu-image, 1086 .icon16.icon-users, 1087 .menu-icon-users div.wp-menu-image, 1088 .icon16.icon-tools, 1089 .menu-icon-tools div.wp-menu-image, 1090 .icon16.icon-settings, 1091 .menu-icon-settings div.wp-menu-image, 1092 .icon16.icon-site, 1093 .menu-icon-site div.wp-menu-image, 1094 .icon16.icon-generic, 1095 .menu-icon-generic div.wp-menu-image { 1096 background-image: url(../images/menu.png?ver=20121105); 1358 #adminmenu .wp-has-current-submenu div.wp-menu-image:before, 1359 #adminmenu .current div.wp-menu-image:before, 1360 #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, 1361 #adminmenu a.current:hover div.wp-menu-image:before { 1362 color: #fff; 1097 1363 } 1098 1364 1099 .icon16.icon-dashboard, 1100 #adminmenu .menu-icon-dashboard div.wp-menu-image { 1101 background-position: -59px -33px; 1102 } 1365 /* Diff */ 1103 1366 1104 #adminmenu .menu-icon-dashboard:hover div.wp-menu-image, 1105 #adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image, 1106 #adminmenu .menu-icon-dashboard.current div.wp-menu-image { 1107 background-position: -59px -1px; 1367 table.diff .diff-deletedline del { 1368 background-color: #f99; 1108 1369 } 1109 1370 1110 . icon16.icon-post,1111 #adminmenu .menu-icon-post div.wp-menu-image { 1112 b ackground-position: -269px -33px;1371 .ui-tooltip, .arrow::after { 1372 background-color: #fff; 1373 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1113 1374 } 1114 1375 1115 #adminmenu .menu-icon-post:hover div.wp-menu-image, 1116 #adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image, 1117 #adminmenu .menu-icon-post.current div.wp-menu-image { 1118 background-position: -269px -1px; 1376 .revisions-meta, 1377 .revisions-diff, 1378 .revisions.pinned .revisions-controls { 1379 background-color: #fff; 1380 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1119 1381 } 1120 1382 1121 .icon16.icon-media,1122 #adminmenu .menu-icon-media div.wp-menu-image {1123 background-position: -119px -33px;1124 }1125 1126 #adminmenu .menu-icon-media:hover div.wp-menu-image,1127 #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,1128 #adminmenu .menu-icon-media.current div.wp-menu-image {1129 background-position: -119px -1px;1130 }1131 1132 .icon16.icon-links,1133 #adminmenu .menu-icon-links div.wp-menu-image {1134 background-position: -89px -33px;1135 }1136 1137 #adminmenu .menu-icon-links:hover div.wp-menu-image,1138 #adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,1139 #adminmenu .menu-icon-links.current div.wp-menu-image {1140 background-position: -89px -1px;1141 }1142 1143 .icon16.icon-page,1144 #adminmenu .menu-icon-page div.wp-menu-image {1145 background-position: -149px -33px;1146 }1147 1148 #adminmenu .menu-icon-page:hover div.wp-menu-image,1149 #adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,1150 #adminmenu .menu-icon-page.current div.wp-menu-image {1151 background-position: -149px -1px;1152 }1153 1154 .icon16.icon-comments,1155 #adminmenu .menu-icon-comments div.wp-menu-image {1156 background-position: -29px -33px;1157 }1158 1159 #adminmenu .menu-icon-comments:hover div.wp-menu-image,1160 #adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,1161 #adminmenu .menu-icon-comments.current div.wp-menu-image {1162 background-position: -29px -1px;1163 }1164 1165 .icon16.icon-appearance,1166 #adminmenu .menu-icon-appearance div.wp-menu-image {1167 background-position: 1px -33px;1168 }1169 1170 #adminmenu .menu-icon-appearance:hover div.wp-menu-image,1171 #adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,1172 #adminmenu .menu-icon-appearance.current div.wp-menu-image {1173 background-position: 1px -1px;1174 }1175 1176 .icon16.icon-plugins,1177 #adminmenu .menu-icon-plugins div.wp-menu-image {1178 background-position: -179px -33px;1179 }1180 1181 #adminmenu .menu-icon-plugins:hover div.wp-menu-image,1182 #adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,1183 #adminmenu .menu-icon-plugins.current div.wp-menu-image {1184 background-position: -179px -1px;1185 }1186 1187 .icon16.icon-users,1188 #adminmenu .menu-icon-users div.wp-menu-image {1189 background-position: -300px -33px;1190 }1191 1192 #adminmenu .menu-icon-users:hover div.wp-menu-image,1193 #adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,1194 #adminmenu .menu-icon-users.current div.wp-menu-image {1195 background-position: -300px -1px;1196 }1197 1198 .icon16.icon-tools,1199 #adminmenu .menu-icon-tools div.wp-menu-image {1200 background-position: -209px -33px;1201 }1202 1203 #adminmenu .menu-icon-tools:hover div.wp-menu-image,1204 #adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,1205 #adminmenu .menu-icon-tools.current div.wp-menu-image {1206 background-position: -209px -1px;1207 }1208 1209 .icon16.icon-settings,1210 #adminmenu .menu-icon-settings div.wp-menu-image {1211 background-position: -239px -33px;1212 }1213 1214 #adminmenu .menu-icon-settings:hover div.wp-menu-image,1215 #adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,1216 #adminmenu .menu-icon-settings.current div.wp-menu-image {1217 background-position: -239px -1px;1218 }1219 1220 .icon16.icon-site,1221 #adminmenu .menu-icon-site div.wp-menu-image {1222 background-position: -359px -33px;1223 }1224 1225 #adminmenu .menu-icon-site:hover div.wp-menu-image,1226 #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,1227 #adminmenu .menu-icon-site.current div.wp-menu-image {1228 background-position: -359px -1px;1229 }1230 1231 .icon16.icon-generic,1232 #adminmenu .menu-icon-generic div.wp-menu-image {1233 background-position: -330px -33px;1234 }1235 1236 #adminmenu .menu-icon-generic:hover div.wp-menu-image,1237 #adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,1238 #adminmenu .menu-icon-generic.current div.wp-menu-image {1239 background-position: -330px -1px;1240 }1241 1242 /* end menu and screen icons */1243 1244 /* Screen Icons */1245 .icon32.icon-post,1246 #icon-edit,1247 #icon-post,1248 .icon32.icon-dashboard,1249 #icon-index,1250 .icon32.icon-media,1251 #icon-upload,1252 .icon32.icon-links,1253 #icon-link-manager,1254 #icon-link,1255 #icon-link-category,1256 .icon32.icon-page,1257 #icon-edit-pages,1258 #icon-page,1259 .icon32.icon-comments,1260 #icon-edit-comments,1261 .icon32.icon-appearance,1262 #icon-themes,1263 .icon32.icon-plugins,1264 #icon-plugins,1265 .icon32.icon-users,1266 #icon-users,1267 #icon-profile,1268 #icon-user-edit,1269 .icon32.icon-tools,1270 #icon-tools,1271 #icon-admin,1272 .icon32.icon-settings,1273 #icon-options-general,1274 .icon32.icon-site,1275 #icon-ms-admin,1276 .icon32.icon-generic,1277 #icon-generic {1278 background-image: url(../images/icons32.png?ver=20121105);1279 }1280 1281 .icon32.icon-post,1282 #icon-edit,1283 #icon-post {1284 background-position: -552px -5px;1285 }1286 1287 .icon32.icon-dashboard,1288 #icon-index {1289 background-position: -137px -5px;1290 }1291 1292 .icon32.icon-media,1293 #icon-upload {1294 background-position: -251px -5px;1295 }1296 1297 .icon32.icon-links,1298 #icon-link-manager,1299 #icon-link,1300 #icon-link-category {1301 background-position: -190px -5px;1302 }1303 1304 .icon32.icon-page,1305 #icon-edit-pages,1306 #icon-page {1307 background-position: -312px -5px;1308 }1309 1310 .icon32.icon-comments,1311 #icon-edit-comments {1312 background-position: -72px -5px;1313 }1314 1315 .icon32.icon-appearance,1316 #icon-themes {1317 background-position: -11px -5px;1318 }1319 1320 .icon32.icon-plugins,1321 #icon-plugins {1322 background-position: -370px -5px;1323 }1324 1325 .icon32.icon-users,1326 #icon-users,1327 #icon-profile,1328 #icon-user-edit {1329 background-position: -600px -5px;1330 }1331 1332 .icon32.icon-tools,1333 #icon-tools,1334 #icon-admin {1335 background-position: -432px -5px;1336 }1337 1338 .icon32.icon-settings,1339 #icon-options-general {1340 background-position: -492px -5px;1341 }1342 1343 .icon32.icon-site,1344 #icon-ms-admin {1345 background-position: -659px -5px;1346 }1347 1348 .icon32.icon-generic,1349 #icon-generic {1350 background-position: -708px -5px;1351 }1352 1353 /* end screen icons */1354 1355 /* Post format icons */1356 1357 .post-format-icon {1358 background: url(../images/post-formats.png) no-repeat;1359 }1360 1361 /* Diff */1362 1383 table.diff .diff-deletedline { 1363 1384 background-color: #ffe9e9; 1364 1385 } … … 1375 1396 background-color: #afa; 1376 1397 } 1377 1398 1378 .revisions-meta {1379 border: 1px solid #dfdfdf;1380 }1381 1382 .revisions-controls {1383 background: #fff;1384 background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(255,255,255,1)), color-stop(30px,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));1385 background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1386 background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1387 background: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1388 background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);1389 }1390 1391 1399 .revisions-tooltip, 1392 1400 .revisions-tooltip-arrow span { 1393 1401 border-color: #d7d7d7; 1394 1402 background-color: #fff; 1395 1403 } 1396 1404 1405 .revisions-tickmarks { 1406 background-color: #fff; 1407 } 1408 1397 1409 .revisions-tickmarks > div { 1398 1410 border-color: #aaa; 1399 1411 } 1400 1412 1413 .revisions.pinned .revisions-controls { 1414 background: #fff; 1415 } 1416 1417 .revisions.pinned .revisions-meta { 1418 box-shadow: none; 1419 } 1420 1401 1421 /* jQuery UI Slider */ 1422 1402 1423 .wp-slider.ui-slider { 1403 1424 border-color: #d7d7d7; 1404 1425 } 1405 1426 1406 .wp-slider .ui-slider-handle { 1407 border-color: #ccc; 1408 border-radius: 50%; 1409 background: #f4f4f4; 1410 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); 1411 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); 1412 background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); 1413 background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); 1414 background-image: linear-gradient(to top, #dfdfdf, #fff); 1415 color: #333; 1427 .wp-slider .ui-slider-handle, 1428 .wp-slider .ui-slider-handle.ui-state-hover, 1429 .wp-slider .ui-slider-handle.focus { 1430 background: #2ea2cc; 1431 background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#2ea2cc), color-stop(100%,#1e8cbe)); 1432 background: -webkit-linear-gradient(-45deg, #2ea2cc 0%,#1e8cbe 100%); 1433 background: linear-gradient(135deg, #2ea2cc 0%,#1e8cbe 100%); 1434 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=1 ); 1435 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1416 1436 } 1417 1437 1418 .wp-slider .ui-slider-handle: hover,1419 .wp-slider .ui-slider-handle:focus { 1420 border-color: #aaa;1438 .wp-slider .ui-slider-handle:before { 1439 color: #fff; 1440 text-shadow: 0 1px 1px rgba(0,116,162,1); 1421 1441 } 1422 1442 1423 .wp-slider .ui-slider-handle.ui-state-hover, 1424 .wp-slider .ui-slider-handle.ui-state-focus { 1425 border-color: #aaa; 1426 outline: none; 1443 .wp-slider .ui-slider-handle.ui-state-active { 1444 background: #0074a2; 1445 background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#0074a2), color-stop(100%,#005684)); 1446 background: -webkit-linear-gradient(-45deg, #0074a2 0%,#005684 100%); 1447 background: linear-gradient(135deg, #0074a2 0%,#005684 100%); 1448 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0074a2', endColorstr='#005684',GradientType=1 ); 1427 1449 } 1428 1450 1429 1451 /* edit image */ … … 1434 1456 } 1435 1457 1436 1458 #sidemenu a.current { 1437 background-color: # fff;1438 border-color: #dfdfdf #dfdfdf # fff;1439 color: # d54e21;1459 background-color: #eee; 1460 border-color: #dfdfdf #dfdfdf #eee; 1461 color: #000; 1440 1462 } 1441 1463 1442 1464 #replyerror { … … 1452 1474 } 1453 1475 1454 1476 /* Install Plugins */ 1477 1478 #plugin-information { 1479 height: auto; 1480 } 1481 1455 1482 #plugin-information .fyi ul { 1456 1483 background-color: #eaf3fa; 1457 1484 } … … 1466 1493 } 1467 1494 1468 1495 #plugin-information pre { 1469 border : 1px solid#ccc;1496 border-color: #ccc; 1470 1497 } 1471 1498 1472 1499 /* inline editor */ … … 1492 1519 } 1493 1520 1494 1521 .attention { 1495 color: # d54e21;1522 color: #2ea2cc; 1496 1523 } 1497 1524 1498 .js .meta-box-sortables .postbox:hover .handlediv {1499 background: transparent url(../images/arrows.png) no-repeat 6px 7px;1525 .js .meta-box-sortables .postbox:hover .handlediv:before { 1526 color: #888; 1500 1527 } 1501 1528 1502 1529 .tablenav .tablenav-pages { … … 1504 1531 } 1505 1532 1506 1533 .tablenav .tablenav-pages a { 1507 border-color: #e3e3e3;1508 1534 background: #eee; 1509 -moz-box-shadow: inset 0 1px 0 #fff; 1510 -webkit-box-shadow: inset 0 1px 0 #fff; 1511 box-shadow: inset 0 1px 0 #fff; 1535 background: rgba( 0, 0, 0, 0.05 ); 1512 1536 } 1513 1537 1514 1538 .tablenav .tablenav-pages a:hover, 1515 1539 .tablenav .tablenav-pages a:focus { 1516 color: #d54e21; 1540 color: #fff; 1541 background: #2ea2cc; 1517 1542 } 1518 1543 1519 1544 .tablenav .tablenav-pages a.disabled, 1520 1545 .tablenav .tablenav-pages a.disabled:hover, 1521 1546 .tablenav .tablenav-pages a.disabled:focus { 1522 1547 color: #aaa; 1548 background: #eee; 1549 background: rgba( 0, 0, 0, 0.05 ); 1523 1550 } 1524 1551 1525 1552 .tablenav .tablenav-pages .current { … … 1547 1574 } 1548 1575 1549 1576 .misc-pub-section { 1550 border-top-color: #fff;1551 border-bottom-color: #dfdfdf;1552 1577 } 1553 1578 1554 1579 #minor-publishing { … … 1556 1581 } 1557 1582 1558 1583 #post-body .misc-pub-section { 1559 border-left-color: #eee;1560 1584 } 1561 1585 1562 1586 .post-com-count span { 1563 1587 background-color: #bbb; 1564 1588 } 1565 1589 1566 .form-table .color-palette td {1567 border-color: #fff;1568 }1569 1570 1590 .sortable-placeholder { 1571 1591 border-color: #bbb; 1572 1592 background-color: #f5f5f5; … … 1578 1598 color: #333; 1579 1599 } 1580 1600 1581 .view-switch #view-switch-list, 1582 .view-switch #view-switch-excerpt { 1583 background-color: transparent; 1584 background-image: url('../images/list.png'); 1585 background-repeat: no-repeat; 1601 .view-switch>a:before { 1602 color: #bbb; 1586 1603 } 1587 1604 1588 .view-switch #view-switch-list{1589 background-position: 0 0;1605 .view-switch a:hover:before { 1606 color: #727272; 1590 1607 } 1591 1608 1592 .view-switch .current #view-switch-list{1593 background-position: -40px 0;1609 .view-switch a.current:before { 1610 color: #0074a2; 1594 1611 } 1595 1612 1596 .view-switch #view-switch-excerpt {1597 background-position: -20px 0;1598 }1599 1600 .view-switch .current #view-switch-excerpt {1601 background-position: -60px 0;1602 }1603 1604 #header-logo {1605 background: transparent url(../images/wp-logo.png?ver=20110504) no-repeat scroll center center;1606 }1607 1608 .popular-tags,1609 .feature-filter {1610 background-color: #fff;1611 border-color: #dfdfdf;1612 }1613 1614 1613 div.widgets-sortables, 1615 1614 #widgets-left .inactive, 1616 1615 #available-widgets .widget-holder { 1617 background-color: #f cfcfc;1618 border-color: # dfdfdf;1616 background-color: #fff; 1617 border-color: #fff; 1619 1618 } 1620 1619 1620 #widgets-left #available-widgets { 1621 background: #fff; 1622 } 1623 1621 1624 #available-widgets .widget-description { 1622 1625 color: #555; 1623 1626 } 1624 1627 1625 1628 .sidebar-name { 1626 1629 color: #464646; 1627 text-shadow: #fff 0 1px 0; 1628 border-color: #dfdfdf; 1629 -webkit-box-shadow: inset 0 1px 0 #fff; 1630 box-shadow: inset 0 1px 0 #fff; 1630 border-bottom-color: #e1e1e1; 1631 1631 } 1632 1632 1633 1633 .js .sidebar-name:hover, 1634 1634 .js #removing-widget { 1635 color: # d54e21;1635 color: #2ea2cc; 1636 1636 } 1637 1637 1638 1638 #removing-widget span { 1639 1639 color: black; 1640 1640 } 1641 1641 1642 .js .sidebar-name-arrow { 1643 background: transparent url(../images/arrows.png) no-repeat 5px 9px; 1642 .in-widget-title, 1643 #widgets-right .widget-top a.widget-control-edit, 1644 #wp_inactive_widgets .in-widget-title { 1645 color: #777; 1644 1646 } 1645 1647 1646 .js .sidebar-name:hover .sidebar-name-arrow{1647 background: transparent url(../images/arrows-dark.png) no-repeat 5px 9px;1648 #widgets-right .widget-top a.widget-control-edit:hover { 1649 color: #fff; 1648 1650 } 1649 1651 1650 .in-widget-title { 1651 color: #606060; 1652 } 1653 1654 .deleting .widget-title * { 1652 .deleting .widget-title, 1653 .deleting .widget-top a.widget-action:after { 1655 1654 color: #aaa; 1656 1655 } 1657 1656 … … 1672 1671 opacity: 0.5; 1673 1672 } 1674 1673 1675 #dashboard_recent_comments div.undo {1676 border-top-color: #dfdfdf;1677 }1678 1679 .comment-ays,1680 .comment-ays th {1681 border-color: #ddd;1682 }1683 1684 .comment-ays th {1685 background-color: #f1f1f1;1686 }1687 1688 1674 /* added from nav-menu.css */ 1689 #menu-management .menu-edit{1690 b order-color: #dfdfdf;1675 #menu-management { 1676 background: #f5f5f5 1691 1677 } 1692 1678 1693 # post-body {1679 #menu-management #post-body { 1694 1680 background: #fff; 1695 1681 border-top-color: #fff; 1696 1682 border-bottom-color: #dfdfdf; … … 1700 1686 border-bottom-color: #dfdfdf; 1701 1687 } 1702 1688 1703 #nav-menu-footer {1704 border-top-color: #fff;1705 }1706 1707 1689 #menu-management .nav-tabs-arrow a { 1708 1690 color: #c1c1c1; 1709 1691 } 1710 1692 1711 1693 #menu-management .nav-tabs-arrow a:hover { 1712 color: # d54e21;1694 color: #2ea2cc; 1713 1695 } 1714 1696 1715 1697 #menu-management .nav-tabs-arrow a:active { … … 1745 1727 1746 1728 .menu li.deleting .menu-item-handle { 1747 1729 background-color: #f66; 1748 text-shadow: #ccc;1749 1730 } 1750 1731 1751 1732 .item-type { /* Menu item controls */ 1752 color: # 999;1733 color: #777; 1753 1734 } 1754 1735 1755 1736 .item-controls .menu-item-delete:hover { 1756 1737 color: #f00; 1757 1738 } 1758 1739 1759 .nav-menus-php .item-edit { 1760 background: transparent url(../images/arrows.png) no-repeat 8px 10px; 1761 border-bottom-color: #eee; 1740 .widget-top a.widget-action:hover { 1741 color: #0074a2; 1762 1742 } 1763 1743 1764 . nav-menus-php .item-edit:hover {1765 background: transparent url(../images/arrows-dark.png) no-repeat 8px 10px;1744 .widget-top a.widget-action:after { 1745 color: #333; 1766 1746 } 1767 1747 1768 .menu-item-settings { /* Menu editing */ 1769 border-color: #dfdfdf;1748 #wp_inactive_widgets .widget .widget-top a.widget-action { 1749 color: #ddd; 1770 1750 } 1771 1751 1752 .nav-menus-php .item-edit:after, 1753 #wp_inactive_widgets .widget .widget-top a.widget-action:after { 1754 color: #888; 1755 } 1756 1757 .control-section .accordion-section-title::after, 1758 .accordion-section-title::after { 1759 color: #888; 1760 } 1761 1762 .nav-menus-php .control-section .accordion-section-title { 1763 background: #fff; 1764 } 1765 1766 .nav-menus-php .control-section:hover .accordion-section-title, 1767 .nav-menus-php .control-section .accordion-section-title:hover, 1768 .nav-menus-php .control-section.open .accordion-section-title, 1769 .nav-menus-php .control-section .accordion-section-title:focus{ 1770 color: #555; 1771 background: #f5f5f5; 1772 } 1773 1774 /* Menu editing */ 1775 1772 1776 .link-to-original { 1773 1777 color: #777; 1774 1778 border-color: #dfdfdf; … … 1790 1794 } 1791 1795 1792 1796 .submitbox .submitcancel { 1793 color: # 21759b;1794 border-bottom-color: # 21759b;1797 color: #0074a2; 1798 border-bottom-color: #0074a2; 1795 1799 } 1796 1800 1797 1801 .submitbox .submitcancel:hover { 1798 background: # 21759b;1802 background: #0074a2; 1799 1803 color: #fff; 1800 1804 } 1801 1805 1802 1806 .manage-menus { 1803 border: 1px solid #eeeeee;1804 1807 background: #fbfbfb; 1805 1808 } 1806 1809 1810 .menu-settings { 1811 border-top-color: #eeeeee; 1812 } 1813 1807 1814 .theme-location-set { 1808 1815 color: #999999; 1809 1816 } … … 1815 1822 .is-submenu { 1816 1823 color: #999999; 1817 1824 } 1818 /* end added from nav-menu.css */1819 1825 1820 1826 .nav-tab { 1821 border-color: #dfdfdf #dfdfdf #fff; 1827 color: #555; 1828 border-color: #ccc; 1829 background: #e4e4e4; 1822 1830 } 1823 1831 1824 .nav-tab:hover ,1825 .nav-tab-active { 1826 border-color: #ccc #ccc #fff;1832 .nav-tab:hover { 1833 background-color: #fff; 1834 color: #464646; 1827 1835 } 1828 1836 1829 h2.nav-tab-wrapper, h3.nav-tab-wrapper{1830 border-bottom-color: #ccc;1837 .nav-tab-active { 1838 color: #464646; 1831 1839 } 1832 1840 1833 #menu-management .nav-tab-active, 1834 .menu-item-handle, 1835 .menu-item-settings { 1836 -webkit-box-shadow: inset 0 1px 0 #fff; 1837 box-shadow: inset 0 1px 0 #fff; 1841 .nav-tab-active, 1842 .nav-tab-active:hover { 1843 color: #000; 1844 background: none; 1845 border-color: #ccc; 1846 border-bottom-color: #eee; 1838 1847 } 1839 1848 1840 #menu-management .nav-tab-active { 1841 background: #f9f9f9; 1842 border-bottom-color: #f9f9f9; 1849 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 1850 border-bottom-color: #ccc; 1843 1851 } 1844 1852 1845 1853 #upload-form label { … … 1847 1855 } 1848 1856 1849 1857 /* Begin About Pages */ 1850 1851 1858 .about-wrap h1 { 1852 1859 color: #333; 1853 text-shadow: 1px 1px 1px #fff;1854 1860 } 1855 1861 1856 1862 .about-text { … … 1858 1864 } 1859 1865 1860 1866 .wp-badge { 1861 color: #fff; 1862 text-shadow: 0 -1px 0 rgba(22, 57, 81, 0.3); 1867 background-color: #0074a2; 1868 color: #78c8e6; 1869 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2); 1870 box-shadow: 0 1px 3px rgba(0,0,0,0.2); 1863 1871 } 1864 1872 1865 .about-wrap h2 .nav-tab {1866 color: #21759b;1867 }1868 1869 .about-wrap h2 .nav-tab:hover {1870 color: #d54e21;1871 }1872 1873 .about-wrap h2 .nav-tab-active,1874 .about-wrap h2 .nav-tab-active:hover {1875 color: #333;1876 }1877 1878 1873 .about-wrap h2 .nav-tab-active { 1879 text-shadow: 1px 1px 1px #fff;1880 color: #464646;1874 border-color: #ccc; 1875 border-bottom-color: #eee; 1881 1876 } 1882 1877 1883 1878 .about-wrap h3 { 1884 1879 color: #333; 1885 text-shadow: 1px 1px 1px #fff;1886 1880 } 1887 1881 1888 1882 .about-wrap .feature-section h4 { 1889 1883 color: #464646; 1890 1884 } 1891 1885 1892 .about-wrap h4.wp-people-group { 1893 text-shadow: 1px 1px 1px #fff; 1886 .about-wrap .feature-section img { 1887 background: #fff; 1888 border-color: #ccc; 1894 1889 } 1895 1890 1891 .about-wrap .feature-section .col-2:before, 1892 .about-wrap .feature-section .col-2:after, 1893 .about-wrap .feature-section.two-col p:before { 1894 color: #1e8cbe; 1895 } 1896 1896 1897 .about-wrap .point-releases { 1897 1898 border-bottom: 1px solid #dfdfdf; 1898 1899 } 1899 1900 1900 1901 .about-wrap .point-releases h3 { 1901 border-top : 1px solid#dfdfdf;1902 border-top-color: #dfdfdf; 1902 1903 } 1903 1904 1904 .about-wrap .point-releases h3:first-child {1905 border: 0;1906 }1907 1908 1905 .about-wrap li.wp-person img.gravatar { 1909 -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); 1910 box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); 1906 border-color: #ccc; 1911 1907 } 1912 1908 1913 1909 .about-wrap li.wp-person .title { 1914 1910 color: #464646; 1915 text-shadow: 1px 1px 1px #fff;1916 1911 } 1917 1912 1918 1913 .freedoms-php .about-wrap ol li { … … 1925 1920 1926 1921 /* End About Pages */ 1927 1922 1923 /* Press This and Image editing icons */ 1928 1924 1929 /*------------------------------------------------------------------------------ 1930 2.0 - Right to Left Styles 1931 ------------------------------------------------------------------------------*/ 1925 .pressthis a span:before { 1926 color:#777; 1927 } 1932 1928 1933 .rtl .bar { 1934 border-right-color: transparent; 1935 border-left-color: #99d; 1929 .imgedit-menu div { 1930 color:#777; 1936 1931 } 1937 1932 1938 . rtl #screen-meta-links a.show-settings{1939 background-position: left 3px;1933 .imgedit-menu div:hover { 1934 color:#333; 1940 1935 } 1941 1936 1942 .rtl #screen-meta-links a.show-settings.screen-meta-active { 1943 background-position: left -33px; 1937 /* End Press This and Image editing icons */ 1938 1939 /* Media Manager */ 1940 1941 .media-modal-content { 1942 background: #fcfcfc; 1943 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 1944 1944 } 1945 1945 1946 /* Menu */ 1947 .rtl #adminmenushadow, 1948 .rtl #adminmenuback { 1949 background-image: url(../images/menu-shadow-rtl.png); 1950 background-position: top left; 1946 .media-menu { 1947 background: #f3f3f3; 1948 border-right-color: #ccc; 1951 1949 } 1952 1950 1953 .rtl #adminmenu .wp-submenu .wp-submenu-head { 1954 border-right-color: transparent; 1955 border-left-color: #dfdfdf; 1951 .media-menu > a { 1952 color: #0074a2; 1956 1953 } 1957 1954 1958 .rtl #adminmenu .wp-submenu, 1959 .rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu { 1960 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 1961 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 1955 .media-menu .active, 1956 .media-menu .active:hover { 1957 color: #222; 1962 1958 } 1963 1959 1964 .rtl #adminmenu .wp-has-current-submenu .wp-submenu { 1965 -webkit-box-shadow: none; 1966 box-shadow: none; 1960 .media-frame-content { 1961 background: #fff; 1962 border-top-color: #ddd; 1963 border-bottom-color: #ddd; 1967 1964 } 1968 1965 1969 /* Collapse Menu Button */ 1970 .rtl #collapse-button div { 1971 b ackground-position: 0 -108px;1966 .media-menu .separator { 1967 border-top-color: #ddd; 1968 border-bottom: none; 1972 1969 } 1973 1970 1974 .rtl.folded #collapse-button div { 1975 background-position: 0 -72px; 1971 .media-sidebar { 1972 background: #f3f3f3; 1973 border-color: #ddd; 1976 1974 } 1977 1975 1978 /* Auto-folding of the admin menu for RTL */ 1979 @media only screen and (max-width: 900px) { 1980 .rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1981 .rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1982 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 1983 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 1984 } 1976 .media-router .active, 1977 .media-router > a.active:last-child { 1978 background: #fff; 1979 border: 1px solid #ddd; 1980 border-bottom: none; 1981 } 1985 1982 1986 .rtl.auto-fold #collapse-button div { 1987 background-position: 0 -72px; 1988 } 1983 .details.attachment { 1984 box-shadow: 0 0 0 1px #fff, 0 0 0 5px #2ea2cc; 1989 1985 } 1990 1986 1991 /* Edit Image */ 1992 .js.rtl .meta-box-sortables .postbox:hover .handlediv { 1993 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 1987 .attachment .check { 1988 background: #eee; 1994 1989 } 1995 1990 1996 .rtl #post-body .misc-pub-section { 1997 border-right-color: transparent; 1998 border-left-color: #eee; 1991 .attachment.details .check { 1992 box-shadow: 0 0 0 1px #2ea2cc; 1993 background: #0074a2; 1994 background-image: none; 1999 1995 } 2000 1996 2001 .js.rtl .sidebar-name-arrow { 2002 background: transparent url(../images/arrows.png) no-repeat 5px 9px; 1997 /* TinyMCE modal */ 1998 1999 .clearlooks2 { 2000 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 2003 2001 } 2004 2002 2005 .js.rtl .sidebar-name:hover .sidebar-name-arrow { 2006 background: transparent url(../images/arrows-dark.png) no-repeat 5px 9px; 2003 .clearlooks2 .mceMiddle span, 2004 .clearlooks2 .mceMiddle .mceLeft, 2005 .clearlooks2 .mceMiddle .mceRight, 2006 .clearlooks2 .mceBottom, 2007 .clearlooks2 .mceBottom .mceLeft, 2008 .clearlooks2 .mceBottom .mceCenter, 2009 .clearlooks2 .mceBottom .mceRight { 2010 background-color: #fcfcfc; 2007 2011 } 2008 2012 2009 /** 2010 * HiDPI Displays 2011 */ 2013 .clearlooks2 .mceFocus .mceTop .mceLeft, 2014 .clearlooks2 .mceFocus .mceTop .mceRight { 2015 background-color: #f3f3f3; 2016 } 2017 2018 .clearlooks2 .mceTop span, 2019 .clearlooks2 .mceFocus .mceTop span { 2020 color: #222; 2021 } 2022 2023 .clearlooks2 .mceClose:before { 2024 color: #666; 2025 } 2026 .clearlooks2 .mceClose:hover:before { 2027 color: #2ea2cc; 2028 } 2029 2030 2031 /* Lightbox */ 2032 2033 .sticky-menu #TB_window { 2034 background: #f1f1f1; 2035 } 2036 2037 /* tinymce */ 2038 a .mceIcon, .mceAction { 2039 color:#777; 2040 } 2041 2042 a .mceIcon:hover { 2043 color:#333; 2044 } 2045 2046 /* Log in page */ 2047 2048 .login form .input, 2049 .login input[type="text"], 2050 .login form input[type="checkbox"] { 2051 border-color: #ddd !important; /* Override !important in checkbox style */ 2052 -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.08); 2053 box-shadow: inset 1px 1px 2px rgba(0,0,0,0.08); 2054 } 2055 2056 .login form input[type="checkbox"] { 2057 background-color: #fbfbfb; 2058 } 2059 2060 .login form { 2061 background: #fff; 2062 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2063 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2064 } 2065 2066 body.login { 2067 background: #eee; 2068 } 2069 2070 .login #nav a, 2071 .login #backtoblog a { 2072 text-decoration: none; 2073 color: #999; 2074 } 2075 2076 .login #nav a:hover, 2077 .login #backtoblog a:hover { 2078 color: #2ea2cc; 2079 } 2080 2081 .login h1 a:hover { 2082 color: #2ea2cc; 2083 } 2084 2012 2085 @media print, 2013 2086 (-o-min-device-pixel-ratio: 5/4), 2014 2087 (-webkit-min-device-pixel-ratio: 1.25), 2015 2088 (min-resolution: 120dpi) { 2016 2017 .curtime #timestamp { 2018 background-image: url("../images/date-button-2x.gif?ver=20120916"); 2019 background-size: 16px auto; 2020 } 2021 2089 .curtime #timestamp, 2090 #screen-meta-links a.show-settings, 2091 .widget-top a.widget-action, 2092 .widget-top a.widget-action:hover, 2093 .sidebar-name-arrow, 2094 .sidebar-name:hover .sidebar-name-arrow, 2095 .meta-box-sortables .postbox:hover .handlediv, 2022 2096 .tagchecklist span a, 2023 2097 #bulk-titles div a, 2024 2098 .tagchecklist span a:hover, 2025 #bulk-titles div a:hover { 2026 background-image: url("../images/xit-2x.gif?ver=20120916"); 2027 background-size: 20px auto; 2099 #bulk-titles div a:hover, 2100 .wp_themeSkin .mceToolbar span.mce_undo, 2101 .wp_themeSkin .mceToolbar span.mce_redo, 2102 .wp_themeSkin .mceToolbar span.mce_bullist, 2103 .wp_themeSkin .mceToolbar span.mce_numlist, 2104 .wp_themeSkin .mceToolbar span.mce_blockquote, 2105 .wp_themeSkin .mceToolbar span.mce_charmap, 2106 .wp_themeSkin .mceToolbar span.mce_bold, 2107 .wp_themeSkin .mceToolbar span.mce_italic, 2108 .wp_themeSkin .mceToolbar span.mce_underline, 2109 .wp_themeSkin .mceToolbar span.mce_justifyleft, 2110 .wp_themeSkin .mceToolbar span.mce_justifyright, 2111 .wp_themeSkin .mceToolbar span.mce_justifycenter, 2112 .wp_themeSkin .mceToolbar span.mce_justifyfull, 2113 .wp_themeSkin .mceToolbar span.mce_indent, 2114 .wp_themeSkin .mceToolbar span.mce_outdent, 2115 .wp_themeSkin .mceToolbar span.mce_link, 2116 .wp_themeSkin .mceToolbar span.mce_unlink, 2117 .wp_themeSkin .mceToolbar span.mce_help, 2118 .wp_themeSkin .mceToolbar span.mce_removeformat, 2119 .wp_themeSkin .mceToolbar span.mce_fullscreen, 2120 .wp_themeSkin .mceToolbar span.mce_wp_fullscreen, 2121 .wp_themeSkin .mceToolbar span.mce_media, 2122 .wp_themeSkin .mceToolbar span.mce_pastetext, 2123 .wp_themeSkin .mceToolbar span.mce_pasteword, 2124 .wp_themeSkin .mceToolbar span.mce_wp_help, 2125 .wp_themeSkin .mceToolbar span.mce_wp_adv, 2126 .wp_themeSkin .mceToolbar span.mce_wp_more, 2127 .wp_themeSkin .mceToolbar span.mce_strikethrough, 2128 .wp_themeSkin .mceToolbar span.mce_spellchecker, 2129 .wp_themeSkin .mceToolbar span.mce_forecolor, 2130 .wp_themeSkin .mceToolbar .mce_forecolorpicker, 2131 .wp_themeSkin .mceToolbar .mceSplitButton .mce_spellchecker span.mce_spellchecker, 2132 .wp_themeSkin .mceToolbar .mceSplitButton .mce_forecolor span.mce_forecolor, 2133 .wp_themeSkin .mceToolbar .mceSplitButton span.mce_numlist, 2134 .wp_themeSkin .mceToolbar .mceSplitButton span.mce_bullist { 2135 background: none !important; 2028 2136 } 2137 } 2029 2138 2030 #screen-meta-links a.show-settings, 2031 #screen-meta-links a.show-settings.screen-meta-active, 2032 #adminmenu .wp-has-submenu:hover .wp-menu-toggle, 2033 #adminmenu .wp-menu-open .wp-menu-toggle, 2034 #collapse-button div, 2035 .nav-menus-php .item-edit, 2036 .js .meta-box-sortables .postbox:hover .handlediv, 2037 .sidebar-name-arrow, 2038 .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle, 2039 .rtl #adminmenu .wp-menu-open .wp-menu-toggle, 2040 .js.rtl .meta-box-sortables .postbox:hover .handlediv, 2041 .rtl .sidebar-name-arrow { 2042 background-image: url("../images/arrows-2x.png?ver=20120916"); 2043 background-size: 15px 123px; 2044 } 2139 /*------------------------------------------------------------------------------ 2140 2.0 - Right to Left Styles 2141 ------------------------------------------------------------------------------*/ 2045 2142 2046 #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle, 2047 #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle, 2048 .sidebar-name:hover .sidebar-name-arrow, 2049 .nav-menus-php .item-edit:hover, 2050 .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle, 2051 .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle, 2052 .rtl .sidebar-name:hover .sidebar-name-arrow { 2053 background-image: url("../images/arrows-dark-2x.png?ver=20120916"); 2054 background-size: 15px 123px; 2055 } 2143 .rtl .bar { 2144 border-right-color: transparent; 2145 border-left-color: #99d; 2146 } 2056 2147 2057 .view-switch #view-switch-list, 2058 .view-switch #view-switch-excerpt { 2059 background-image: url("../images/list-2x.png?ver=20120916"); 2060 background-size: 80px 20px; 2061 } 2148 .rtl #adminmenu .wp-submenu .wp-submenu-head { 2149 border-right-color: transparent; 2150 border-left-color: #dfdfdf; 2151 } 2062 2152 2063 .icon32.icon-post, 2064 #icon-edit, 2065 #icon-post, 2066 .icon32.icon-dashboard, 2067 #icon-index, 2068 .icon32.icon-media, 2069 #icon-upload, 2070 .icon32.icon-links, 2071 #icon-link-manager, 2072 #icon-link, 2073 #icon-link-category, 2074 .icon32.icon-page, 2075 #icon-edit-pages, 2076 #icon-page, 2077 .icon32.icon-comments, 2078 #icon-edit-comments, 2079 .icon32.icon-appearance, 2080 #icon-themes, 2081 .icon32.icon-plugins, 2082 #icon-plugins, 2083 .icon32.icon-users, 2084 #icon-users, 2085 #icon-profile, 2086 #icon-user-edit, 2087 .icon32.icon-tools, 2088 #icon-tools, 2089 #icon-admin, 2090 .icon32.icon-settings, 2091 #icon-options-general, 2092 .icon32.icon-site, 2093 #icon-ms-admin, 2094 .icon32.icon-generic, 2095 #icon-generic { 2096 background-image: url(../images/icons32-2x.png?ver=20121105); 2097 background-size: 756px 45px; 2098 } 2153 .rtl #adminmenu .wp-submenu, 2154 .rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu { 2155 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 2156 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 2157 } 2099 2158 2100 .icon16.icon-dashboard, 2101 .menu-icon-dashboard div.wp-menu-image, 2102 .icon16.icon-post, 2103 .menu-icon-post div.wp-menu-image, 2104 .icon16.icon-media, 2105 .menu-icon-media div.wp-menu-image, 2106 .icon16.icon-links, 2107 .menu-icon-links div.wp-menu-image, 2108 .icon16.icon-page, 2109 .menu-icon-page div.wp-menu-image, 2110 .icon16.icon-comments, 2111 .menu-icon-comments div.wp-menu-image, 2112 .icon16.icon-appearance, 2113 .menu-icon-appearance div.wp-menu-image, 2114 .icon16.icon-plugins, 2115 .menu-icon-plugins div.wp-menu-image, 2116 .icon16.icon-users, 2117 .menu-icon-users div.wp-menu-image, 2118 .icon16.icon-tools, 2119 .menu-icon-tools div.wp-menu-image, 2120 .icon16.icon-settings, 2121 .menu-icon-settings div.wp-menu-image, 2122 .icon16.icon-site, 2123 .menu-icon-site div.wp-menu-image, 2124 .icon16.icon-generic, 2125 .menu-icon-generic div.wp-menu-image { 2126 background-image: url('../images/menu-2x.png?ver=20121105'); 2127 background-size: 390px 64px; 2128 } 2159 .rtl #adminmenu .wp-has-current-submenu .wp-submenu { 2160 -webkit-box-shadow: none; 2161 box-shadow: none; 2162 } 2129 2163 2130 #header-logo { 2131 background-image: url('../images/wp-logo-2x.png?ver=20120916'); 2132 background-size: 16px auto; 2133 } 2164 .rtl ul#adminmenu a.wp-has-current-submenu:after, 2165 .rtl ul#adminmenu > li.current > a.current:after { 2166 border-right-color: transparent; 2167 border-left-color: #eee; 2168 } 2134 2169 2135 /* 16px post formats */ 2136 .post-format-icon { 2137 background-image: url(../images/post-formats32.png); 2138 background-size: 16px 304px; 2139 } 2170 /* Flyout Menu Arrow */ 2171 .rtl #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, 2172 .rtl #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after { 2173 border-right-color: transparent; 2174 border-left-color: #333; 2175 } 2140 2176 2177 .rtl #post-body .misc-pub-section { 2178 border-right-color: transparent; 2179 border-left-color: #eee; 2141 2180 } 2181 2182 .rtl div.updated, 2183 .rtl .login .message { 2184 border-left: none; 2185 border-right: 4px solid #7ad03a; 2186 } 2187 2188 .rtl .plugins .active th.check-column, 2189 .rtl tr.active + tr.plugin-update-tr .plugin-update { 2190 border-left: none; 2191 border-right: 4px solid #2ea2cc; 2192 } 2193 2194 .rtl .plugins .update th.check-column, 2195 .rtl tr.plugin-update-tr .plugin-update { 2196 border-left: none; 2197 border-right: 4px solid #d54e21; 2198 } 2199 2200 .rtl #the-comment-list .unapproved th.check-column, 2201 .rtl #dashboard_recent_comments #the-comment-list .unapproved { 2202 border-left: none; 2203 border-right: 4px solid #d54e21; 2204 } 2205 2206 .rtl #dashboard_recent_comments #the-comment-list .unapproved .avatar { 2207 margin-left: 10px; 2208 margin-right: -4px; 2209 } -
src/wp-admin/css/customize-controls.css
6 6 text-decoration: none; 7 7 } 8 8 9 #customize- info .accordion-section-content{10 background: transparent;9 #customize-controls h3 { 10 font-size: 14px; 11 11 } 12 12 13 #customize-controls .submit { 14 text-align: center; 15 } 16 17 #customize-controls .description { 18 color: #666666; 19 } 20 21 #customize-header-actions .button-primary { 22 float: right; 23 margin-top: 10px; 24 } 25 26 #customize-header-actions .spinner { 27 margin-top: 16px; 28 margin-right: 4px; 29 } 30 31 .saving #customize-header-actions .spinner { 32 display: block; 33 } 34 35 #customize-info { 36 border: none; 37 border-top: 1px solid #ddd; 38 } 39 40 #customize-info .accordion-section-title { 41 background-color: #fff; 42 color: #666666; 43 border-left: none; 44 border-right: none; 45 border-bottom: 1px solid #eeeeee; 46 } 47 48 #customize-info.open .accordion-section-title, 49 #customize-info .accordion-section-title:hover, 50 #customize-info .accordion-section-title:focus { 51 color: #555555; 52 } 53 54 #customize-info.open .accordion-section-title:after, 55 #customize-info .accordion-section-title:hover:after, 56 #customize-info .accordion-section-title:focus:after { 57 color: #555555; 58 } 59 60 #customize-info.open .accordion-section-title { 61 border-color: transparent; 62 } 63 13 64 #customize-info .preview-notice { 14 65 font-size: 13px; 15 66 line-height: 24px; 16 color: #999;17 67 } 18 68 19 69 #customize-info .theme-name { 20 70 font-size: 20px; 21 71 font-weight: 200; 22 72 line-height: 24px; 23 color: #333;24 73 display: block; 25 text-shadow: 0 1px 0 #fff;26 74 } 27 75 28 76 #customize-info .theme-screenshot { 29 77 width: 258px; 30 border: 1px solid #ccc;31 78 } 32 79 33 80 #customize-info .theme-description { 34 81 margin-top: 1em; 35 color: # 777;82 color: #666666; 36 83 line-height: 20px; 37 84 } 38 85 39 #customize-controls .submit { 40 text-align: center; 86 #customize-theme-controls { 87 -webkit-box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1); 88 box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1); 41 89 } 42 90 43 #customize-theme-controls > ul, 91 #customize-theme-controls .control-section { 92 border: none; 93 } 94 95 #customize-theme-controls .accordion-section-title { 96 color: #555555; 97 background-color: #fff; 98 border-bottom: 1px solid #eeeeee; 99 } 100 44 101 #customize-theme-controls .accordion-section-content { 45 margin: 0; 102 color: #555555; 103 background: white; 46 104 } 47 105 48 #customize-header-actions .button-primary { 49 float: right; 50 margin-top: 10px; 106 #customize-theme-controls .control-section:hover .accordion-section-title, 107 #customize-theme-controls .control-section .accordion-section-title:hover, 108 #customize-theme-controls .control-section.open .accordion-section-title, 109 #customize-theme-controls .control-section .accordion-section-title:focus { 110 color: #555555; 111 background: #f5f5f5; 51 112 } 52 113 53 #customize-header-actions .spinner { 54 margin-top: 16px; 55 margin-right: 4px; 114 .js .control-section:hover .accordion-section-title, 115 .js .control-section .accordion-section-title:hover, 116 .js .control-section.open .accordion-section-title, 117 .js .control-section .accordion-section-title:focus { 118 background: #f5f5f5; 56 119 } 57 120 58 .saving #customize-header-actions .spinner { 59 display: block; 121 #customize-theme-controls .control-section:hover .accordion-section-title::after, 122 #customize-theme-controls .control-section .accordion-section-title:hover::after, 123 #customize-theme-controls .control-section.open .accordion-section-title::after, 124 #customize-theme-controls .control-section .accordion-section-title:focus::after { 125 color: #555555; 60 126 } 61 127 128 #customize-theme-controls .control-section.open { 129 border-bottom: 1px solid #eeeeee; 130 } 131 132 #customize-theme-controls .control-section.open .accordion-section-title { 133 border-bottom-color: #eeeeee !important; 134 } 135 136 #customize-theme-controls .control-section:last-of-type.open, 137 #customize-theme-controls .control-section:last-of-type .accordion-section-title { 138 border-bottom-color: #ddd; 139 } 140 141 #customize-theme-controls > ul, 142 #customize-theme-controls .accordion-section-content { 143 margin: 0; 144 } 145 62 146 .customize-control { 63 147 width: 100%; 64 148 float: left; … … 66 150 margin-bottom: 8px; 67 151 } 68 152 69 .customize-control-title {70 display: block;71 line-height: 24px;72 font-weight: bold;73 }74 75 153 .customize-control select, 76 154 .customize-control input[type="text"], 77 155 .customize-control input[type="radio"], 78 .customize-control input[type="checkbox"], 79 .customize-control-color .color-picker, 80 .customize-control-checkbox label, 81 .customize-control-upload div { 156 .customize-control input[type="checkbox"] { 82 157 line-height: 28px; 83 158 } 84 159 … … 95 170 line-height: 28px; 96 171 } 97 172 173 .customize-control-title { 174 display: block; 175 font-size: 14px; 176 line-height: 24px; 177 font-weight: 600; 178 margin-bottom: 5px; 179 } 180 181 .customize-control-color .color-picker, 182 .customize-control-checkbox label, 183 .customize-control-upload div { 184 line-height: 28px; 185 } 186 98 187 .customize-control-checkbox input { 99 188 margin-right: 5px; 100 189 } … … 109 198 } 110 199 111 200 .customize-control-radio label { 112 line-height: 20px;201 line-height: 32px; 113 202 } 114 203 115 204 .customize-control-radio input { … … 121 210 height: 100%; 122 211 } 123 212 124 #customize-theme-controls .accordion-section-title:hover:after, 125 #customize-theme-controls .accordion-section-title:focus:after { 126 border -color: #eee transparent;213 .wp-full-overlay-sidebar { 214 background: #eeeeee; 215 border: none; 127 216 } 128 217 129 #customize-theme-controls .control-section:hover .accordion-section-title, 130 #customize-theme-controls .control-section .accordion-section-title:hover, 131 #customize-theme-controls .control-section.open .accordion-section-title, 132 #customize-theme-controls .control-section .accordion-section-title:focus { 133 color: #fff; 134 text-shadow: 0 -1px 0 #333; 135 background: #808080; 136 background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); 137 background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); 138 background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); 139 background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); 140 background-image: linear-gradient(to top, #6d6d6d, #808080); 141 border-left: 1px solid #808080; 142 border-right: 1px solid #808080; 218 .collapse-sidebar { 219 background-color: transparent !important; 220 border: none !important; 221 box-shadow: none !important; 222 border-radius: 0 !important; 143 223 } 144 224 145 #customize-theme-controls .control-section.accordion-section:hover, 146 #customize-theme-controls .control-section.accordion-section.open { 147 border-top-color: #808080; 225 .collapse-sidebar .collapse-sidebar-label { 226 color: #ccc; 148 227 } 149 228 150 #customize-theme-controls .control-section.open .accordion-section-title {151 border-bottom: 1px solid #6d6d6d;229 .collapse-sidebar .collapse-sidebar-arrow:before { 230 color: #aaa; 152 231 } 153 232 154 /* 155 * Style for custom settings 156 */ 233 .collapse-sidebar:hover .collapse-sidebar-label, 234 .collapse-sidebar:hover .collapse-sidebar-arrow:before { 235 color: #0074a2; 236 } 157 237 238 .collapse-sidebar:active, 239 .collapse-sidebar:active .collapse-sidebar-label, 240 .collapse-sidebar:active .collapse-sidebar-arrow:before { 241 text-shadow: none; 242 } 243 244 .collapsed .collapse-sidebar-arrow:before { 245 color: #888; 246 } 247 248 /* Style for custom settings */ 249 158 250 /* 159 251 * Dropdowns 160 252 */ … … 163 255 display: block; 164 256 position: relative; 165 257 cursor: pointer; 166 167 -webkit-border-radius: 3px;168 border-radius: 3px;169 258 } 170 259 171 260 .accordion-section .dropdown-content { … … 176 265 line-height: 16px; 177 266 margin-right: 16px; 178 267 padding: 4px 5px; 179 background-color: #eee; 180 border: 1px solid #ccc; 181 -webkit-border-radius: 3px 0 0 3px; 182 border-radius: 3px 0 0 3px; 183 268 border: 2px solid #eeeeee; 184 269 -webkit-user-select: none; 185 270 -moz-user-select: none; 186 271 user-select: none; … … 191 276 top: 0; 192 277 bottom: 0; 193 278 right: 0; 194 width: 15px; 195 196 border-color: #ccc; 197 border-style: solid; 198 border-width: 1px 1px 1px 0; 199 -webkit-border-radius: 0 3px 3px 0; 200 border-radius: 0 3px 3px 0; 279 width: 20px; 280 background: #eeeeee; 201 281 } 202 282 203 283 .customize-control .dropdown-arrow:after { 204 content: ''; 205 width: 0; 206 height: 0; 207 border-color: #ccc transparent; 208 border-style: solid; 209 border-width: 4px 4px 0 4px; 210 position: absolute; 211 top: 50%; 212 margin-top: -1px; 213 right: 4px; 214 z-index: 1; 284 content: "\f140"; 285 font: normal 20px/1 'dashicons'; 286 speak: none; 287 display: block; 288 padding: 0; 289 text-indent: 0; 290 text-align: center; 291 position: relative; 292 -webkit-font-smoothing: antialiased; 293 -moz-osx-font-smoothing: grayscale; 294 text-decoration: none !important; 295 color: #333; 215 296 } 216 297 217 .accordion-section .dropdown:hover .dropdown-content,218 .customize-control .dropdown:hover .dropdown-arrow {219 border-color: #aaa;220 }221 222 .accordion-section .dropdown:hover .dropdown-arrow:after {223 border-color: #aaa transparent;224 }225 226 298 .customize-control .dropdown-status { 299 color: #333; 300 background: #eeeeee; 227 301 display: none; 228 302 max-width: 112px; 229 color: #777;230 303 } 231 304 232 /* 233 * Color Picker 234 */ 305 /* Color Picker */ 235 306 .customize-control-color .color-picker-hex { 236 307 display: none; 237 308 } … … 246 317 } 247 318 248 319 .customize-control-color .dropdown .dropdown-content { 249 background-color: # fff;250 border: 1px solid rgba( 0, 0, 0, 0.15);320 background-color: #555555; 321 border: 1px solid rgba(0, 0, 0, 0.15); 251 322 } 252 323 253 324 .customize-control-color .dropdown:hover .dropdown-content { 254 border-color: rgba( 0, 0, 0, 0.25);325 border-color: rgba(0, 0, 0, 0.25); 255 326 } 256 327 328 .customize-control-color .iris-picker { 329 border-radius: 0 !important; 330 } 331 257 332 .accordion-section input[type="text"].color-picker-hex { 258 333 width: 65px; 259 334 font-family: monospace; … … 265 340 .accordion-section input[type="text"].color-picker-hex:focus::-webkit-input-placeholder { 266 341 color: transparent; 267 342 } 343 268 344 .accordion-section input[type="text"].color-picker-hex:-moz-placeholder { 269 345 color: #999; 270 346 } … … 308 384 } 309 385 310 386 .accordion-section .customize-control-image .library ul { 311 border-bottom: 1px solid #d fdfdf;387 border-bottom: 1px solid #ddd; 312 388 float: left; 313 389 width: 100%; 314 390 margin: 10px 0 0; 315 391 } 316 392 317 393 .accordion-section .customize-control-image .library li { 318 color: # 999;394 color: #ccc; 319 395 float: left; 320 padding: 3px 5px;396 padding: 3px 15px; 321 397 margin: 0; 322 border-style: solid; 323 border-color: transparent; 324 border-width: 1px 1px 0 1px; 398 border: 1px solid transparent; 325 399 } 326 400 327 401 .accordion-section .customize-control-image .library li.library-selected { 328 402 margin-bottom: -1px; 329 403 padding-bottom: 4px; 330 331 color: #777; 332 background: #fdfdfd; 333 border-color: #dfdfdf; 334 -webkit-border-radius: 3px 3px 0 0; 335 border-radius: 3px 3px 0 0 ; 404 color: #666666; 405 border-color: #ddd; 406 border-bottom-color: #fff; 336 407 } 337 408 338 .accordion-section .customize-control-image .library -content{339 display: none;409 .accordion-section .customize-control-image .library .thumbnail { 410 display: block; 340 411 width: 100%; 341 float: left;342 padding: 10px 0;343 412 } 344 413 345 .accordion-section .customize-control-image .library -content.library-selected{414 .accordion-section .customize-control-image .library .thumbnail img { 346 415 display: block; 416 max-width: 90%; 417 max-height: 80px; 418 margin: 5px auto; 419 padding: 2px; 420 background: #666666; 347 421 } 348 422 349 .accordion-section .customize-control-image .library .thumbnail { 350 display: block; 351 width: 100%; 423 .accordion-section .customize-control-image .library .thumbnail:hover img { 424 background-color: #2ea2cc; 352 425 } 353 426 354 .accordion-section .customize-control-image .library .thumbnail:hover img { 355 border-color: #21759b; 427 .accordion-section .customize-control-image .library-content { 428 display: none; 429 width: 100%; 430 float: left; 431 padding: 10px 0; 356 432 } 357 433 358 .accordion-section .customize-control-image .library .thumbnail img{434 .accordion-section .customize-control-image .library-content.library-selected { 359 435 display: block; 360 max-width: 90%;361 max-height: 80px;362 363 margin: 5px auto;364 padding: 4px;365 background: #fff;366 border: 1px solid #dfdfdf;367 436 } 368 437 369 438 .accordion-section .customize-control-upload .upload-fallback, … … 378 447 border: 3px dashed #dfdfdf; 379 448 margin: 5px auto; 380 449 text-align: center; 381 color: #777;382 450 position: relative; 383 451 cursor: default; 384 452 } … … 419 487 -webkit-overflow-scrolling: touch; 420 488 } 421 489 422 /** 423 * Handle cheaters. 424 */ 490 /** Handle cheaters. */ 425 491 body.cheatin { 426 492 min-width: 0; 427 493 background: #f9f9f9; … … 433 499 margin: 0 auto; 434 500 padding: 2em; 435 501 font-size: 14px; 436 background: # fff;502 background: #555555; 437 503 border: 1px solid #dfdfdf; 438 504 -webkit-border-radius: 3px; 439 border-radius: 505 border-radius: 3px; 440 506 } -
src/wp-admin/css/media.css
18 18 overflow: hidden; 19 19 } 20 20 21 #media-upload:after { /* clearfix */ 22 content: ""; 23 display: table; 24 clear: both; 25 } 26 27 #media-upload, 28 #media-upload .media-item .slidetoggle { 29 background: #fff; 30 } 31 32 #media-upload .slidetoggle { 33 border-top-color: #dfdfdf; 34 } 35 36 #media-upload input[type="radio"] { 37 padding: 0; 38 } 39 21 40 form { 22 41 margin: 1em; 23 42 } -
src/wp-admin/css/wp-admin-rtl.css
129 129 direction: ltr; 130 130 } 131 131 132 input[type=checkbox]:checked:before { 133 margin-left: 1px; 134 } 135 132 136 input[type="text"].ui-autocomplete-loading { 133 137 background: transparent url('../images/loading.gif') no-repeat left center; 134 138 } … … 246 250 247 251 #screen-meta-links { 248 252 margin-right: 0; 249 margin-left: 24px;253 margin-left: 5px; 250 254 } 251 255 252 256 #screen-meta { 253 margin-right: 5px; 254 margin-left: 15px; 257 margin: 0 0 -2px 20px; 255 258 } 256 259 257 260 #screen-options-link-wrap, … … 261 264 margin-right: 6px; 262 265 } 263 266 267 #screen-meta-links a { 268 left: 20px; 269 } 270 264 271 #screen-meta-links a.show-settings { 272 background-position: left -33px; 265 273 padding-right: 6px; 266 274 padding-left: 16px; 267 275 } 268 276 277 #wpbody-content #screen-meta-links a.show-settings { 278 padding: 1px 10px 0 0; 279 } 280 269 281 .toggle-arrow { 270 282 background-position: top right; 271 283 } … … 311 323 312 324 .contextual-help-tabs { 313 325 float: right; 326 margin-right: 4px; 327 width: 146px; 314 328 } 315 329 316 330 .contextual-help-tabs a { … … 326 340 .contextual-help-tabs .active, 327 341 .contextual-help-tabs-wrap { 328 342 border-left: 0; 329 border-right-width: 1px;343 border-right-width: 2px; 330 344 } 331 345 332 346 .help-tab-content { … … 350 364 ------------------------------------------------------------------------------*/ 351 365 352 366 .folded #wpcontent { 353 margin-left: 0;367 margin-left: inherit; 354 368 margin-right: 52px; 355 369 } 356 370 357 371 .folded.wp-admin #wpfooter { 358 margin-left: 15px;372 margin-left: inherit; 359 373 margin-right: 52px; 360 374 } 361 375 … … 369 383 left: 0; 370 384 } 371 385 372 #adminmenu li.wp-submenu {386 ul#adminmenu .wp-submenu { 373 387 left: auto; 374 right: 1 46px;388 right: 150px; 375 389 } 376 390 391 ul#adminmenu .wp-has-current-submenu .wp-submenu { 392 right: auto; 393 } 377 394 395 ul#adminmenu .wp-has-current-submenu ul > li > a { 396 padding-right: 12px; 397 } 398 399 ul#adminmenu a.wp-has-current-submenu:after, 400 ul#adminmenu > li.current > a.current:after { 401 right: auto; 402 left: 0; 403 } 404 378 405 .folded #adminmenu .wp-submenu.sub-open, 379 406 .folded #adminmenu .opensub .wp-submenu, 380 407 .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, … … 383 410 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 384 411 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { 385 412 left: auto; 386 right: 3 2px;413 right: 36px; 387 414 } 388 415 389 #adminmenu div.wp-menu-image,416 ul#adminmenu div.wp-menu-image, 390 417 .folded #adminmenu div.wp-menu-image { 391 418 float: right; 392 419 width: 30px; 393 420 } 394 421 395 #adminmenu .wp-submenu a,396 #adminmenu li li a,422 ul#adminmenu .wp-submenu a, 423 ul#adminmenu li li a, 397 424 .folded #adminmenu .wp-not-current-submenu li a { 398 425 padding-left: 0; 399 426 padding-right: 12px; 400 427 } 401 428 402 #adminmenu .wp-not-current-submenu li a {429 ul#adminmenu .wp-not-current-submenu li a { 403 430 padding-left: 0; 404 431 padding-right: 18px; 405 432 } … … 407 434 .wp-menu-arrow { 408 435 right: 0; 409 436 437 -webkit-transform: translate( -139px ); 410 438 -moz-transform: translate( -139px ); 411 -webkit-transform: translate( -139px );412 439 -o-transform: translate( -139px ); 413 440 -ms-transform: translate( -139px ); 414 441 transform: translate( -139px ); … … 418 445 right: -20px; 419 446 } 420 447 421 #adminmenu .wp-menu-arrow div {448 ul#adminmenu .wp-menu-arrow div { 422 449 left: -8px; 423 450 width: 16px; 424 451 } 425 452 426 #adminmenu li.wp-not-current-submenu .wp-menu-arrow { 453 ul#adminmenu li.wp-not-current-submenu .wp-menu-arrow { 454 -webkit-transform: translate( -138px ); 427 455 -moz-transform: translate( -138px ); 428 -webkit-transform: translate( -138px );429 456 -o-transform: translate( -138px ); 430 457 -ms-transform: translate( -138px ); 431 458 transform: translate( -138px ); 432 459 } 433 460 434 461 .folded #adminmenu li .wp-menu-arrow { 462 -webkit-transform: translate( -26px ); 435 463 -moz-transform: translate( -26px ); 436 -webkit-transform: translate( -26px );437 464 -o-transform: translate( -26px ); 438 465 -ms-transform: translate( -26px ); 439 466 transform: translate( -26px ); 440 467 } 441 468 442 #adminmenu .wp-not-current-submenu .wp-menu-arrow div {469 ul#adminmenu .wp-not-current-submenu .wp-menu-arrow div { 443 470 border-style: solid solid none none; 444 471 border-width: 1px 1px 0 0; 445 472 } 446 473 447 #adminmenu .wp-menu-image img {474 ul#adminmenu .wp-menu-image img { 448 475 padding: 7px 7px 0 0; 449 476 } 450 477 451 #adminmenu .wp-submenu .wp-submenu-head {478 ul#adminmenu .wp-submenu .wp-submenu-head { 452 479 padding: 5px 10px 5px 4px; 453 480 -webkit-border-top-right-radius: 0; 454 -webkit-border-top-left-radius: 3px;455 481 border-top-right-radius: 0; 456 border-top-left-radius: 3px;457 482 } 458 483 459 484 .folded #adminmenu li.wp-has-current-submenu .wp-submenu { … … 469 494 border-top-left-radius: 3px; 470 495 } 471 496 472 #adminmenu .awaiting-mod, 473 #adminmenu span.update-plugins, 497 ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 498 right: auto; 499 left: 0; 500 } 501 502 ul#adminmenu .awaiting-mod, 503 ul#adminmenu span.update-plugins, 474 504 #sidemenu li a span.update-plugins { 475 505 font-family: Tahoma, Arial, sans-serif; 476 506 margin-left: 0; … … 481 511 float: right; 482 512 } 483 513 514 #collapse-button div:after { 515 left: 3px; 516 -webkit-transform: rotate(180deg); 517 -ms-transform: rotate(180deg); 518 transform: rotate(180deg); 519 } 520 521 .folded #collapse-button div:after { 522 -webkit-transform: rotate(0deg); 523 -ms-transform: rotate(0deg); 524 transform: rotate(0deg); 525 } 526 484 527 /* Auto-folding of the admin menu */ 485 528 @media only screen and (max-width: 900px) { 486 529 .auto-fold #wpcontent { … … 506 549 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 507 550 .no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu { 508 551 left: auto; 509 right: 3 2px;552 right: 36px; 510 553 } 511 554 512 555 .auto-fold #adminmenu .wp-not-current-submenu li a { … … 515 558 } 516 559 517 560 .auto-fold #adminmenu li .wp-menu-arrow { 561 -webkit-transform: translate( -27px ); 518 562 -moz-transform: translate( -27px ); 519 -webkit-transform: translate( -27px );520 563 -o-transform: translate( -27px ); 521 564 -ms-transform: translate( -27px ); 522 565 transform: translate( -27px ); … … 534 577 border-top-right-radius: 0; 535 578 border-top-left-radius: 3px; 536 579 } 580 581 .auto-fold #collapse-button div:after { 582 -webkit-transform: rotate(0deg); 583 -ms-transform: rotate(0deg); 584 transform: rotate(0deg); 585 } 586 587 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 588 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 589 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 590 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 591 } 537 592 } 538 593 539 594 /* List table styles */ … … 541 596 font-family: Tahoma, Arial, sans-serif; 542 597 } 543 598 544 .post-com-count {545 background-image: url('../images/bubble_bg-rtl.gif');546 }547 548 599 .column-response .post-com-count { 549 600 float: right; 550 601 margin-right: 0; … … 762 813 763 814 .view-switch { 764 815 float: left; 816 margin-left: 16px; 817 margin-right: 8px; 765 818 } 766 819 820 .view-switch>a:before { 821 float: right !important; 822 margin-left: 5px; 823 margin-right: 0; 824 } 825 826 .view-switch>a+a:before { 827 margin-left: none; 828 margin-right: 5px; 829 } 830 767 831 .filter { 768 832 float: right; 769 833 margin: -5px 10px 0 0; … … 889 953 float: right; 890 954 } 891 955 956 p.submit, 892 957 .submitbox .submit { 893 958 text-align: right; 894 959 } … … 902 967 margin-left: 4px; 903 968 } 904 969 970 #post-body #visibility:before, 971 .curtime #timestamp:before { 972 padding-right: 0; 973 padding-left: 4px; 974 } 975 976 #misc-publishing-actions label[for="post_status"]:before { 977 padding-right: 0; 978 padding-left: 8px; 979 } 980 905 981 #normal-sortables .postbox .submit { 906 982 float: left; 907 983 } … … 910 986 margin: 0 125px 0 5px; 911 987 } 912 988 989 .category-tabs { 990 margin-bottom: 3px; 991 } 992 913 993 #side-sortables .comments-box thead th, 914 994 #normal-sortables .comments-box thead th { 915 995 font-style: normal; … … 946 1026 .curtime #timestamp { 947 1027 background-position: right top; 948 1028 padding-left: 0; 949 padding-right: 18px;950 1029 } 951 1030 952 1031 .compat-attachment-fields th { … … 1108 1187 1109 1188 label.post-format-icon { 1110 1189 margin-left: 0; 1111 margin-right: 5px;1112 padding-left: 0 px;1113 padding-right: 21px;1190 margin-right: 0; 1191 padding-left: 0; 1192 padding-right: 0; 1114 1193 } 1115 1194 1116 .post-format-icon.post-format-standard { 1117 background-position: 100% 0; 1195 .post-format-icon:before { 1196 margin-left: 7px; 1197 margin-right: 0; 1118 1198 } 1119 1199 1120 .post-format-icon.post-format-image {1121 background-position: 100% -32px;1122 }1123 1124 .post-format-icon.post-format-gallery {1125 background-position: 100% -64px;1126 }1127 1128 .post-format-icon.post-format-audio {1129 background-position: 100% -96px;1130 }1131 1132 .post-format-icon.post-format-video {1133 background-position: 100% -128px;1134 }1135 1136 .post-format-icon.post-format-chat {1137 background-position: 100% -160px;1138 }1139 1140 .post-format-icon.post-format-status {1141 background-position: 100% -192px;1142 }1143 1144 .post-format-icon.post-format-aside {1145 background-position: 100% -224px;1146 }1147 1148 .post-format-icon.post-format-quote {1149 background-position: 100% -256px;1150 }1151 1152 .post-format-icon.post-format-link {1153 background-position: 100% -288px;1154 }1155 1156 1200 /*------------------------------------------------------------------------------ 1157 1201 12.0 - Categories 1158 1202 ------------------------------------------------------------------------------*/ … … 1426 1470 margin: 2px 0 5px 3px; 1427 1471 } 1428 1472 1473 #submitcomment #timestamp:before { 1474 left: 1px; 1475 } 1476 1477 .post-com-count:after { /* draw bubble connector using CSS! */ 1478 margin-left: auto; 1479 margin-right: 8px; 1480 border-right: none !important; 1481 border-left: 5px solid transparent; 1482 } 1483 1484 th .comment-grey-bubble:before { 1485 content: '\f101'; /* todo: should be changed to a rtl variant - mitcho */ 1486 left: auto; 1487 right: -4px; 1488 } 1489 1490 #the-comment-list .unapproved th.check-column input { 1491 margin-left: 0; 1492 margin-right: 4px; 1493 } 1494 1495 1429 1496 /*------------------------------------------------------------------------------ 1430 1497 16.0 - Themes 1431 1498 ------------------------------------------------------------------------------*/ … … 1563 1630 margin: 0 0 -1px 6px; 1564 1631 } 1565 1632 1633 .wrap h2.nav-tab-wrapper, 1634 .wrap h3.nav-tab-wrapper { 1635 padding-left: 0; 1636 padding-right: 10px; 1637 } 1638 1566 1639 h2 .nav-tab { 1567 1640 font-family: Tahoma, Arial, sans-serif; 1568 1641 } … … 1578 1651 } 1579 1652 1580 1653 #wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title { 1581 padding-right: 0;1654 padding-right: 9px; 1582 1655 padding-left: 12px; 1583 1656 } 1584 1657 1658 .plugin-update-tr .update-message:before { 1659 margin: 0 -2px 0 8px; 1660 } 1585 1661 1662 1586 1663 /*------------------------------------------------------------------------------ 1587 1664 18.0 - Users 1588 1665 ------------------------------------------------------------------------------*/ … … 1606 1683 19.0 - Tools 1607 1684 ------------------------------------------------------------------------------*/ 1608 1685 1686 .press-this .posting { 1687 margin-right: 0; 1688 margin-left: 252px; 1689 } 1690 1691 .press-this #publish, 1692 .press-this-sidebar { 1693 float: left; 1694 } 1695 1696 .press-this #header-logo, 1697 .press-this #wphead h1 { 1698 float: right; 1699 } 1700 1701 .press-this .wp_themeSkin .mceStatusbar a.mceResize { 1702 background: transparent url('../images/resize-rtl.gif') no-repeat scroll right bottom; 1703 width: 12px; 1704 position: relative; 1705 top: -1px; 1706 } 1707 1708 .pressthis a span:before { 1709 padding-left: 8px; 1710 } 1711 1609 1712 .pressthis a span { 1610 background-position: right 5px; 1611 padding: 8px 27px 8px 11px; 1713 padding: 0px 3px 8px 12px; 1612 1714 } 1613 1715 1614 1716 .pressthis a:after { … … 1660 1762 1661 1763 #wpcontent, 1662 1764 #wpfooter { 1663 margin-right: 165px; 1765 padding-left: inherit; 1766 margin-right: 170px; 1664 1767 } 1665 1768 1666 1769 /*------------------------------------------------------------------------------ … … 1706 1809 float: right; 1707 1810 } 1708 1811 1709 .about-wrap .feature-section.two-col div,1710 1812 .about-wrap .feature-section.three-col div { 1711 1813 margin-right: 0; 1712 1814 margin-left: 4.999999999%; 1713 1815 float: right; 1714 1816 } 1715 1817 1716 .about-wrap .feature-section.col .last-feature { 1818 .about-wrap .feature-section.three-col h4 { 1819 text-align: right; 1820 } 1821 1822 .about-wrap .feature-section.three-col img { 1823 margin-right: 5px; 1717 1824 margin-left: 0; 1718 1825 } 1719 1826 1720 .about-wrap .feature-section div p img { 1721 float: left; 1827 .about-wrap .feature-section.three-col .last-feature { 1722 1828 margin-left: 0; 1723 margin-right: 10px;1724 1829 } 1725 1830 1831 .about-wrap .feature-section img { 1832 margin: 0 0 10px 0.7%; 1833 } 1834 1835 .about-wrap .feature-section.images-stagger-right img { 1836 float: left; 1837 margin: 0 2em 12px 5px; 1838 } 1839 1840 .about-wrap .feature-section.images-stagger-left img { 1841 float: right; 1842 margin: 0 5px 12px 2em; 1843 } 1844 1726 1845 .about-wrap li.wp-person, 1727 1846 .about-wrap li.wp-person img.gravatar { 1728 1847 float: right; … … 1730 1849 margin-left: 10px; 1731 1850 } 1732 1851 1852 @media only screen and (max-width: 768px) { 1853 .about-wrap .feature-section img.image-66 { 1854 float: none; 1855 } 1733 1856 1857 .about-wrap .feature-section.images-stagger-right img.image-66 { 1858 margin-right: 3px; 1859 } 1860 1861 .about-wrap .feature-section.images-stagger-left img.image-66 { 1862 margin-left: 3px; 1863 } 1864 } 1865 1734 1866 /*------------------------------------------------------------------------------ 1735 1867 23.0 - Misc 1736 1868 ------------------------------------------------------------------------------*/ … … 1763 1895 1764 1896 } 1765 1897 .tagchecklist span a { 1766 margin: 4px -10px 0 0;1898 margin: 0 -17px 0 0; 1767 1899 float: right; 1768 1900 } 1769 1901 … … 1871 2003 .wp-full-overlay-sidebar:after { 1872 2004 right: auto; 1873 2005 left: 0; 1874 box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1); 2006 -webkit-box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1); 2007 box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1); 1875 2008 } 1876 2009 1877 2010 .wp-full-overlay.collapsed, … … 1944 2077 float: right; 1945 2078 } 1946 2079 1947 #adminmenu {2080 ul#adminmenu { 1948 2081 clear: right; 1949 2082 } 1950 2083 … … 2047 2180 2048 2181 .wrap { 2049 2182 margin-right: 0; 2050 margin -left: 15px;2183 margin: 10px 2px 0 20px; 2051 2184 } 2052 2185 2053 2186 .wrap h2, … … 2153 2286 2154 2287 /* Recent Comments */ 2155 2288 #the-comment-list .comment-item { 2156 padding: 1em 70px 1em 10px;2289 padding: 1em 10px 1em 10px; 2157 2290 } 2158 2291 2159 2292 #the-comment-list .comment-item .avatar { 2160 2293 float: right; 2161 margin-left: 0;2162 margin-right: -60px;2294 margin-left: 10px; 2295 margin-right: 0; 2163 2296 } 2164 2297 2165 2298 /* Feeds */ … … 2190 2323 margin: 4px 0 0 6px; 2191 2324 } 2192 2325 2326 #dashboard_quick_press .input-text-wrap { 2327 margin-right: 0; 2328 margin-left: 1px; 2329 } 2330 2331 #dashboard_quick_press .wp-media-buttons, 2332 #dashboard_quick_press .textarea-wrap { 2333 margin-left: 0; 2334 margin-right: 1px; 2335 } 2336 2193 2337 /* Recent Drafts */ 2194 2338 #dashboard_recent_drafts h4 abbr { 2195 2339 font-family: Tahoma, Arial, sans-serif; … … 2646 2790 float: left; 2647 2791 } 2648 2792 2793 .plugin-editor-php #submit, 2794 .theme-editor-php #submit { 2795 float: right; 2796 } 2797 2649 2798 #template textarea, 2650 2799 #docs-list { 2651 2800 direction: ltr; … … 2669 2818 padding-left: 25px; 2670 2819 } 2671 2820 2821 /* Meta/post boxes */ 2822 2823 .js .meta-box-sortables .postbox:hover .handlediv:before { 2824 left: 12px; 2825 right: auto; 2826 } 2827 .js #dashboard-widgets h3 .postbox-title-action { 2828 left: 33px; 2829 right: auto; 2830 } 2831 2672 2832 /* widgets */ 2673 2833 /* 2 column liquid layout */ 2674 2834 div.widget-liquid-left { … … 2716 2876 float: left; 2717 2877 } 2718 2878 2719 /* Press This */ 2720 .press-this-sidebar { 2721 float: left; 2879 .widgets-holder-wrap .sidebar-name-arrow { 2880 margin: -1px 0 0 26px; 2722 2881 } 2723 2882 2724 .press-this #header-logo,2725 .press-this #wphead h1 {2726 float: right;2727 }2728 2729 2883 /* RTL */ 2730 2884 .ltr { 2731 2885 direction: ltr; … … 2793 2947 (-o-min-device-pixel-ratio: 5/4), 2794 2948 (-webkit-min-device-pixel-ratio: 1.25), 2795 2949 (min-resolution: 120dpi) { 2796 .post-com-count {2797 background-image: url('../images/bubble_bg-rtl-2x.gif');2798 background-size: 18px 100px;2799 }2800 2950 2801 #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { 2951 #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize, 2952 .press-this .wp_themeSkin .mceStatusbar a.mceResize { 2802 2953 background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom; 2803 2954 background-size: 11px 11px; 2804 2955 } … … 2823 2974 background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom; 2824 2975 } 2825 2976 2826 .wp-slider .ui-slider-handle:before {2827 background-image: url(../images/arrows-pr-2x.png);2828 background-size: 16px 102px;2829 }2830 2831 2977 } 2832 2978 2833 2979 /* =Localized CSS -
src/wp-admin/css/wp-admin.css
53 53 min-height: 100%; 54 54 width: 100%; 55 55 position: relative; 56 -webkit-font-smoothing: subpixel-antialiased; 56 57 } 57 58 58 59 #wpcontent { … … 61 62 62 63 #wpcontent, 63 64 #wpfooter { 64 margin-left: 1 65px;65 margin-left: 170px; 65 66 } 66 67 67 68 .folded #wpcontent, 68 69 .folded #wpfooter { 69 margin-left: 5 2px;70 margin-left: 56px; 70 71 } 71 72 72 73 #wpbody-content { 73 74 padding-bottom: 65px; 74 75 float: left; 75 76 width: 100%; 77 overflow: visible !important; 76 78 } 77 79 78 80 #adminmenuback, 79 81 #adminmenuwrap, 80 82 #adminmenu, 81 83 #adminmenu .wp-submenu { 82 width: 1 45px;84 width: 150px; 83 85 } 84 86 85 87 #adminmenuback { … … 91 93 92 94 #adminmenu { 93 95 clear: left; 94 margin: 0;96 margin: 12px 0 0; 95 97 padding: 0; 96 98 list-style: none; 97 99 } … … 100 102 .folded #adminmenuwrap, 101 103 .folded #adminmenu, 102 104 .folded #adminmenu li.menu-top { 103 width: 3 2px;105 width: 36px; 104 106 } 105 107 106 108 /* inner 2 column liquid layout */ … … 212 214 width: auto; 213 215 display: block; 214 216 font-size: 14px; 215 font-weight: bold;217 font-weight: 600; 216 218 padding: 15px 23px 14px; 217 219 background: #f1f1f1; 218 220 color: #21759b; … … 236 238 } 237 239 238 240 /* include margin and padding in the width calculation of input and textarea */ 241 input, 239 242 input[type="text"], 240 243 input[type="password"], 241 244 input[type="number"], … … 247 250 -webkit-box-sizing: border-box; 248 251 -ms-box-sizing: border-box; /* ie8 only */ 249 252 box-sizing: border-box; 253 -webkit-border-radius: 0; 254 border-radius: 0; 250 255 } 251 256 252 257 input[type="checkbox"], 253 258 input[type="radio"] { 254 vertical-align: text-top; 255 padding: 0; 256 margin: 1px 0 0; 259 border-width: 1px; 260 border-style: solid; 261 clear: none; 262 cursor: pointer; 263 display: inline-block; 264 line-height: 0; 265 height: 16px; 266 margin: -4px 4px 0 0; 267 outline: 0; 268 padding: 0 !important; 269 text-align: center; 270 vertical-align: middle; 271 width: 16px; 272 min-width: 16px; 273 -webkit-appearance: none; 274 -webkit-box-sizing: border-box; 275 box-sizing: border-box; 257 276 } 258 277 278 td > input[type="checkbox"], 279 .wp-admin p input[type=checkbox], 280 .wp-admin p input[type=radio] { 281 margin-top: 0; 282 } 283 284 .wp-admin p label input[type=checkbox] { 285 margin-top: -4px; 286 } 287 288 .wp-admin p label input[type=radio] { 289 margin-top: -2px; 290 } 291 292 input[type="checkbox"] { 293 border-radius: 0; 294 } 295 296 input[type=radio] { 297 border-radius: 50%; 298 margin-right: 4px; 299 line-height: 10px; 300 } 301 302 input[type=checkbox]:checked:before, 303 input[type=radio]:checked:before { 304 float: left; 305 display: inline-block; 306 vertical-align: middle; 307 width: 16px; 308 font: normal 21px/1 'dashicons'; 309 speak: none; 310 -webkit-font-smoothing: antialiased; 311 -moz-osx-font-smoothing: grayscale; 312 } 313 314 input[type=checkbox]:checked:before { 315 content: '\f147'; 316 margin: -3px 0 0 -4px; 317 } 318 319 input[type=radio]:checked:before { 320 content: '\2022'; 321 text-indent: -9999px; 322 border-radius: 50px; 323 font-size: 24px; 324 width: 6px; 325 height: 6px; 326 margin: 4px; 327 line-height: 16px; 328 } 329 330 @-moz-document url-prefix() { 331 input[type=checkbox], 332 input[type=radio], 333 .form-table input.tog { 334 margin-bottom: -1px; 335 } 336 } 337 338 /* Search */ 259 339 input[type="search"] { 260 340 -webkit-appearance: textfield; 261 341 } … … 273 353 } 274 354 275 355 body { 276 font-family: sans-serif;277 font-size: 1 2px;356 font-family: "Open Sans", sans-serif; 357 font-size: 13px; 278 358 line-height: 1.4em; 279 359 min-width: 600px; 280 360 } … … 309 389 line-height: inherit; 310 390 } 311 391 392 textarea { 393 overflow: auto; 394 } 395 396 textarea, 312 397 input, 313 398 select { 399 font-size: 14px; 400 padding: 3px 5px; 314 401 line-height: 15px; 315 402 } 316 403 404 textarea { 405 padding: 2px 6px; 406 line-height: 1.4; 407 } 408 317 409 a, 318 410 input[type="text"], 319 411 input[type="password"], … … 327 419 outline: 0; 328 420 } 329 421 422 .wp-admin input[type="file"] { 423 border: none; 424 background: none; 425 padding: 8px 0 0; 426 } 427 330 428 a:focus, 331 429 a:active { 332 430 outline: thin dotted; … … 351 449 content: none; 352 450 } 353 451 354 p { 452 p, 453 .wp_attachment_details label[for="content"] { 454 font-size: 13px; 455 line-height: 1.5; 355 456 margin: 1em 0; 356 457 } 357 458 … … 368 469 margin-bottom: 6px; 369 470 } 370 471 371 textarea,372 472 input, 373 473 select { 374 474 margin: 1px; 375 padding: 3px ;475 padding: 3px 5px; 376 476 } 377 477 378 478 h1, … … 382 482 h5, 383 483 h6 { 384 484 display: block; 385 font-weight: bold;485 font-weight: 600; 386 486 } 387 487 388 488 h1 { … … 396 496 } 397 497 398 498 h3 { 399 font-size: 1. 17em;499 font-size: 1.3em; 400 500 margin: 1em 0; 401 501 } 402 502 … … 458 558 font-family: Consolas, Monaco, monospace; 459 559 } 460 560 561 input.code { 562 padding-top: 6px; 563 } 564 565 textarea.code { 566 line-height: 1.4; 567 padding: 4px 6px 1px 6px; 568 } 569 461 570 kbd, 462 571 code { 463 padding: 1px 3px;572 padding: 3px 5px 2px 5px; 464 573 margin: 0 1px; 465 font-size: 1 1px;574 font-size: 13px; 466 575 } 467 576 468 577 .subsubsub { 469 578 list-style: none; 470 margin: 8px 0 5px;579 margin: 8px 0 0; 471 580 padding: 0; 472 font-size: 1 2px;581 font-size: 13px; 473 582 float: left; 474 583 } 475 584 … … 486 595 } 487 596 488 597 .subsubsub a.current { 489 font-weight: bold;598 font-weight: 600; 490 599 border: none; 491 600 } 492 601 … … 497 606 white-space: nowrap; 498 607 } 499 608 500 .widefat,501 div.updated,502 div.error,503 .wrap .add-new-h2,504 609 textarea, 505 610 input[type="text"], 506 611 input[type="password"], … … 511 616 input[type="tel"], 512 617 input[type="url"], 513 618 select, 514 .tablenav .tablenav-pages a,515 619 .tablenav-pages span.current, 516 620 #titlediv #title, 517 .postbox,518 621 #postcustomstuff table, 519 622 #postcustomstuff input, 520 623 #postcustomstuff textarea, 521 624 .imgedit-menu div, 522 625 .plugin-update-tr .update-message, 523 626 #poststuff .inside .the-tagcloud, 524 .login form,525 #login_error,526 .login .message,527 #menu-management .menu-edit,528 627 .nav-menus-php .list-container, 529 628 .menu-item-handle, 530 629 .link-to-original, 531 630 .nav-menus-php .major-publishing-actions .form-invalid, 532 .press-this #message,533 631 #TB_window, 534 632 .tbtitle, 535 633 .highlight, 536 .feature-filter,537 #widget-list .widget-top,538 634 .editwidget .widget-inside { 539 -webkit-border-radius: 3px;540 border-radius: 3px;541 635 border-width: 1px; 542 636 border-style: solid; 543 637 } … … 558 652 text-decoration: none; 559 653 } 560 654 561 .widefat thead th:first-of-type {562 -webkit-border-top-left-radius: 3px;563 border-top-left-radius: 3px;564 }565 .widefat thead th:last-of-type {566 -webkit-border-top-right-radius: 3px;567 border-top-right-radius: 3px;568 }569 .widefat tfoot th:first-of-type {570 -webkit-border-bottom-left-radius: 3px;571 border-bottom-left-radius: 3px;572 }573 .widefat tfoot th:last-of-type {574 -webkit-border-bottom-right-radius: 3px;575 border-bottom-right-radius: 3px;576 }577 578 655 .widefat td, 579 656 .widefat th { 580 border-width: 1px 0; 581 border-style: solid; 657 padding: 8px 10px; 582 658 } 583 659 .widefat tfoot th { 584 660 border-bottom: none; … … 589 665 } 590 666 591 667 .widefat td { 592 font-size: 12px;593 padding: 4px 7px 2px;594 668 vertical-align: top; 595 669 } 596 670 671 .widefat td, 597 672 .widefat td p, 598 673 .widefat td ol, 599 674 .widefat td ul { 600 font-size: 12px; 675 font-size: 13px; 676 line-height: 1.5em; 601 677 } 602 678 603 679 .widefat th { 604 padding: 7px 7px 8px;605 680 text-align: left; 606 681 line-height: 1.3em; 607 682 font-size: 14px; … … 619 694 vertical-align: top; 620 695 } 621 696 697 .widefat th input[type=checkbox] { 698 margin-top: -1px; 699 } 700 622 701 .widefat tbody th.check-column { 623 702 padding: 9px 0 22px; 624 703 } … … 627 706 padding-top: 8px; 628 707 } 629 708 630 .widefat thead .check-column, 631 .widefat tfoot .check-column { 632 padding: 10px 0 0; 709 .widefat thead th.check-column, 710 .widefat tbody th.check-column, 711 .widefat tfoot th.check-column { 712 padding: 11px 0 0 3px; 633 713 } 634 714 715 .widefat thead th.check-column { 716 padding-top: 10px; 717 } 718 719 #update-plugins-table tbody th.check-column, 720 .plugins tbody th.check-column, 721 .plugins tbody, 722 .plugins .inactive.update th.check-column { 723 padding: 8px 0 0 2px; 724 } 725 726 .plugins tbody th.check-column input[type=checkbox] { 727 margin-top: 4px; 728 } 729 730 #update-plugins-table tbody td p { 731 margin-top: 0; 732 } 733 734 #update-plugins-table tbody td p strong { 735 font-size: 14px; 736 } 737 738 .plugins thead th.check-column, 739 .plugins tfoot th.check-column, 740 .plugins .inactive th.check-column, 741 #update-plugins-table thead th.check-column, 742 #update-plugins-table tfoot th.check-column { 743 padding-left: 6px; 744 } 745 746 #update-plugins-table thead th.check-column, 747 #update-plugins-table tfoot th.check-column { 748 padding-top: 11px; 749 } 750 751 .update-php div.updated, 752 .update-php div.error { 753 margin-left: 0; 754 } 755 635 756 .no-js .widefat thead .check-column input, 636 757 .no-js .widefat tfoot .check-column input { 637 758 display: none; … … 649 770 } 650 771 651 772 .wrap { 652 margin: 4px 15px 0 0;773 margin: 10px 20px 0 2px; 653 774 } 654 775 655 776 div.updated, … … 670 791 margin: 5px 0 15px; 671 792 } 672 793 794 div.updated, 795 .login .message, 796 .press-this #message { 797 border: none; 798 padding: 1px 12px; 799 } 800 801 div.error, 802 .login #login_error { 803 border: none; 804 } 805 806 div.error { 807 padding: 1px 12px; 808 } 809 673 810 .wrap h2, 674 811 .subtitle { 675 812 font-weight: normal; 676 813 margin: 0; 677 text-shadow: #fff 0 1px 0;678 814 } 679 815 680 816 .wrap h2 { 681 817 font-size: 23px; 818 font-weight: 400; 682 819 padding: 9px 15px 4px 0; 683 820 line-height: 29px; 684 821 } … … 688 825 padding-left: 25px; 689 826 } 690 827 691 .wrap .add-new-h2 { 692 font-family: sans-serif; 828 .wrap .add-new-h2, 829 .wrap .add-new-h2:active, 830 #add-new-comment a { 831 font-family: "Open Sans", sans-serif; 693 832 margin-left: 4px; 694 padding: 3px 8px;833 padding: 4px 8px; 695 834 position: relative; 696 835 top: -3px; 697 836 text-decoration: none; 698 font-size: 12px; 699 border: 0 none; 837 border: none; 838 border-radius: 2px; 839 text-shadow: none; 840 font-weight: 600; 841 font-size: 13px; 700 842 } 701 843 702 844 .wrap h2.long-header { … … 744 886 input[type="tel"]:focus, 745 887 input[type="url"]:focus, 746 888 select:focus { 747 -webkit-box-shadow: 1px1px 2px rgba(0,0,0,0.1);748 box-shadow: 1px1px 2px rgba(0,0,0,0.1);889 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1); 890 box-shadow: 0 1px 2px rgba(0,0,0,0.1); 749 891 } 750 892 751 893 input[readonly] { … … 778 920 .widefat th, 779 921 .quicktags, 780 922 .search { 781 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times,serif;923 font-family: "Open Sans", sans-serif; 782 924 } 783 925 926 .widget .widget-top, 927 .postbox h3, 928 .stuffbox h3, 929 .control-section .accordion-section-title, 930 h3.dashboard-widget-title, 931 h3.dashboard-widget-title span, 932 h3.dashboard-widget-title small, 933 .sidebar-name, 934 #nav-menu-header, 935 #nav-menu-footer, 936 .menu-item-handle, 937 .checkbox, 938 .side-info, 939 #your-profile #rich_editing, 940 .widefat thead th, 941 .widefat tfoot th { 942 line-height: 1.4em; 943 } 944 784 945 h2 .nav-tab, 785 946 .wrap h2, 786 947 .subtitle, 787 948 .login form .input { 788 font-family: " HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;949 font-family: "Open Sans", sans-serif; 789 950 } 790 951 791 952 .quicktags, … … 794 955 } 795 956 796 957 .icon32 { 797 float: left; 798 height: 34px; 799 margin: 7px 8px 0 0; 800 width: 36px; 958 display: none; 801 959 } 802 960 803 961 .icon16 { … … 808 966 float: left; 809 967 } 810 968 969 /* New Menu icons */ 970 971 .icon16:before { 972 font: normal 20px/1 'dashicons' !important; 973 speak: none; 974 padding: 6px 0; 975 height: 34px; 976 width: 20px; 977 display: inline-block; 978 -webkit-font-smoothing: antialiased; 979 -moz-osx-font-smoothing: grayscale; 980 -moz-transition: all .1s ease-in-out; 981 -webkit-transition: all .1s ease-in-out; 982 -moz-transition: all .1s ease-in-out; 983 transition: all .1s ease-in-out; 984 } 985 986 .icon16.icon-dashboard:before, 987 #adminmenu .menu-icon-dashboard div.wp-menu-image:before { 988 content: '\f226'; 989 } 990 991 .icon16.icon-post:before, 992 #adminmenu .menu-icon-post div.wp-menu-image:before { 993 content: '\f109'; 994 } 995 996 .icon16.icon-media:before, 997 #adminmenu .menu-icon-media div.wp-menu-image:before { 998 content: '\f104'; 999 } 1000 1001 .icon16.icon-links:before, 1002 #adminmenu .menu-icon-links div.wp-menu-image:before { 1003 content: '\f103'; 1004 } 1005 1006 .icon16.icon-page:before, 1007 #adminmenu .menu-icon-page div.wp-menu-image:before { 1008 content: '\f105'; 1009 } 1010 1011 .icon16.icon-comments:before, 1012 #adminmenu .menu-icon-comments div.wp-menu-image:before { 1013 content: '\f101'; 1014 margin-top: 1px; 1015 } 1016 1017 .icon16.icon-appearance:before, 1018 #adminmenu .menu-icon-appearance div.wp-menu-image:before { 1019 content: '\f100'; 1020 } 1021 1022 .icon16.icon-plugins:before, 1023 #adminmenu .menu-icon-plugins div.wp-menu-image:before { 1024 content: '\f106'; 1025 } 1026 1027 .icon16.icon-users:before, 1028 #adminmenu .menu-icon-users div.wp-menu-image:before { 1029 content: '\f110'; 1030 } 1031 1032 .icon16.icon-tools:before, 1033 #adminmenu .menu-icon-tools div.wp-menu-image:before { 1034 content: '\f107'; 1035 } 1036 1037 .icon16.icon-settings:before, 1038 #adminmenu .menu-icon-settings div.wp-menu-image:before { 1039 content: '\f108'; 1040 } 1041 1042 .icon16.icon-site:before, 1043 #adminmenu .menu-icon-site div.wp-menu-image:before { 1044 content: '\f112' 1045 } 1046 1047 .icon16.icon-generic:before, 1048 #adminmenu .menu-icon-generic div.wp-menu-image:before { 1049 content: '\f111'; 1050 } 1051 1052 /* hide background-image for icons above */ 1053 .icon16.icon-dashboard, 1054 .menu-icon-dashboard div.wp-menu-image, 1055 .icon16.icon-post, 1056 .menu-icon-post div.wp-menu-image, 1057 .icon16.icon-media, 1058 .menu-icon-media div.wp-menu-image, 1059 .icon16.icon-links, 1060 .menu-icon-links div.wp-menu-image, 1061 .icon16.icon-page, 1062 .menu-icon-page div.wp-menu-image, 1063 .icon16.icon-comments, 1064 .menu-icon-comments div.wp-menu-image, 1065 .icon16.icon-appearance, 1066 .menu-icon-appearance div.wp-menu-image, 1067 .icon16.icon-plugins, 1068 .menu-icon-plugins div.wp-menu-image, 1069 .icon16.icon-users, 1070 .menu-icon-users div.wp-menu-image, 1071 .icon16.icon-tools, 1072 .menu-icon-tools div.wp-menu-image, 1073 .icon16.icon-settings, 1074 .menu-icon-settings div.wp-menu-image, 1075 .icon16.icon-site, 1076 .menu-icon-site div.wp-menu-image, 1077 .icon16.icon-generic, 1078 .menu-icon-generic div.wp-menu-image { 1079 background-image: none !important; 1080 } 1081 811 1082 .key-labels label { 812 1083 line-height: 24px; 813 1084 } 814 1085 1086 strong, b { 1087 font-weight: 600; 1088 } 1089 815 1090 .pre { 816 1091 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 817 1092 white-space: pre-wrap; /* css-3 */ … … 821 1096 .howto { 822 1097 font-style: italic; 823 1098 display: block; 824 font-family: sans-serif;1099 font-family: "Open Sans", sans-serif; 825 1100 } 826 1101 827 1102 p.install-help { … … 840 1115 841 1116 .wp-admin select { 842 1117 padding: 2px; 843 height: 2em; 1118 line-height: 28px; 1119 height: 28px; 844 1120 } 845 1121 1122 .meta-box-sortables select { 1123 max-width: 100%; 1124 } 1125 846 1126 .wp-admin select[multiple] { 847 1127 height: auto; 848 1128 } … … 860 1140 text-decoration: none; 861 1141 } 862 1142 1143 p.submit { 1144 text-align: left; 1145 max-width: 100%; 1146 margin-top: 20px; 1147 padding-top: 10px; 1148 } 1149 1150 .textright p.submit { 1151 border: none; 1152 text-align: right; 1153 } 1154 1155 table.form-table + p.submit, 1156 table.form-table + input + p.submit, 1157 table.form-table + input + input + p.submit { 1158 border-top: none; 1159 padding-top: 0; 1160 } 1161 1162 table.widefat span.delete a:hover, 1163 table.widefat span.trash a:hover, 1164 table.widefat span.spam a:hover, 1165 #dashboard_recent_comments .delete a:hover, 1166 #dashboard_recent_comments .trash a:hover, 1167 #dashboard_recent_comments .spam a:hover, 1168 .plugins a.delete:hover, 1169 #all-plugins-table .plugins a.delete:hover, 1170 #search-plugins-table .plugins a.delete:hover, 1171 .submitbox .submitdelete:hover, 1172 #media-items a.delete:hover, 1173 #media-items a.delete-permanently:hover, 1174 #nav-menu-footer .menu-delete:hover { 1175 text-decoration: none; 1176 border: none; 1177 } 1178 863 1179 #minor-publishing-actions input, 864 1180 #major-publishing-actions input, 865 1181 #minor-publishing-actions .preview { … … 883 1199 884 1200 input.small-text { 885 1201 width: 50px; 1202 padding: 1px 6px; 886 1203 } 887 1204 888 1205 input[type="number"].small-text { 889 width: 6 0px;1206 width: 65px; 890 1207 } 891 1208 892 1209 #doaction, … … 924 1241 vertical-align: middle; 925 1242 } 926 1243 1244 fieldset label, 1245 #your-profile label + a { 1246 vertical-align: middle; 1247 } 1248 1249 .options-media-php label[for*="_size_"], 927 1250 #misc-publishing-actions label { 928 1251 vertical-align: baseline; 929 1252 } 930 1253 1254 #misc-publishing-actions label[for="post_status"]:before { 1255 content: '\f173'; 1256 display: inline-block; 1257 font: normal 20px/1 'dashicons'; 1258 speak: none; 1259 left: -1px; 1260 padding: 0 5px 0 0; 1261 position: relative; 1262 top: 0; 1263 text-decoration: none !important; 1264 vertical-align: top; 1265 1266 -webkit-font-smoothing: antialiased; 1267 -moz-osx-font-smoothing: grayscale; 1268 } 1269 931 1270 #pass-strength-result { 932 1271 border-style: solid; 933 1272 border-width: 1px; … … 951 1290 #search-plugins input[name="s"], 952 1291 .tagsdiv .newtag { 953 1292 float: left; 954 height: 2 em;1293 height: 28px; 955 1294 margin: 0 4px 0 0; 956 1295 } 957 1296 … … 1002 1341 ------------------------------------------------------------------------------*/ 1003 1342 1004 1343 #major-publishing-actions { 1005 padding: 10px 10px 8px;1344 padding: 10px; 1006 1345 clear: both; 1007 border-top: 1px solid # f5f5f5;1008 margin-top: -2px;1346 border-top: 1px solid #dedede; 1347 background: #f5f5f5; 1009 1348 } 1010 1349 1011 1350 #delete-action { 1012 line-height: 2 5px;1351 line-height: 28px; 1013 1352 vertical-align: middle; 1014 1353 text-align: left; 1015 1354 float: left; … … 1031 1370 1032 1371 .misc-pub-section { 1033 1372 padding: 6px 10px 8px; 1034 border-width: 1px 0;1035 border-style: solid;1036 1373 } 1037 1374 1038 1375 .misc-pub-section:first-child { … … 1044 1381 } 1045 1382 1046 1383 #minor-publishing-actions { 1047 padding: 10px 10px 2px 8px;1384 padding: 10px 10px 0 10px; 1048 1385 text-align: right; 1049 1386 } 1050 1387 1051 #minor-publishing {1052 border-bottom-width: 1px;1053 border-bottom-style: solid;1054 -webkit-box-shadow: 0 1px 0 #fff;1055 box-shadow: 0 1px 0 #fff;1056 }1057 1058 1388 #save-post { 1059 1389 float: left; 1060 1390 } … … 1110 1440 1111 1441 #update-nag, 1112 1442 .update-nag { 1443 display: inline-block; 1113 1444 line-height: 19px; 1114 padding: 5px 0; 1115 font-size: 12px; 1116 text-align: center; 1117 margin: -1px 15px 0 5px; 1118 border-width: 1px; 1119 border-style: solid; 1120 -webkit-border-bottom-right-radius: 3px; 1121 -webkit-border-bottom-left-radius: 3px; 1122 border-bottom-right-radius: 3px; 1123 border-bottom-left-radius: 3px; 1445 padding: 11px 15px; 1446 font-size: 14px; 1447 text-align: left; 1448 margin: 25px 20px 0 2px; 1124 1449 } 1125 1450 1126 1451 .plugins .plugin-update { … … 1129 1454 1130 1455 .plugin-update .update-message { 1131 1456 margin: 0 10px 8px 31px; 1132 font-weight: bold;1457 font-weight: 600; 1133 1458 } 1134 1459 1135 1460 ul#dismissed-updates { … … 1163 1488 margin-left: 2em; 1164 1489 } 1165 1490 1491 /*------------------------------------------------------------------------------ 1492 5.0 - TinyMCE 1493 ------------------------------------------------------------------------------*/ 1166 1494 1495 /* nothing? */ 1496 1167 1497 /*------------------------------------------------------------------------------ 1168 1498 6.0 - Admin Header 1169 1499 ------------------------------------------------------------------------------*/ … … 1187 1517 1188 1518 #contextual-help-wrap { 1189 1519 overflow: auto; 1520 margin-left: 0 !important; 1190 1521 } 1191 1522 1192 1523 #screen-meta .screen-reader-text { … … 1194 1525 } 1195 1526 1196 1527 #screen-meta-links { 1197 margin: 0 2 4px 0 0;1528 margin: 0 20px 0 0; 1198 1529 } 1199 1530 1531 #screen-meta-links a { 1532 padding: 3px 6px 3px 16px; 1533 } 1534 1200 1535 #screen-meta-links a:focus { 1201 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);1202 box-shadow: 1px 1px 1px rgba(0,0,0,0.4);1203 1536 outline: none; 1204 1537 } 1205 1538 1206 1539 /* screen options and help tabs revert */ 1207 1540 #screen-meta { 1208 1541 display: none; 1542 font-size: 14px; 1543 margin: 0 20px -1px 0px; 1209 1544 position: relative; 1210 margin: 0 15px 0 5px;1211 border-width: 0 1px 1px;1212 border-style: none solid solid;1213 1545 } 1214 1546 1215 1547 #screen-options-link-wrap, 1216 1548 #contextual-help-link-wrap { 1217 1549 float: right; 1218 height: 23px; 1219 padding: 0; 1550 height: 28px; 1220 1551 margin: 0 0 0 6px; 1221 font-family: sans-serif;1552 font-family: "Open Sans", sans-serif; 1222 1553 } 1223 1554 1224 #screen-options-link-wrap,1225 #contextual-help-link-wrap,1226 #screen-meta {1227 -webkit-border-bottom-left-radius: 3px;1228 -webkit-border-bottom-right-radius: 3px;1229 border-bottom-left-radius: 3px;1230 border-bottom-right-radius: 3px;1231 }1232 1233 1555 #screen-meta-links .screen-meta-toggle { 1234 1556 position: relative; 1235 top: -1px;1557 top: 0; 1236 1558 } 1237 1559 1238 1560 #screen-meta-links a.show-settings { 1561 display: block; 1562 font-size: 13px; 1563 height: 22px; 1564 line-height: 22px; 1239 1565 text-decoration: none; 1240 1566 z-index: 1; 1241 padding: 1px 16px 0 6px;1242 height: 22px;1243 line-height: 22px;1244 font-size: 12px;1245 display: block;1246 text-shadow: rgba(255,255,255,0.7) 0 1px 0;1247 1567 } 1248 1568 1569 #screen-meta-links a:after { 1570 right: 0; 1571 content: '\f140'; 1572 font: normal 20px/1 'dashicons'; 1573 speak: none; 1574 display: inline-block; 1575 padding: 0 5px 0 0; 1576 bottom: 2px; 1577 position: relative; 1578 vertical-align: bottom; 1579 -webkit-font-smoothing: antialiased; 1580 -moz-osx-font-smoothing: grayscale; 1581 text-decoration: none !important; 1582 } 1583 1584 #screen-meta-links a.screen-meta-active:after { 1585 content: '\f142'; 1586 } 1587 1249 1588 #screen-meta-links a.show-settings:hover { 1250 1589 text-decoration: none; 1251 1590 } … … 1273 1612 .metabox-prefs label { 1274 1613 display: inline-block; 1275 1614 padding-right: 15px; 1276 white-space: nowrap;1277 1615 line-height: 30px; 1278 1616 } 1279 1617 1618 .metabox-prefs label input[type=checkbox] { 1619 margin-top: -4px; 1620 margin-right: 6px; 1621 } 1622 1280 1623 .metabox-prefs label input { 1281 1624 margin: 0 5px 0 2px; 1282 1625 } … … 1295 1638 1296 1639 #contextual-help-wrap { 1297 1640 padding: 0; 1298 margin-left: -4px;1299 1641 } 1300 1642 1301 1643 #contextual-help-columns { … … 1334 1676 margin-bottom: 0; 1335 1677 list-style-type: none; 1336 1678 border-style: solid; 1337 border-width: 1px 0;1679 border-width: 0 0 0 2px; 1338 1680 border-color: transparent; 1339 1681 } 1340 1682 … … 1343 1685 padding: 5px 5px 5px 12px; 1344 1686 line-height: 18px; 1345 1687 text-decoration: none; 1688 border-style: solid; 1689 border-width: 1px 0 1px 0; 1690 border-color: transparent; 1346 1691 } 1347 1692 1348 1693 .contextual-help-tabs .active { 1349 1694 padding: 0; 1350 1695 margin: 0 -1px 0 0; 1351 border-width: 1px 0 1px 1px;1696 border-width: 0 0 0 2px; 1352 1697 border-style: solid; 1353 1698 } 1354 1699 … … 1384 1729 7.0 - Main Navigation (Left Menu) 1385 1730 ------------------------------------------------------------------------------*/ 1386 1731 1387 #adminmenuback,1388 1732 #adminmenuwrap { 1389 border-width: 0 1px 0 0;1390 border-style: solid;1391 }1392 1393 #adminmenuwrap {1394 1733 position: relative; 1395 1734 float: left; 1396 1735 } … … 1424 1763 } 1425 1764 1426 1765 #adminmenu li.menu-top { 1427 min-height: 28px; 1766 border: none; 1767 min-height: 34px; 1428 1768 position: relative; 1429 1769 } 1430 1770 1431 1771 #adminmenu .wp-submenu { 1432 1772 list-style: none; 1433 padding: 4px 0;1434 margin: 0;1435 1773 position: absolute; 1436 1774 top: -1000em; 1437 left: 146px; 1438 z-index: 1000; 1775 left: 150px; 1439 1776 overflow: visible; 1440 border-width: 1px; 1441 border-style: solid; 1442 -webkit-border-bottom-right-radius: 3px; 1443 -webkit-border-top-right-radius: 3px; 1444 border-bottom-right-radius: 3px; 1445 border-top-right-radius: 3px; 1777 word-wrap: break-word; 1446 1778 } 1447 1779 1780 #adminmenu .wp-submenu, 1781 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1782 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1783 padding: 7px 0 8px; 1784 z-index: 9999; 1785 } 1786 1448 1787 .js #adminmenu .sub-open, 1449 1788 .js #adminmenu .opensub .wp-submenu, 1450 1789 #adminmenu a.menu-top:focus + .wp-submenu, … … 1464 1803 right: auto; 1465 1804 bottom: auto; 1466 1805 border: 0 none; 1467 1806 margin-top: 0; 1468 1807 -webkit-box-shadow: none; 1469 1808 box-shadow: none; 1470 1809 } … … 1476 1815 .folded #adminmenu a.menu-top:focus + .wp-submenu, 1477 1816 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 1478 1817 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { 1479 top: -1px;1480 left: 3 2px;1818 top: 0; 1819 left: 36px; 1481 1820 } 1482 1821 1483 1822 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1484 1823 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1485 border-width: 1px;1486 border-style: solid;1487 1824 position: absolute; 1488 1825 top: -1000em; 1489 1826 } 1490 1827 1828 #adminmenu .wp-not-current-submenu .wp-submenu, 1829 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1830 min-width: 150px; 1831 width: auto; 1832 } 1833 1491 1834 #adminmenu .wp-submenu a { 1492 font-size: 1 2px;1493 line-height: 1 8px;1835 font-size: 13px; 1836 line-height: 1.2; 1494 1837 margin: 0; 1495 padding -left: 12px;1838 padding: 6px 0; 1496 1839 } 1497 1840 1498 #adminmenu .wp-not-current-submenu li > a { 1499 padding-left: 16px; 1841 #adminmenu .wp-not-current-submenu li > a, 1842 .folded #adminmenu .wp-has-current-submenu li > a { 1843 padding-right: 16px; 1844 padding-left: 14px; 1845 -moz-transition: all .1s ease-in-out; 1846 -webkit-transition: all .1s ease-in-out; 1847 transition: all .1s ease-in-out; 1500 1848 } 1501 1849 1502 1850 #adminmenu .wp-has-current-submenu ul > li > a, 1503 1851 .folded #adminmenu li.menu-top .wp-submenu > li > a { 1504 padding -left:12px;1852 padding: 6px 12px; 1505 1853 } 1506 1854 1507 1855 #adminmenu a.menu-top, 1508 1856 #adminmenu .wp-submenu-head { 1509 font-size: 1 3px;1510 font-weight: bold;1857 font-size: 14px; 1858 font-weight: 400; 1511 1859 line-height: 18px; 1512 1860 padding: 0; 1513 1861 } … … 1527 1875 overflow: hidden; 1528 1876 } 1529 1877 1530 #adminmenu a.menu-top {1531 border-width: 1px 0;1532 border-style: solid none;1533 }1534 1535 1878 #adminmenu .wp-menu-image img { 1536 padding: 7px 0 0 7px;1879 padding: 9px 0 0 0px; 1537 1880 opacity: 0.6; 1538 1881 filter: alpha(opacity=60); 1539 1882 } 1540 1883 1541 1884 #adminmenu div.wp-menu-name { 1542 padding: 5px;1885 padding: 8px 12px 8px 0; 1543 1886 } 1544 1887 1545 1888 #adminmenu div.wp-menu-image { 1546 1889 float: left; 1547 width: 28px; 1548 height: 28px; 1890 width: 34px; 1891 height: 30px; 1892 margin: 0; 1893 text-align: center; 1549 1894 } 1550 1895 1896 div.wp-menu-image:before { 1897 font: normal 20px/1 'dashicons' !important; 1898 speak: none; 1899 color: #999; 1900 padding: 8px 0; 1901 height: 34px; 1902 width: 20px; 1903 display: inline-block; 1904 -webkit-font-smoothing: antialiased; 1905 -moz-osx-font-smoothing: grayscale; 1906 -moz-transition: all .1s ease-in-out; 1907 -webkit-transition: all .1s ease-in-out; 1908 transition: all .1s ease-in-out; 1909 } 1910 1551 1911 .folded #adminmenu div.wp-menu-image { 1552 width: 32px; 1912 width: 34px; 1913 height: 30px; 1553 1914 position: absolute; 1554 1915 z-index: 25; 1555 1916 } 1556 1917 1557 1918 .folded #adminmenu a.menu-top { 1558 height: 28px;1919 height: 34px; 1559 1920 } 1560 1921 1922 /* A new arrow */ 1923 1561 1924 .wp-menu-arrow { 1562 z-index: 25; 1563 position: absolute; 1564 right: 100%; 1565 margin: 0; 1566 height: 30px; 1567 width: 6px; 1925 display: none !important; 1926 } 1568 1927 1569 -moz-transform: translate( 146px ); 1570 -webkit-transform: translate( 146px ); 1571 -o-transform: translate( 146px ); 1572 -ms-transform: translate( 146px ); 1573 transform: translate( 146px ); 1928 ul#adminmenu a.wp-has-current-submenu { 1929 position: relative; 1574 1930 } 1575 1931 1576 #adminmenu .wp-menu-arrow div { 1577 display: none; 1932 ul#adminmenu a.wp-has-current-submenu:after, 1933 ul#adminmenu > li.current > a.current:after { 1934 right: 0; 1935 border: solid transparent; 1936 content: " "; 1937 height: 0; 1938 width: 0; 1578 1939 position: absolute; 1579 top: 7px; 1580 left: -1px; 1581 width: 14px; 1582 height: 15px; 1583 1584 -moz-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1585 -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1586 -o-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1587 -ms-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1588 transform: matrix( -0.6, 1, 0.6, 1, 0, 0 ); 1940 pointer-events: none; 1941 border-width: 8px; 1942 top: 50%; 1943 margin-top: -8px; 1589 1944 } 1590 1945 1591 #adminmenu li.wp-not-current-submenu .wp-menu-arrow { 1592 -moz-transform: translate( 145px ); 1593 -webkit-transform: translate( 145px ); 1594 -o-transform: translate( 145px ); 1595 -ms-transform: translate( 145px ); 1596 transform: translate( 145px ); 1597 height: 28px; 1598 border-width: 1px 0; 1599 border-style: solid; 1600 top: 0; 1946 .folded ul#adminmenu li:hover a.wp-has-current-submenu:after { 1947 display: none; 1601 1948 } 1602 1949 1603 .folded #adminmenu li .wp-menu-arrow { 1604 -moz-transform: translate( 32px ); 1605 -webkit-transform: translate( 32px ); 1606 -o-transform: translate( 32px ); 1607 -ms-transform: translate( 32px ); 1608 transform: translate( 32px ); 1950 .folded ul#adminmenu a.wp-has-current-submenu:after, 1951 .folded ul#adminmenu > li a.current:after { 1952 border-width: 4px; 1953 margin-top: -4px; 1609 1954 } 1610 1955 1611 #adminmenu li.current .wp-menu-arrow, 1612 #adminmenu li.wp-has-current-submenu .wp-menu-arrow, 1613 #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1614 #adminmenu li.wp-has-submenu .wp-menu-arrow div, 1615 #adminmenu li.current .wp-menu-arrow div, 1616 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1617 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1618 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow, 1619 #adminmenu a:hover .wp-menu-arrow { 1620 display: block; 1956 /* flyout menu arrow */ 1957 #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 1958 right: 0; 1959 border: solid transparent; 1960 content: " "; 1961 height: 0; 1962 width: 0; 1963 position: absolute; 1964 pointer-events: none; 1965 border-width: 8px; 1966 top: 10px; 1967 z-index: 10000; 1621 1968 } 1622 1969 1623 #adminmenu li.current .wp-menu-arrow, 1624 #adminmenu li.wp-menu-open .wp-menu-arrow { 1625 top: 0; 1970 .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 1971 border-width: 4px; 1972 margin-top: -4px; 1973 top: 18px; 1626 1974 } 1627 1975 1628 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow, 1629 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow, 1630 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow { 1631 z-index: 1001; 1976 /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ 1977 #adminmenu li.menu-top:hover, 1978 #adminmenu li.opensub > a.menu-top, 1979 #adminmenu li > a.menu-top:focus { 1980 position: relative; 1632 1981 } 1633 1982 1634 .ie8 #adminmenu li.menu-top:hover .wp-menu-arrow { 1635 display: none; 1983 .folded #adminmenu li.menu-top:hover, 1984 .folded #adminmenu li.opensub > a.menu-top, 1985 .folded #adminmenu li > a.menu-top:focus { 1986 z-index: 10000; 1636 1987 } 1637 1988 1638 #adminmenu .wp-not-current-submenu .wp-menu-arrow div {1639 width: 15px;1640 top: 6px;1641 border-width: 0 0 1px 1px;1642 border-style: solid;1643 }1644 1645 .wp-menu-arrow,1646 .folded #adminmenu li .wp-menu-arrow div,1647 .no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow {1648 display: none;1649 }1650 1651 .folded #adminmenu li.current .wp-menu-arrow,1652 .folded #adminmenu li.current .wp-menu-arrow div,1653 .folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,1654 .folded #adminmenu li.wp-menu-open .wp-menu-arrow,1655 .folded #adminmenu li a:focus .wp-menu-arrow {1656 display: block;1657 }1658 1659 1989 #adminmenu li.menu-top:hover .wp-menu-image img, 1660 1990 #adminmenu li.wp-has-current-submenu .wp-menu-image img { 1661 1991 opacity: 1; … … 1665 1995 #adminmenu li.wp-menu-separator { 1666 1996 height: 3px; 1667 1997 padding: 0; 1668 margin: 0 ;1998 margin: 0 0 6px 0; 1669 1999 border-width: 1px 0; 1670 2000 border-style: solid; 1671 2001 cursor: inherit; … … 1679 2009 } 1680 2010 1681 2011 #adminmenu .wp-submenu .wp-submenu-head { 1682 padding: 5px 4px 5px 10px; 1683 margin: -4px -1px 4px; 1684 border-width: 1px 0; 1685 border-style: solid; 1686 -webkit-border-top-right-radius: 3px; 1687 border-top-right-radius: 3px; 2012 font-weight: 400; 2013 font-size: 14px; 2014 padding: 8px 4px 8px 11px; 2015 margin: -7px 0px 4px; 1688 2016 } 1689 2017 1690 #adminmenu li.wp-menu-open {1691 border-width: 0 0 1px;1692 border-style: solid;1693 }1694 1695 2018 #adminmenu li.current, 1696 2019 .folded #adminmenu li.wp-menu-open { 1697 2020 border: 0 none; 1698 2021 } 1699 2022 1700 .folded #adminmenu li.wp-has-current-submenu {1701 margin-bottom: 1px;1702 }1703 1704 .folded #adminmenu .wp-has-current-submenu.menu-top-last {1705 margin-bottom: 0;1706 }1707 1708 2023 #adminmenu .awaiting-mod, 1709 2024 #adminmenu span.update-plugins, 1710 2025 #sidemenu li a span.update-plugins { 1711 2026 position: absolute; 1712 font-family: sans-serif;2027 font-family: "Open Sans", sans-serif; 1713 2028 font-size: 9px; 1714 2029 line-height: 17px; 1715 font-weight: bold;2030 font-weight: 600; 1716 2031 margin-top: 1px; 1717 2032 margin-left: 7px; 1718 2033 -webkit-border-radius: 10px; … … 1720 2035 z-index: 26; 1721 2036 } 1722 2037 2038 #adminmenu .wp-submenu .update-plugins { 2039 margin-top: 0; 2040 } 2041 1723 2042 #adminmenu li .awaiting-mod span, 1724 2043 #adminmenu li span.update-plugins span, 1725 2044 #sidemenu li a span.update-plugins span { … … 1732 2051 display: none; 1733 2052 } 1734 2053 1735 # collapse-menu {1736 font-size: 1 2px;2054 #adminmenu #collapse-menu { 2055 font-size: 13px; 1737 2056 line-height: 34px; 1738 border-width: 1px 0 0; 1739 border-style: solid; 2057 margin-top: 10px; 1740 2058 } 1741 2059 1742 2060 .folded #collapse-menu span { … … 1751 2069 1752 2070 #collapse-button { 1753 2071 float: left; 1754 margin: 8px 6px; 1755 border-width: 1px; 1756 border-style: solid; 2072 height: 15px; 2073 margin: 10px 8px 10px 11px; 2074 width: 15px; 2075 1757 2076 -webkit-border-radius: 10px; 1758 2077 border-radius: 10px; 1759 2078 } 1760 2079 2080 #wpwrap #collapse-button div { 2081 padding: 0; 2082 } 2083 2084 #collapse-button div:after { 2085 content: '\f148'; 2086 display: block; 2087 line-height: 15px; 2088 left: -3px; 2089 top: -3px; 2090 font: normal 20px/1 'dashicons' !important; 2091 speak: none; 2092 margin: 0 auto; 2093 padding: 0 !important; 2094 position: relative; 2095 text-align: center; 2096 width: 20px; 2097 -moz-transition: all .1s ease-in-out; 2098 -webkit-transition: all .1s ease-in-out; 2099 transition: all .1s ease-in-out; 2100 2101 -webkit-font-smoothing: antialiased; 2102 -moz-osx-font-smoothing: grayscale; 2103 } 2104 2105 .folded #collapse-button div:after { 2106 -ms-transform: rotate(180deg); 2107 -webkit-transform: rotate(180deg); 2108 transform: rotate(180deg); 2109 } 2110 2111 1761 2112 /* Auto-folding of the admin menu */ 1762 2113 @media only screen and (max-width: 900px) { 1763 2114 .auto-fold #wpcontent, 1764 2115 .auto-fold #wpfooter { 1765 margin-left: 5 2px;2116 margin-left: 56px; 1766 2117 } 1767 2118 1768 2119 .auto-fold #adminmenuback, 1769 2120 .auto-fold #adminmenuwrap, 1770 2121 .auto-fold #adminmenu, 1771 2122 .auto-fold #adminmenu li.menu-top { 1772 width: 3 2px;2123 width: 36px; 1773 2124 } 1774 2125 1775 2126 .auto-fold #adminmenu .wp-submenu.sub-open, … … 1778 2129 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1779 2130 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 1780 2131 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 1781 top: -1px;1782 left: 3 2px;2132 top: 0px; 2133 left: 36px; 1783 2134 } 1784 2135 1785 2136 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1786 2137 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1787 border-width: 1px;1788 border-style: solid;1789 2138 position: absolute; 1790 2139 top: -1000em; 2140 margin-right: -1px; 2141 padding: 7px 0 8px; 2142 z-index: 9999; 1791 2143 } 1792 2144 2145 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 2146 min-width: 150px; 2147 width: auto; 2148 } 2149 2150 .auto-fold #adminmenu .wp-has-current-submenu li > a { 2151 padding-right: 16px; 2152 padding-left: 14px; 2153 } 2154 2155 1793 2156 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 1794 2157 padding-left: 12px; 1795 2158 } … … 1803 2166 } 1804 2167 1805 2168 .auto-fold #adminmenu div.wp-menu-image { 1806 width: 32px; 2169 height: 30px; 2170 width: 34px; 1807 2171 position: absolute; 1808 2172 z-index: 25; 1809 2173 } 1810 2174 1811 2175 .auto-fold #adminmenu a.menu-top { 1812 height: 28px;2176 height: 34px; 1813 2177 } 1814 2178 1815 .auto-fold #adminmenu li .wp-menu-arrow { 1816 -moz-transform: translate( 32px ); 1817 -webkit-transform: translate( 32px ); 1818 -o-transform: translate( 32px ); 1819 -ms-transform: translate( 32px ); 1820 transform: translate( 32px ); 2179 .auto-fold #adminmenu li.wp-menu-open { 2180 border: 0 none; 1821 2181 } 1822 2182 1823 .auto-fold #adminmenu li .wp-menu-arrow div{1824 display: none;2183 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 2184 margin-bottom: 0; 1825 2185 } 1826 2186 1827 .auto-fold #adminmenu li.current .wp-menu-arrow, 1828 .auto-fold #adminmenu li.current .wp-menu-arrow div, 1829 .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div, 1830 .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow, 1831 .auto-fold #adminmenu li a:focus .wp-menu-arrow { 1832 display: block; 2187 .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after { 2188 display: none; 1833 2189 } 1834 2190 1835 .auto-fold #adminmenu li.wp-menu-open { 1836 border: 0 none; 2191 .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 2192 border-width: 4px; 2193 margin-top: -4px; 2194 top: 16px; 1837 2195 } 1838 2196 1839 .auto-fold #adminmenu li.wp-has-current-submenu { 1840 margin-bottom: 1px; 2197 .auto-fold ul#adminmenu a.wp-has-current-submenu:after, 2198 .auto-fold ul#adminmenu > li a.current:after { 2199 border-width: 4px; 2200 margin-top: -4px; 1841 2201 } 1842 2202 1843 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 1844 margin-bottom: 0; 2203 .auto-fold #adminmenu li.menu-top:hover, 2204 .auto-fold #adminmenu li.opensub > a.menu-top, 2205 .auto-fold #adminmenu li > a.menu-top:focus { 2206 z-index: 10000; 1845 2207 } 1846 2208 1847 2209 .auto-fold #collapse-menu span { 1848 2210 display: none; 1849 2211 } 1850 2212 2213 .auto-fold #collapse-button div { 2214 background: none; 2215 } 2216 2217 .auto-fold #collapse-button div:after { 2218 -ms-transform: rotate(180deg); 2219 -webkit-transform: rotate(180deg); 2220 transform: rotate(180deg); 2221 } 1851 2222 } 1852 2223 1853 2224 /* List table styles */ 1854 2225 .post-com-count-wrapper { 1855 2226 min-width: 22px; 1856 font-family: sans-serif;2227 font-family: "Open Sans", sans-serif; 1857 2228 } 1858 2229 1859 2230 .post-com-count { 1860 background -image: url('../images/bubble_bg.gif');2231 background: none; 1861 2232 height: 1.3em; 1862 2233 line-height: 1.1em; 1863 2234 display: block; … … 1868 2239 background-repeat: no-repeat; 1869 2240 } 1870 2241 2242 .post-com-count:after { /* draw bubble connector using CSS! */ 2243 content: ""; 2244 display: block; 2245 width: 0; 2246 height: 0; 2247 margin-left: 8px; 2248 border-top: 5px solid #bbbbbb; 2249 border-right: 5px solid transparent; 2250 } 2251 1871 2252 .post-com-count span { 1872 2253 font-size: 11px; 1873 font-weight: bold;2254 font-weight: 600; 1874 2255 height: 1.4em; 1875 2256 line-height: 1.4em; 1876 2257 min-width: 0.7em; … … 1903 2284 } 1904 2285 1905 2286 th .comment-grey-bubble { 1906 background-image: url('../images/comment-grey-bubble.png'); 1907 background-repeat: no-repeat; 1908 height: 12px; 1909 width: 12px; 2287 height: 16px; 2288 width: 16px; 1910 2289 } 1911 2290 2291 th .comment-grey-bubble:before { 2292 content: '\f101'; 2293 font: normal 20px/.5 'dashicons'; 2294 speak: none; 2295 display: inline-block; 2296 padding: 0; 2297 top: 4px; 2298 left: -4px; 2299 position: relative; 2300 vertical-align: top; 2301 -webkit-font-smoothing: antialiased; 2302 -moz-osx-font-smoothing: grayscale; 2303 text-decoration: none !important; 2304 } 2305 1912 2306 /*------------------------------------------------------------------------------ 1913 2307 8.0 - Layout Blocks 1914 2308 ------------------------------------------------------------------------------*/ 1915 2309 1916 2310 html.wp-toolbar { 1917 padding-top: 28px;2311 padding-top: 32px; 1918 2312 -webkit-box-sizing: border-box; 1919 2313 -moz-box-sizing: border-box; 1920 2314 box-sizing: border-box; … … 2006 2400 2007 2401 #poststuff { 2008 2402 padding-top: 10px; 2403 min-width: 763px; 2009 2404 } 2010 2405 2011 2406 #poststuff #post-body { … … 2014 2409 2015 2410 #post-body-content { 2016 2411 width: 100%; 2412 min-width: 463px; 2017 2413 float: left; 2018 2414 } 2019 2415 … … 2091 2487 } 2092 2488 2093 2489 /* one column on the post write/edit screen */ 2094 @media only screen and (max-width: 960px) { 2490 @media only screen and (max-width: 850px) { 2491 #poststuff { 2492 min-width: 0; 2493 } 2494 2095 2495 #wpbody-content #poststuff #post-body { 2096 2496 margin: 0; 2097 2497 } … … 2119 2519 } 2120 2520 } 2121 2521 2122 .postbox .hndle {2123 -webkit-border-top-left-radius: 3px;2124 -webkit-border-top-right-radius: 3px;2125 border-top-left-radius: 3px;2126 border-top-right-radius: 3px;2127 }2128 2129 2522 .js .postbox .hndle { 2130 2523 cursor: move; 2131 2524 } … … 2161 2554 .stuffbox { 2162 2555 margin-bottom: 20px; 2163 2556 padding: 0; 2164 border-width: 1px;2165 border-style: solid;2166 2557 line-height: 1; 2167 2558 } 2168 2559 … … 2170 2561 .postbox h3, 2171 2562 .stuffbox h3 { 2172 2563 margin-top: 1px; 2173 border-bottom-width: 1px;2174 border-bottom-style: solid;2175 2564 -webkit-user-select: none; 2176 2565 -moz-user-select: none; 2177 2566 user-select: none; … … 2184 2573 2185 2574 .postbox .inside, 2186 2575 .stuffbox .inside { 2187 padding: 0 12px 0 10px;2576 padding: 0 12px 12px; 2188 2577 line-height: 1.4em; 2578 font-size: 13px; 2189 2579 } 2190 2580 2191 2581 .postbox .inside { 2192 margin: 1 0px 0;2582 margin: 12px 0; 2193 2583 position: relative; 2194 2584 } 2195 2585 2586 #dashboard-widgets .postbox .inside { 2587 margin-bottom: 0; 2588 } 2589 2590 .postbox .inside > p:last-child, 2591 .rss-widget ul li:last-child { 2592 margin-bottom: 1px !important; 2593 } 2594 2196 2595 .postbox.closed h3 { 2197 2596 border: none; 2198 2597 -webkit-box-shadow: none; … … 2229 2628 } 2230 2629 2231 2630 #dashboard_recent_comments div.undo { 2232 border-top-style: solid; 2233 border-top-width: 1px; 2234 margin: 0 -10px; 2235 padding: 3px 8px; 2631 margin: 0 -12px; 2632 padding: 6px 12px; 2236 2633 font-size: 11px; 2237 2634 } 2238 2635 2636 #dashboard_recent_comments div.undo .avatar { 2637 float: left; 2638 } 2639 2640 #dashboard_recent_comments div.undo div { 2641 min-height: 20px; 2642 } 2643 2239 2644 #the-comment-list td.comment p.comment-author { 2240 2645 margin-top: 0; 2241 2646 margin-left: 0; … … 2262 2667 .welcome-panel { 2263 2668 position: relative; 2264 2669 overflow: auto; 2265 margin: 20px 0;2670 margin: 16px 0; 2266 2671 padding: 23px 10px 12px; 2267 border-width: 1px;2268 border-style: solid;2269 border-radius: 3px;2270 2672 font-size: 13px; 2271 2673 line-height: 2.1em; 2272 2674 } 2273 2675 2274 2676 .welcome-panel h3 { 2275 2677 margin: 0; 2276 font-family: " HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;2678 font-family: "Open Sans", sans-serif; 2277 2679 font-size: 21px; 2278 2680 font-weight: normal; 2279 2681 line-height: 1.2; 2280 2682 } 2683 2281 2684 .welcome-panel h4 { 2282 2685 margin: 1.33em 0 0; 2283 font-size: 1 3px;2686 font-size: 16px; 2284 2687 } 2285 2688 2689 .welcome-panel li { 2690 font-size: 14px; 2691 } 2692 2286 2693 .welcome-panel .about-description { 2287 2694 font-size: 16px; 2288 2695 margin: 0; … … 2298 2705 line-height: 1; 2299 2706 } 2300 2707 2301 .welcome-panel .welcome-panel-close:before { 2302 content: ' '; 2303 position: absolute; 2304 left: -12px; 2305 width: 10px; 2306 height: 100%; 2307 background: url('../images/xit.gif') 0 17% no-repeat; 2708 #welcome-panel.welcome-panel .welcome-panel-close::before, 2709 .tagchecklist span a:before, 2710 #bulk-titles div a:before, 2711 .wp-pointer-buttons a.close:before { 2712 content: '\f153'; 2713 display: block !important; 2714 font: normal 16px/1 'dashicons'; 2715 speak: none; 2716 height: 20px; 2717 margin: 2px 0; 2718 text-align: center; 2719 width: 20px; 2720 -webkit-font-smoothing: antialiased !important; 2308 2721 } 2309 2722 2310 .welcome-panel .welcome-panel-close:hover:before { 2311 background-position: 100% 17%; 2723 #welcome-panel.welcome-panel .welcome-panel-close::before { 2724 position: absolute; 2725 left: -18px; 2726 margin-top: -2px; 2727 -webkit-transition: all .1s ease-in-out; 2728 -moz-transition: all .1s ease-in-out; 2729 transition: all .1s ease-in-out; 2312 2730 } 2313 2731 2314 2732 .wp-core-ui .welcome-panel .button.button-hero { … … 2340 2758 width: 36%; 2341 2759 } 2342 2760 2761 .welcome-panel-column p.hide-if-no-customize { 2762 margin-top: 10px; 2763 } 2764 2343 2765 .welcome-panel-column p { 2344 2766 margin-top: 7px; 2345 2767 } 2346 2768 2347 2769 .welcome-panel .welcome-icon { 2348 2770 display: block; 2349 padding: 2px 0 8px 32px; 2350 background-image: url('../images/welcome-icons.png'); 2351 background-repeat: no-repeat; 2352 background-size: 16px; 2771 padding: 0 0 8px; 2772 background: transparent !important; 2353 2773 } 2354 2774 2355 .welcome-panel .welcome-add-page { 2356 background-position: 0 2px; 2775 .welcome-panel .welcome-icon:before { 2776 font: normal 20px/1 'dashicons'; 2777 speak: none; 2778 display: inline-block; 2779 padding: 0 10px 0 0; 2780 top: -1px; 2781 position: relative; 2782 -webkit-font-smoothing: antialiased; 2783 -moz-osx-font-smoothing: grayscale; 2784 text-decoration: none !important; 2785 vertical-align: top; 2357 2786 } 2358 2787 2359 .welcome-panel .welcome-edit-page { 2360 background-position: 0 -90px; 2788 .welcome-panel .welcome-write-blog:before, 2789 .welcome-panel .welcome-edit-page:before { 2790 content:'\f119'; 2791 top: -3px; 2361 2792 } 2362 2793 2363 .welcome-panel .welcome- learn-more {2364 background-position: 0 -136px;2794 .welcome-panel .welcome-add-page:before { 2795 content:'\f132'; 2365 2796 } 2366 2797 2367 .welcome-panel .welcome-comments { 2368 background-position: 0 -182px; 2798 .welcome-panel .welcome-view-site:before { 2799 content:'\f115'; 2800 top: -2px; 2369 2801 } 2370 2802 2371 .welcome-panel .welcome-view-site { 2372 background-position: 0 -274px; 2803 .welcome-panel .welcome-widgets-menus:before { 2804 content:'\f116'; 2805 top: -2px; 2373 2806 } 2374 2807 2375 .welcome-panel .welcome- widgets-menus{2376 background-position: 1px -229px;2377 line-height: 14px;2808 .welcome-panel .welcome-comments:before { 2809 content:'\f117'; 2810 top: -1px; 2378 2811 } 2379 2812 2380 .welcome-panel .welcome-write-blog { 2381 background-position: 0 -44px; 2813 .welcome-panel .welcome-learn-more:before { 2814 content:'\f118'; 2815 top: -1px; 2382 2816 } 2383 2817 2818 .welcome-panel .welcome-widgets-menus { 2819 line-height: 16px; 2820 } 2821 2384 2822 .welcome-panel .welcome-panel-column ul { 2385 2823 margin: 0.8em 1em 1em 0; 2386 2824 } … … 2502 2940 #commentsdiv #add-new-comment { 2503 2941 border-width: 0 0 1px; 2504 2942 border-style: none none solid; 2943 margin-top: 6px; 2505 2944 } 2506 2945 2507 2946 #commentsdiv .comments-box { … … 2524 2963 2525 2964 .sorting-indicator { 2526 2965 display: none; 2527 width: 7px;2966 width: 10px; 2528 2967 height: 4px; 2529 2968 margin-top: 8px; 2530 2969 margin-left: 7px; 2531 background-image: url('../images/sort.gif');2532 background-repeat: no-repeat;2533 2970 } 2534 2971 2972 .sorting-indicator:before { 2973 background: none; 2974 content: '\f142'; 2975 font: normal 20px/1 'dashicons'; 2976 speak: none; 2977 display: inline-block; 2978 padding: 0; 2979 top: -4px; 2980 left: -8px; 2981 color: #444; 2982 line-height: 10px; 2983 position: relative; 2984 vertical-align: top; 2985 -webkit-font-smoothing: antialiased; 2986 -moz-osx-font-smoothing: grayscale; 2987 text-decoration: none !important; 2988 } 2989 2990 .column-comments .sorting-indicator:before { 2991 top: 0; 2992 left: -10px; 2993 } 2994 2995 th.sorted.asc .sorting-indicator:before, 2996 th.desc:hover span.sorting-indicator:before { 2997 content: '\f142'; 2998 } 2999 3000 th.sorted.desc .sorting-indicator:before, 3001 th.asc:hover span.sorting-indicator:before { 3002 content: '\f140'; 3003 } 3004 2535 3005 tr.wp-locked .locked-indicator { 2536 3006 background: url('../images/lock.png') no-repeat; 2537 3007 margin: -2px 0 0 6px; … … 2552 3022 } 2553 3023 2554 3024 tr.wp-locked .locked-info { 3025 margin-top: 8px; 2555 3026 height: auto; 2556 3027 opacity: 1; 2557 3028 } 2558 3029 3030 .locked-text { 3031 vertical-align: top; 3032 } 3033 2559 3034 tr.locked-info, tr.wp-locked .locked-info { 2560 3035 -webkit-transition: height 1s, opacity 500ms; 2561 3036 -moz-transition: height 1s, opacity 500ms; … … 2609 3084 2610 3085 /* Bulk Actions */ 2611 3086 .tablenav-pages a { 2612 border-bottom-style: solid; 2613 border-bottom-width: 2px; 2614 font-weight: bold; 3087 font-weight: 600; 2615 3088 margin-right: 1px; 2616 3089 padding: 0 2px; 2617 3090 } 2618 3091 .tablenav-pages .current-page { 3092 padding-top: 0; 2619 3093 text-align: center; 2620 3094 } 2621 3095 .tablenav-pages .next-page { … … 2658 3132 padding: 3px 6px; 2659 3133 } 2660 3134 3135 .tablenav .tablenav-pages a { 3136 padding: 0 10px 3px; 3137 font-size: 16px; 3138 font-weight: normal; 3139 } 3140 2661 3141 .tablenav .tablenav-pages a.disabled:hover , 2662 3142 .tablenav .tablenav-pages a.disabled:active { 2663 3143 cursor: default; 2664 3144 } 2665 3145 2666 3146 .tablenav .displaying-num { 2667 margin-right: 10px;3147 margin-right: 2px; 2668 3148 font-size: 12px; 2669 3149 font-style: italic; 2670 3150 } … … 2680 3160 2681 3161 .view-switch { 2682 3162 float: right; 2683 margin: 6px 8px 0;3163 margin: 5px 16px 0 8px; 2684 3164 } 2685 3165 3166 .view-switch img { 3167 display: none; 3168 } 3169 2686 3170 .view-switch a { 2687 3171 text-decoration: none; 2688 3172 } 2689 3173 3174 .view-switch > a { 3175 display: inline-block; 3176 width: 18px; 3177 height: 18px; 3178 } 3179 3180 .view-switch > a:before { 3181 content: '\f163'; 3182 display: inline-block; 3183 float: left; 3184 font: normal 20px/1 'dashicons'; 3185 speak: none; 3186 vertical-align: middle; 3187 margin-left: 0; 3188 -webkit-font-smoothing: antialiased; 3189 -moz-osx-font-smoothing: grayscale; 3190 } 3191 3192 .view-switch > a + a:before { 3193 margin-left: 5px; 3194 content: '\f164'; 3195 } 3196 2690 3197 .filter { 2691 3198 float: left; 2692 3199 margin: -5px 0 0 10px; … … 2942 3449 2943 3450 .inline-edit-row fieldset ul.cat-checklist label, 2944 3451 .inline-edit-row #bulk-titles div { 2945 font-family: sans-serif;3452 font-family: "Open Sans", sans-serif; 2946 3453 font-style: normal; 2947 3454 font-size: 11px; 2948 3455 } … … 2970 3477 cursor: pointer; 2971 3478 display: block; 2972 3479 float: left; 2973 height: 1 0px;2974 margin: 3px3px 0 -2px;3480 height: 18px; 3481 margin: 0 3px 0 -2px; 2975 3482 overflow: hidden; 2976 3483 position: relative; 2977 text-indent: -9999px; 2978 width: 10px; 3484 width: 20px; 2979 3485 } 2980 3486 3487 #bulk-titles div a:before { 3488 position: relative; 3489 top: -3px; 3490 } 2981 3491 3492 2982 3493 /*------------------------------------------------------------------------------ 2983 3494 11.0 - Write/Edit Post Screen 2984 3495 ------------------------------------------------------------------------------*/ … … 3006 3517 3007 3518 #titlediv { 3008 3519 position: relative; 3009 margin-bottom: 5px;3520 margin-bottom: 10px; 3010 3521 } 3011 3522 3012 3523 #titlediv label { … … 3073 3584 line-height: 24px; 3074 3585 min-height: 25px; /* Yes, line-height + 1 */ 3075 3586 margin-top: 5px; 3076 padding -right: 6px;3587 padding: 0 10px; 3077 3588 } 3078 3589 3079 3590 #edit-slug-box .cancel { … … 3104 3615 padding: 1px 2px; 3105 3616 } 3106 3617 3107 .submitbox .submitdelete,3108 3618 .submitbox .submit a:hover { 3109 border-bottom-width: 1px; 3110 border-bottom-style: solid; 3619 text-decoration: underline; 3111 3620 } 3112 3621 3113 3622 .submitbox .submit input { … … 3172 3681 } 3173 3682 3174 3683 .category-tabs { 3175 margin: 8px 0 3px;3684 margin: 8px 0 5px; 3176 3685 } 3177 3686 3178 3687 #category-adder h4 { … … 3219 3728 border-width: 1px 1px 0; 3220 3729 } 3221 3730 3731 ul.add-menu-item-tabs li.tabs { 3732 padding-bottom: 3px; 3733 } 3734 3222 3735 #post-body .add-menu-item-tabs li.tabs { 3223 3736 border-style: solid none solid solid; 3224 3737 border-width: 1px 0 1px 1px; … … 3229 3742 ul.add-menu-item-tabs li, 3230 3743 ul.wp-tab-bar li { 3231 3744 padding: 3px 5px 5px; 3232 -webkit-border-top-left-radius: 3px;3233 -webkit-border-top-right-radius: 3px;3234 border-top-left-radius: 3px;3235 border-top-right-radius: 3px;3236 3745 } 3237 3746 3238 /* positioning etc. */ 3747 #postimagediv .inside img { 3748 max-width: 100%; 3749 height: auto; 3750 } 3751 3239 3752 form#tags-filter { 3240 3753 position: relative; 3241 3754 } … … 3245 3758 td.plugin-title strong { 3246 3759 display: block; 3247 3760 margin-bottom: .2em; 3761 font-size: 14px; 3248 3762 } 3249 3763 3250 3764 td.post-title p, … … 3276 3790 } 3277 3791 3278 3792 #post-status-info { 3279 border-width: 0 1px 1px;3280 border-style: none solid solid;3281 3793 width: 100%; 3282 -webkit-border-bottom-left-radius: 3px;3283 -webkit-border-bottom-right-radius: 3px;3284 border-bottom-left-radius: 3px;3285 border-bottom-right-radius: 3px;3286 3794 } 3287 3795 3288 3796 #post-status-info td { … … 3298 3806 border: none; 3299 3807 } 3300 3808 3809 #content-resize-handle, 3301 3810 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3302 display: block;3303 3811 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3304 3812 width: 12px; 3305 3813 cursor: se-resize; 3814 } 3815 3816 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3817 display: block; 3306 3818 margin: 0 1px; 3307 3819 position: relative; 3308 3820 top: -2px; 3309 3821 } 3310 3822 3311 3823 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { 3312 top: 2 0px;3824 top: 22px; 3313 3825 } 3314 3826 3315 3827 #content-resize-handle { 3316 background: transparent url('../images/resize.gif') no-repeat scroll right bottom;3317 width: 12px;3318 cursor: se-resize;3319 3828 position: absolute; 3320 3829 right: 2px; 3321 3830 height: 19px; … … 3355 3864 } 3356 3865 3357 3866 .curtime #timestamp { 3358 background-repeat: no-repeat;3359 background-position: left center;3360 padding: 2px 0 1px 20px;3867 padding: 2px 0 1px 0; 3868 display: inline !important; 3869 height: auto !important; 3361 3870 } 3362 3871 3872 #post-body #visibility:before, 3873 .curtime #timestamp:before, 3874 #post-body .misc-pub-revisions:before { 3875 font: normal 20px/1 'dashicons'; 3876 speak: none; 3877 display: inline-block; 3878 padding: 0 2px 0 0; 3879 top: 0; 3880 left: -1px; 3881 position: relative; 3882 vertical-align: top; 3883 -webkit-font-smoothing: antialiased; 3884 -moz-osx-font-smoothing: grayscale; 3885 text-decoration: none !important; 3886 } 3887 3888 #post-body #visibility:before { 3889 content: '\f177'; 3890 } 3891 3892 .curtime #timestamp:before { 3893 content: '\f145'; 3894 top: -1px; 3895 } 3896 3897 #post-body .misc-pub-revisions:before { 3898 content: '\f321'; 3899 } 3900 3363 3901 #timestampdiv { 3364 3902 padding-top: 5px; 3365 3903 line-height: 23px; … … 3531 4069 .revisions.pinned .revisions-controls { 3532 4070 position: fixed; 3533 4071 top: 0; 3534 padding-bottom: 10px;4072 height: 82px; 3535 4073 } 3536 4074 3537 4075 .revisions-tickmarks { 3538 4076 position: relative; 3539 4077 margin: 0 auto; 3540 height: 0. 8em;4078 height: 0.7em; 3541 4079 top: 7px; 3542 4080 max-width: 70%; 3543 4081 -moz-box-sizing: border-box; … … 3563 4101 height: 140px; 3564 4102 } 3565 4103 4104 .comparing-two-revisions.pinned .revisions-controls { 4105 height: 124px; 4106 } 4107 3566 4108 .revisions .diff-error { 3567 4109 position: absolute; 3568 4110 text-align: center; … … 3623 4165 } 3624 4166 3625 4167 .revisions-meta { 3626 margin-top: 15px;4168 margin-top: 20px; 3627 4169 } 3628 4170 3629 4171 .revision-toggle-compare-mode { … … 3654 4196 display: block; 3655 4197 } 3656 4198 4199 .revisions.pinned .revisions-buttons { 4200 padding: 0 11px; 4201 } 4202 3657 4203 .revisions-previous, 3658 4204 .revisions-next { 3659 4205 position: relative; … … 3674 4220 top: -3px; 3675 4221 } 3676 4222 4223 .revisions-diff { 4224 padding: 15px; 4225 } 4226 4227 .revisions-diff h3:first-child { 4228 margin-top: 0; 4229 } 4230 3677 4231 /* Revision meta box */ 3678 4232 .post-revisions li img, 3679 4233 #revisions-meta-restored img { 3680 4234 vertical-align: middle; 3681 4235 } 3682 4236 4237 table.diff tbody tr td:nth-child(2) { 4238 width: 4%; 4239 } 4240 3683 4241 table.diff { 3684 table-layout: fixed;3685 4242 width: 100%; 3686 4243 white-space: pre-wrap; 3687 word-wrap: break-word;3688 4244 } 3689 4245 3690 4246 table.diff col.content { … … 3709 4265 3710 4266 table.diff td, 3711 4267 table.diff th { 4268 font-family: Consolas, Monaco, monospace; 4269 font-size: 14px; 4270 line-heighit: 1.618; 3712 4271 padding: .5em; 3713 font-family: Consolas, Monaco, monospace;3714 4272 } 3715 4273 4274 table.diff td h1, 4275 table.diff td h2, 4276 table.diff td h3, 4277 table.diff td h4, 4278 table.diff td h5, 4279 table.diff td h6 { 4280 margin: 0; 4281 } 4282 3716 4283 table.diff .diff-deletedline del, 3717 4284 table.diff .diff-addedline ins { 3718 4285 text-decoration: none; … … 3734 4301 margin-right: 5px; 3735 4302 } 3736 4303 4304 .revisions-controls .author-card .author-info { 4305 font-size: 12px; 4306 line-height: 16px; 4307 } 4308 3737 4309 .revisions-controls .author-card .avatar, 3738 4310 .revisions-controls .author-card .author-info { 3739 4311 float: left; … … 3816 4388 width: 25px; 3817 4389 height: 25px; 3818 4390 -webkit-transform: rotate(45deg); 3819 -moz-transform: rotate(45deg);3820 -ms-transform: rotate(45deg);3821 -o-transform: rotate(45deg);3822 transform: rotate(45deg);4391 -moz-transform: rotate(45deg); 4392 -ms-transform: rotate(45deg); 4393 -o-transform: rotate(45deg); 4394 transform: rotate(45deg); 3823 4395 } 3824 4396 3825 4397 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { … … 3843 4415 border-style: solid; 3844 4416 } 3845 4417 4418 4419 4420 4421 .revisions-tooltip { 4422 display: none; 4423 } 4424 4425 .arrow { 4426 width: 70px; 4427 height: 16px; 4428 overflow: hidden; 4429 position: absolute; 4430 left: 0; 4431 margin-left: -35px; 4432 bottom: 90px; 4433 z-index: 10000; 4434 } 4435 4436 .arrow::after { 4437 z-index: 9999; 4438 } 4439 4440 .arrow.top { 4441 top: -16px; 4442 bottom: auto; 4443 } 4444 4445 .arrow.left { 4446 left: 20%; 4447 } 4448 4449 .arrow:after { 4450 content: ""; 4451 position: absolute; 4452 left: 20px; 4453 top: -20px; 4454 width: 25px; 4455 height: 25px; 4456 -webkit-transform: rotate(45deg); 4457 -moz-transform: rotate(45deg); 4458 -ms-transform: rotate(45deg); 4459 -o-transform: rotate(45deg); 4460 transform: rotate(45deg); 4461 } 4462 4463 .revisions-tooltip, 4464 .revisions-tooltip-arrow:after { 4465 border-width: 1px; 4466 border-style: solid; 4467 } 4468 3846 4469 div.revisions-controls > .wp-slider > .ui-slider-handle { 3847 4470 margin-left: -10px; 3848 4471 } … … 3852 4475 position: relative; 3853 4476 border-width: 1px; 3854 4477 border-style: solid; 3855 border-radius: 3px;3856 4478 text-align: left; 3857 4479 cursor: pointer; 3858 4480 } 3859 4481 3860 4482 .wp-slider .ui-slider-handle { 4483 border-radius: 50%; 4484 height: 20px; 4485 margin-top: -2px; 4486 outline: none; 3861 4487 position: absolute; 4488 width: 20px; 3862 4489 z-index: 2; 3863 margin-top: -3px;3864 width: 19px;3865 height: 19px;3866 border-width: 1px;3867 border-style: solid;3868 border-radius: 50%;3869 4490 } 3870 4491 3871 4492 .wp-slider .ui-slider-handle:before { 3872 content: "";4493 background: none; 3873 4494 position: absolute; 3874 top: 6px; 3875 left: 3px; 3876 height: 8px; 3877 width: 13px; 3878 background: url(../images/arrows-pr.png) no-repeat -2px -47px; 4495 margin-top: 1px; 4496 margin-left: 1px; 4497 top: 0; 4498 left: 0; 4499 content: "\f229"; 4500 font: normal 18px/1 'dashicons'; 4501 speak: none; 4502 -webkit-font-smoothing:antialiased; 4503 -moz-osx-font-smoothing: grayscale; 3879 4504 } 3880 4505 3881 4506 .wp-slider .ui-slider-handle.from-handle:before, 3882 4507 .wp-slider .ui-slider-handle.to-handle:before { 4508 font-size: 20px !important; 3883 4509 height: 8px; 3884 4510 width: 7px; 4511 margin-left: 0; 3885 4512 } 3886 4513 3887 4514 .wp-slider .ui-slider-handle.from-handle:before { 3888 background-position: -5px -84px; 3889 left: 7px; 4515 content: '\f139'; 3890 4516 } 3891 4517 3892 4518 .wp-slider .ui-slider-handle.to-handle:before { 3893 background-position: -4px -65px;3894 left: 5px; 4519 content: '\f141'; 4520 3895 4521 } 3896 4522 3897 4523 .wp-slider .ui-slider-range { … … 3904 4530 } 3905 4531 3906 4532 .wp-slider.ui-slider-horizontal { 3907 height: . 8em;4533 height: .7em; 3908 4534 } 3909 4535 3910 4536 .wp-slider.ui-slider-horizontal .ui-slider-handle { … … 3963 4589 11.4 - Post formats 3964 4590 ------------------------------------------------------------------------------*/ 3965 4591 3966 a.post-state-format {4592 .post-state-format { 3967 4593 overflow: hidden; 3968 4594 display: inline-block; 3969 4595 vertical-align: middle; 3970 height: 16px;3971 width: 16px;4596 height: 20px; 4597 width: 20px; 3972 4598 margin-right: 5px; 3973 background-repeat: no-repeat; 3974 text-indent: -999em; 4599 margin-top: -4px; 3975 4600 } 3976 4601 4602 .post-state-format:before { 4603 display: block; 4604 height: 20px; 4605 width: 20px; 4606 font: normal 20px/1 'dashicons' !important; 4607 speak: none; 4608 -webkit-font-smoothing: antialiased; 4609 -moz-osx-font-smoothing: grayscale; 4610 } 4611 3977 4612 #post-formats-select { 3978 4613 line-height: 2em; 3979 4614 } 3980 4615 4616 #post-formats-select .post-format-icon:before { 4617 top: 5px; 4618 } 4619 4620 input.post-format { 4621 margin-top: 1px; 4622 } 4623 3981 4624 label.post-format-icon { 3982 margin-left: 5px;3983 padding: 2px 0 2px 21px;4625 margin-left: 0px; 4626 padding: 2px 0 2px 0px; 3984 4627 } 3985 4628 3986 .post-format-icon.post-format-standard { 3987 background-position: 0 0; 4629 .post-format-icon:before { 4630 position: relative; 4631 display: inline-block; 4632 margin-right: 7px; 4633 font: normal 20px/1 'dashicons'; 4634 speak: none; 4635 -webkit-font-smoothing: antialiased; 4636 -moz-osx-font-smoothing: grayscale; 3988 4637 } 3989 4638 3990 .post-format-icon.post-format-image { 3991 background-position: 0 -32px; 4639 .post-state-format.post-format-standard:before, 4640 .post-format-icon.post-format-standard:before, 4641 a.post-state-format.format-standard:before { 4642 content: '\f109'; 3992 4643 } 3993 4644 3994 .post-format-icon.post-format-gallery { 3995 background-position: 0 -64px; 4645 .post-state-format.post-format-image:before, 4646 .post-format-icon.post-format-image:before, 4647 a.post-state-format.format-image:before { 4648 content: '\f128'; 3996 4649 } 3997 4650 3998 .post-format-icon.post-format-audio { 3999 background-position: 0 -96px; 4651 .post-state-format.post-format-gallery:before, 4652 .post-format-icon.post-format-gallery:before, 4653 a.post-state-format.format-gallery:before { 4654 content: '\f161'; 4000 4655 } 4001 4656 4002 .post-format-icon.post-format-video { 4003 background-position: 0 -128px; 4657 .post-state-format.post-format-audio:before, 4658 .post-format-icon.post-format-audio:before, 4659 a.post-state-format.format-audio:before { 4660 content: '\f127'; 4004 4661 } 4005 4662 4006 .post-format-icon.post-format-chat { 4007 background-position: 0 -160px; 4663 .post-state-format.post-format-video:before, 4664 .post-format-icon.post-format-video:before, 4665 a.post-state-format.format-video:before { 4666 content: '\f126'; 4008 4667 } 4009 4668 4010 .post-format-icon.post-format-status { 4011 background-position: 0 -192px; 4669 .post-state-format.post-format-chat:before, 4670 .post-format-icon.post-format-chat:before, 4671 a.post-state-format.format-chat:before { 4672 content: '\f125'; 4012 4673 } 4013 4674 4014 .post-format-icon.post-format-aside { 4015 background-position: 0 -224px; 4675 .post-state-format.post-format-status:before, 4676 .post-format-icon.post-format-status:before, 4677 a.post-state-format.format-status:before { 4678 content: '\f130'; 4016 4679 } 4017 4680 4018 .post-format-icon.post-format-quote { 4019 background-position: 0 -256px; 4681 .post-state-format.post-format-aside:before, 4682 .post-format-icon.post-format-aside:before, 4683 a.post-state-format.format-aside:before { 4684 content: '\f123'; 4020 4685 } 4021 4686 4022 .post-format-icon.post-format-link { 4023 background-position: 0 -288px; 4687 .post-state-format.post-format-quote:before, 4688 .post-format-icon.post-format-quote:before, 4689 a.post-state-format.format-quote:before { 4690 content: '\f122'; 4024 4691 } 4025 4692 4693 .post-state-format.post-format-link:before, 4694 .post-format-icon.post-format-link:before, 4695 a.post-state-format.format-link:before { 4696 content: '\f103'; 4697 } 4026 4698 4027 4699 /*------------------------------------------------------------------------------ 4028 4700 12.0 - Categories … … 4050 4722 padding: 0; 4051 4723 } 4052 4724 4053 #post-bodyul.add-menu-item-tabs li {4054 padding: 8px;4725 ul.add-menu-item-tabs li { 4726 padding: 3px 5px 3px 8px; 4055 4727 } 4056 4728 4057 4729 #post-body ul.add-menu-item-tabs li.tabs { … … 4096 4768 ul.categorychecklist li { 4097 4769 margin: 0; 4098 4770 padding: 0; 4099 line-height: 19px;4771 line-height: 22px; 4100 4772 word-wrap: break-word; 4101 4773 } 4102 4774 … … 4135 4807 p.description, 4136 4808 span.description, 4137 4809 .form-wrap p { 4138 font-size: 1 2px;4810 font-size: 13px; 4139 4811 font-style: italic; 4140 font-family: sans-serif;4812 font-family: "Open Sans", sans-serif; 4141 4813 } 4142 4814 4143 4815 .form-wrap .form-field { … … 4163 4835 13.0 - Tags 4164 4836 ------------------------------------------------------------------------------*/ 4165 4837 4838 .tagsdiv { 4839 margin-top: -8px; 4840 } 4841 4166 4842 #poststuff .taghint { 4167 4843 color: #aaa; 4168 4844 margin: 15px 0 -24px 12px; 4169 4845 } 4170 4846 4171 4847 #poststuff .tagsdiv .howto { 4172 margin: 0 0 6px 8px;4848 margin: 0 0 6px 0; 4173 4849 } 4174 4850 4175 4851 .ajaxtag .newtag { … … 4193 4869 } 4194 4870 4195 4871 p.popular-tags { 4196 -webkit-border-radius: 8px; 4197 border-radius: 8px; 4198 border-width: 1px; 4199 border-style: solid; 4872 border: none; 4200 4873 line-height: 2em; 4201 4874 max-width: 1000px; 4202 4875 padding: 8px 12px 12px; … … 4345 5018 display: inline; 4346 5019 padding: 0 0 0 23px; 4347 5020 margin: 0 1em 0 3px; 4348 font-weight: bold;5021 font-weight: 600; 4349 5022 } 4350 5023 4351 5024 .media-upload-form tr.image-size label { 4352 5025 margin: 0 0 0 5px; 4353 font-weight: bold;5026 font-weight: 600; 4354 5027 } 4355 5028 4356 5029 .media-upload-form th.label label { 4357 font-weight: bold;5030 font-weight: 600; 4358 5031 margin: 0.5em; 4359 5032 font-size: 13px; 4360 5033 } … … 4488 5161 position: relative; 4489 5162 width: 200px; 4490 5163 padding: 0 8px; 4491 text-shadow: 0 1px 0 rgba(255,255,255,0.4);4492 5164 color: rgba(0,0,0,0.6); 4493 5165 } 4494 5166 … … 4537 5209 4538 5210 .find-box-head { 4539 5211 cursor: move; 4540 font-weight: bold;5212 font-weight: 600; 4541 5213 height: 2em; 4542 5214 line-height: 2em; 4543 5215 padding: 1px 12px; … … 4683 5355 14.2 - Image Editor 4684 5356 ------------------------------------------------------------------------------*/ 4685 5357 5358 .wp_attachment_details #attachment_caption { 5359 height: 4em; 5360 } 5361 4686 5362 .describe .image-editor { 4687 5363 vertical-align: top; 4688 5364 } … … 4721 5397 .imgedit-wait { 4722 5398 position: absolute; 4723 5399 top: 0; 4724 background: #fff url( ../images/wpspin_light.gif) no-repeat scroll 22px 10px;4725 background-size: 16px 16px;5400 background: #fff url('../images/spinner.gif') no-repeat scroll 22px 10px; 5401 background-size: 20px 20px; 4726 5402 opacity: 0.7; 4727 5403 filter: alpha(opacity=70); 4728 5404 width: 100%; … … 4731 5407 } 4732 5408 4733 5409 .spinner { 4734 background: url( ../images/wpspin_light.gif) no-repeat;4735 background-size: 16px 16px;5410 background: url('../images/spinner.gif') no-repeat; 5411 background-size: 20px 20px; 4736 5412 display: none; 4737 5413 float: right; 4738 5414 opacity: 0.7; 4739 5415 filter: alpha(opacity=70); 4740 width: 16px;4741 height: 16px;4742 margin: 5px 5px 0;5416 width: 20px; 5417 height: 20px; 5418 margin: 2px 5px 0; 4743 5419 } 4744 5420 4745 5421 .no-float { … … 4768 5444 .wp_attachment_image .spinner, 4769 5445 .A1B1 .spinner { 4770 5446 float: left; 4771 padding: 0 4px 4px;5447 padding: 0 0 4px 0; 4772 5448 vertical-align: bottom; 4773 5449 } 4774 5450 … … 4780 5456 .imgedit-menu div { 4781 5457 float: left; 4782 5458 width: 32px; 5459 background: none; 5460 margin: 0 8px 0 0; 4783 5461 height: 32px; 5462 -webkit-font-smoothing: antialiased; 5463 -moz-osx-font-smoothing: grayscale; 5464 text-align: center; 5465 line-height: 28px; 4784 5466 } 4785 5467 4786 .imgedit-crop-wrap { 4787 position: relative; 5468 .imgedit-menu div:before { 5469 font: normal 20px/1 'dashicons'; 5470 speak: none; 5471 vertical-align: middle; 4788 5472 } 4789 5473 4790 .imgedit-crop { 4791 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px; 4792 margin: 0 8px 0 0; 5474 .imgedit-crop:before { 5475 content:'\f165'; 4793 5476 } 4794 5477 4795 .imgedit- crop.disabled:hover{4796 background-position: -9px -31px;5478 .imgedit-rleft:before { 5479 content:'\f166'; 4797 5480 } 4798 5481 4799 .imgedit- crop:hover{4800 background-position: -9px -1px;5482 .imgedit-rright:before { 5483 content:'\f167'; 4801 5484 } 4802 5485 4803 .imgedit-rleft { 4804 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px; 4805 margin: 0 3px; 5486 .imgedit-flipv:before { 5487 content:'\f168'; 4806 5488 } 4807 5489 4808 .imgedit- rleft.disabled:hover{4809 background-position: -46px -31px;5490 .imgedit-fliph:before { 5491 content:'\f169'; 4810 5492 } 4811 5493 4812 .imgedit- rleft:hover{4813 background-position: -46px -1px;5494 .imgedit-undo:before { 5495 content:'\f171'; 4814 5496 } 4815 5497 4816 .imgedit-rright { 4817 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px; 4818 margin: 0 8px 0 3px; 5498 .imgedit-redo:before { 5499 content:'\f172'; 4819 5500 } 4820 5501 4821 .imgedit- rright.disabled:hover{4822 background-position: -77px -31px;5502 .imgedit-crop-wrap { 5503 position: relative; 4823 5504 } 4824 5505 4825 .imgedit- rright:hover{4826 background-position: -77px -1px;5506 .imgedit-crop { 5507 margin: 0 8px 0 0; 4827 5508 } 4828 5509 4829 .imgedit-flipv { 4830 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px; 5510 .imgedit-rleft { 4831 5511 margin: 0 3px; 4832 5512 } 4833 5513 4834 .imgedit- flipv.disabled:hover{4835 background-position: -115px -31px;5514 .imgedit-rright { 5515 margin: 0 8px 0 3px; 4836 5516 } 4837 5517 4838 .imgedit-flipv :hover{4839 background-position: -115px -1px;5518 .imgedit-flipv { 5519 margin: 0 3px; 4840 5520 } 4841 5521 4842 5522 .imgedit-fliph { 4843 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;4844 5523 margin: 0 8px 0 3px; 4845 5524 } 4846 5525 4847 .imgedit-fliph.disabled:hover {4848 background-position: -147px -31px;4849 }4850 4851 .imgedit-fliph:hover {4852 background-position: -147px -1px;4853 }4854 4855 5526 .imgedit-undo { 4856 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;4857 5527 margin: 0 3px; 4858 5528 } 4859 5529 4860 .imgedit-undo.disabled:hover {4861 background-position: -184px -31px;4862 }4863 4864 .imgedit-undo:hover {4865 background-position: -184px -1px;4866 }4867 4868 5530 .imgedit-redo { 4869 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;4870 5531 margin: 0 8px 0 3px; 4871 5532 } 4872 5533 4873 .imgedit-redo.disabled:hover {4874 background-position: -215px -31px;4875 }4876 4877 .imgedit-redo:hover {4878 background-position: -215px -1px;4879 }4880 4881 5534 .imgedit-applyto img { 4882 5535 margin: 0 8px 0 0; 4883 5536 } … … 4940 5593 4941 5594 .form-table { 4942 5595 border-collapse: collapse; 5596 font-size: 14px; 4943 5597 margin-top: 0.5em; 4944 5598 width: 100%; 4945 margin-bottom: -8px;4946 5599 clear: both; 4947 5600 } 4948 5601 4949 5602 .form-table td { 4950 5603 margin-bottom: 9px; 4951 padding: 8px 10px; 4952 line-height: 20px; 4953 font-size: 12px; 5604 padding: 18px 10px; 5605 line-height: 1.3; 5606 font-size: 14px; 5607 vertical-align: middle; 4954 5608 } 4955 5609 4956 5610 .form-table th, 4957 5611 .form-wrap label { 4958 5612 font-weight: normal; 4959 text-shadow: #fff 0 1px 0; 5613 text-shadow: none; 5614 font-size: 14px; 5615 vertical-align: baseline; 4960 5616 } 4961 5617 4962 5618 .form-table th { 4963 5619 vertical-align: top; 4964 5620 text-align: left; 4965 padding: 10px;5621 padding: 20px 10px 20px 0; 4966 5622 width: 200px; 5623 line-height: 1.3; 5624 font-weight: 600; 4967 5625 } 4968 5626 4969 5627 .form-table th.th-full { … … 4984 5642 4985 5643 .form-table td p { 4986 5644 margin-top: 4px; 5645 margin-bottom: 0; 4987 5646 } 4988 5647 4989 5648 .form-table table.color-palette { … … 5000 5659 width: 10px; 5001 5660 } 5002 5661 5662 5663 .form-table td fieldset label { 5664 margin: 0.25em 0 0.5em !important; 5665 display: inline-block; 5666 } 5667 5668 .form-table td fieldset label, 5669 .form-table td fieldset p, 5670 .form-table td fieldset li { 5671 line-height: 1.4em; 5672 } 5673 5674 .form-table input.tog, 5675 .form-table input[type=radio] { 5676 margin-top: -4px; 5677 margin-right: 4px; 5678 float: none; 5679 } 5680 5003 5681 .commentlist li { 5004 5682 padding: 1em 1em .2em; 5005 5683 margin: 0; … … 5087 5765 5088 5766 .comment-ays { 5089 5767 margin-bottom: 0; 5090 border- style: solid;5091 border- width: 1px;5768 border-bottom-style: solid; 5769 border-bottom-width: 1px; 5092 5770 } 5093 5771 5094 .comment-ays th { 5095 border-right-style: solid; 5096 border-right-width: 1px; 5772 .comment-ays .alt { 5773 background-color: transparent; 5097 5774 } 5098 5775 5099 5776 .trash-undo-inside, … … 5131 5808 vertical-align: text-top; 5132 5809 } 5133 5810 5811 #the-comment-list .unapproved th.check-column input { 5812 margin-left: 4px; 5813 } 5134 5814 5135 5815 /*------------------------------------------------------------------------------ 5136 5816 16.0 - Themes … … 5307 5987 margin-right: 10px; 5308 5988 text-transform: uppercase; 5309 5989 font-size: 11px; 5310 line-height: 18px;5990 line-height: 22px; 5311 5991 color: #999; 5312 5992 } 5313 5993 … … 5392 6072 #post-body ul.add-menu-item-tabs li.tabs a, 5393 6073 #TB_window #TB_title a.tb-theme-preview-link, 5394 6074 #TB_window #TB_title a.tb-theme-preview-link:visited { 5395 font-weight: bold;6075 font-weight: 600; 5396 6076 text-decoration: none; 5397 6077 } 5398 6078 … … 5470 6150 .nav-tab { 5471 6151 border-style: solid; 5472 6152 border-width: 1px 1px 0; 5473 color: #aaa;5474 text-shadow: #fff 0 1px 0;5475 6153 font-size: 12px; 5476 6154 line-height: 16px; 5477 6155 display: inline-block; 5478 6156 padding: 4px 14px 6px; 5479 6157 text-decoration: none; 5480 margin: 0 6px -1px 0; 5481 -webkit-border-top-left-radius: 3px; 5482 -webkit-border-top-right-radius: 3px; 5483 border-top-left-radius: 3px; 5484 border-top-right-radius: 3px; 6158 margin: -4px 4px -1px 0; 5485 6159 } 5486 6160 5487 6161 .nav-tab-active { 5488 6162 border-width: 1px; 5489 color: #464646;5490 6163 } 5491 6164 5492 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 6165 .nav-tab-active, 6166 .nav-tab-active:hover { 5493 6167 border-bottom-width: 1px; 5494 6168 border-bottom-style: solid; 6169 } 6170 6171 h2.nav-tab-wrapper, 6172 h3.nav-tab-wrapper { 6173 border-bottom-width: 1px; 6174 border-bottom-style: solid; 5495 6175 padding-bottom: 0; 6176 padding-left: 10px; 5496 6177 } 5497 6178 5498 6179 h2 .nav-tab { 5499 padding: 4px 10px 6px;5500 font-weight: 200;5501 font-size: 20px;6180 padding: 6px 10px; 6181 font-weight: bold; 6182 font-size: 15px; 5502 6183 line-height: 24px; 5503 6184 5504 6185 } … … 5521 6202 #ed_reply_toolbar #ed_reply_strong, 5522 6203 .item-controls .item-order a, 5523 6204 .feature-filter .feature-name { 5524 font-weight: bold;6205 font-weight: 600; 5525 6206 } 5526 6207 5527 6208 .plugins p { … … 5546 6227 list-style-type: disc; 5547 6228 } 5548 6229 5549 .plugins .row-actions { 6230 .plugins .row-actions-visible { 6231 font-size: 13px; 5550 6232 padding: 0; 5551 6233 } 5552 6234 5553 .plugins tbody th.check-column {5554 padding: 7px 0;5555 }5556 5557 6235 .plugins .inactive td, 5558 6236 .plugins .inactive th, 5559 6237 .plugins .active td, 5560 6238 .plugins .active th { 5561 border-top-style: solid; 5562 border-top-width: 1px; 5563 padding: 5px 7px 0; 6239 padding: 10px 9px; 5564 6240 } 5565 6241 5566 6242 .plugins .update th, … … 5577 6253 white-space:nowrap; 5578 6254 } 5579 6255 6256 .plugins .inactive .plugin-title strong { 6257 font-weight: 400; 6258 } 6259 5580 6260 .plugins .second, 5581 .plugins .row-actions {6261 .plugins .row-actions-visible { 5582 6262 padding: 0 0 5px; 5583 6263 } 5584 6264 5585 6265 .plugins .update .second, 5586 .plugins .update .row-actions {6266 .plugins .update .row-actions-visible { 5587 6267 padding-bottom: 0; 5588 6268 } 5589 6269 … … 5594 6274 } 5595 6275 5596 6276 .plugin-update-tr .update-message { 5597 margin: 5px; 5598 padding: 3px 5px; 6277 border: none; 6278 font-size: 13px; 6279 font-weight: normal; 6280 margin: 6px 12px 12px; 6281 padding: 6px 12px; 5599 6282 } 5600 6283 6284 .plugin-update-tr .update-message:before { 6285 content: '\f113'; 6286 display: inline-block; 6287 font: normal 20px/1 'dashicons'; 6288 speak: none; 6289 margin: 0 8px 0 -2px; 6290 -webkit-font-smoothing: antialiased; 6291 -moz-osx-font-smoothing: grayscale; 6292 vertical-align: top; 6293 } 6294 5601 6295 .plugin-install-php h4 { 5602 6296 margin: 2.5em 0 8px; 5603 6297 } … … 5620 6314 font-size: 22px; 5621 6315 } 5622 6316 5623 #your-profile #rich_editing {5624 border: none;5625 }5626 5627 6317 #display_name { 5628 6318 width: 15em; 5629 6319 } … … 5636 6326 19.0 - Tools 5637 6327 ------------------------------------------------------------------------------*/ 5638 6328 6329 body.press-this { 6330 color: #333; 6331 margin: 0; 6332 padding: 0; 6333 min-width: 708px; 6334 min-height: 400px; 6335 } 6336 5639 6337 .pressthis { 5640 6338 margin: 20px 0; 5641 6339 } … … 5649 6347 cursor: move; 5650 6348 color: #333; 5651 6349 background: #e6e6e6; 5652 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));5653 background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);5654 background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);5655 background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);5656 background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);5657 6350 -webkit-border-radius: 5px; 5658 6351 border-radius: 5px; 5659 6352 border: 1px solid #b4b4b4; … … 5661 6354 line-height: 16px; 5662 6355 font-size: 14px; 5663 6356 text-decoration: none; 5664 text-shadow: 0 1px 0px #fff;5665 6357 } 5666 6358 5667 6359 .pressthis a:active { … … 5677 6369 } 5678 6370 5679 6371 .pressthis a span { 5680 background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;5681 background-size: 24px 20px;5682 padding: 8px 11px 8px 27px;5683 margin: 0 5px;5684 6372 display: inline-block; 6373 margin: 0px 0 0; 6374 padding: 0px 12px 8px 9px; 5685 6375 } 5686 6376 6377 .pressthis a span:before { 6378 font: normal 20px/1 'dashicons'; 6379 content:'\f157'; 6380 position: relative; 6381 display: inline-block; 6382 top: 4px; 6383 margin-right: 4px; 6384 } 6385 5687 6386 .pressthis a:after { 5688 6387 content: ''; 5689 6388 width: 70%; … … 5708 6407 #utc-time, #local-time { 5709 6408 padding-left: 25px; 5710 6409 font-style: italic; 5711 font-family: sans-serif;6410 font-family: "Open Sans", sans-serif; 5712 6411 } 5713 6412 5714 6413 .defaultavatarpicker .avatar { … … 5737 6436 } 5738 6437 5739 6438 #wpfooter p { 6439 font-size: 13px; 5740 6440 margin: 0; 5741 6441 line-height: 20px; 5742 6442 } 5743 6443 6444 #footer-thankyou { 6445 font-style: italic; 6446 } 6447 5744 6448 #wpfooter a { 5745 6449 text-decoration: none; 5746 6450 } … … 5786 6490 margin: 0.2em 200px 0 0; 5787 6491 line-height: 1.2em; 5788 6492 font-size: 2.8em; 5789 font-weight: 200;6493 font-weight: 400; 5790 6494 } 5791 6495 5792 6496 .about-text, 5793 6497 .about-description, 5794 6498 .about-wrap li.wp-person a.web { 5795 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;5796 6499 font-weight: normal; 5797 6500 line-height: 1.6em; 5798 6501 font-size: 20px; … … 5826 6529 margin-top: 0.6em; 5827 6530 } 5828 6531 5829 .about-wrap code { 6532 .about-wrap code, 6533 .about-wrap ol li p { 5830 6534 font-size: 14px; 5831 6535 } 5832 6536 6537 5833 6538 /* Point Releases */ 5834 6539 5835 6540 .about-wrap .point-releases { … … 5847 6552 /* WordPress Version Badge */ 5848 6553 5849 6554 .wp-badge { 5850 padding-top: 142px; 5851 height: 50px; 5852 width: 173px; 5853 font-weight: bold; 6555 background: url('../images/wordpress-logo.svg?ver=20131107') #000 no-repeat; 6556 background-position: center 30px; 6557 background-size: 110px 110px; 5854 6558 font-size: 14px; 5855 6559 text-align: center; 5856 margin: 0 -5px; 5857 background: url('../images/wp-badge.png?ver=20111120') no-repeat; 6560 font-weight: 600; 6561 margin: 5px 0 0; 6562 padding-top: 155px; 6563 height: 45px; 6564 display: inline-block; 6565 width: 165px; 6566 text-rendering: optimizeLegibility; 5858 6567 } 5859 6568 6569 5860 6570 .about-wrap .wp-badge { 5861 6571 position: absolute; 5862 6572 top: 0; … … 5870 6580 } 5871 6581 5872 6582 .about-wrap h2 .nav-tab { 5873 padding: 4px 1 0px 6px;6583 padding: 4px 15px 6px; 5874 6584 margin: 0 3px -1px 0; 5875 6585 font-size: 18px; 5876 6586 vertical-align: top; 6587 border-width: 1px; 5877 6588 } 5878 6589 5879 6590 .about-wrap h2 .nav-tab-active { 5880 6591 font-weight: bold; 5881 padding-top: 3px;5882 6592 } 5883 6593 5884 6594 /* Changelog / Update screen */ … … 5898 6608 } 5899 6609 5900 6610 .about-wrap .feature-section.two-col div { 6611 position: relative; 5901 6612 width: 47%; 5902 6613 margin-right: 4.999999999%; 5903 6614 float: left; 5904 6615 } 5905 6616 5906 6617 .about-wrap .feature-section.three-col div { 6618 position: relative; 5907 6619 width: 30%; 5908 6620 margin-right: 4.999999999%; 5909 6621 float: left; … … 5911 6623 5912 6624 .about-wrap .three-col.about-updates .col-1, 5913 6625 .about-wrap .three-col.about-updates .col-3 { 5914 width: 37%;6626 width: 50%; 5915 6627 margin: 0; 6628 -moz-box-sizing: border-box; 6629 box-sizing: border-box; 5916 6630 } 5917 6631 6632 .about-wrap .three-col.about-updates .col-1 { 6633 z-index: 1; 6634 padding-right: 100px; 6635 } 6636 5918 6637 .about-wrap .three-col.about-updates .col-2 { 5919 width: 16%; 5920 margin: 0 5%; 6638 position: absolute; 6639 width: 100%; 6640 text-align: center; 5921 6641 } 5922 6642 6643 .about-wrap .three-col.about-updates .col-3 { 6644 padding-left: 100px; 6645 } 6646 5923 6647 .about-wrap .feature-section.col .last-feature { 5924 6648 margin-right: 0; 5925 6649 } … … 5935 6659 .about-wrap .about-passwords { 5936 6660 margin: 20px 0; 5937 6661 padding: 1px 20px 10px; 5938 background-color: #f 9f9f9;6662 background-color: #fff; 5939 6663 } 5940 6664 5941 6665 .about-wrap .about-auto-update { … … 5980 6704 margin-left: 3em; 5981 6705 } 5982 6706 6707 /* Icons to replace images. */ 5983 6708 6709 .about-wrap .feature-section .col-2 img, 6710 .about-wrap .feature-section.two-col p img { 6711 display: none; 6712 } 6713 6714 .about-wrap .feature-section .col-2:before, 6715 .about-wrap .feature-section .col-2:after, 6716 .about-wrap .feature-section.two-col p:before { 6717 display: inline-block; 6718 position: relative; 6719 font: normal 50px/125px 'dashicons'; 6720 speak: none; 6721 content: '\f147'; 6722 -webkit-font-smoothing: antialiased; 6723 -moz-osx-font-smoothing: grayscale; 6724 } 6725 6726 .about-wrap .feature-section .col-2:before { 6727 width: 100%; 6728 } 6729 6730 .about-wrap .feature-section .col-2:after { 6731 position: absolute; 6732 top: 0; 6733 left: 0; 6734 width: 100%; 6735 font-size: 170px; 6736 line-height: 125px; 6737 content: '\f113'; 6738 } 6739 6740 .about-wrap .feature-section.two-col p:before { 6741 float: right; 6742 top: -25px; 6743 font-size: 130px; 6744 line-height: 1; 6745 content: '\f179'; 6746 } 6747 6748 .about-wrap .feature-section.two-col .last-feature p:before { 6749 top: -15px; 6750 font-size: 110px; 6751 content: '\f319'; 6752 } 6753 6754 .about-wrap .about-passwords .feature-section.two-col p:before { 6755 content: ''; 6756 } 6757 5984 6758 /* Return to Dashboard Home link */ 5985 6759 5986 6760 .about-wrap .return-to-dashboard { … … 6082 6856 } 6083 6857 6084 6858 .wp-full-overlay { 6085 background: #fff;6859 background: transparent; 6086 6860 z-index: 500000; 6087 6861 position: fixed; 6088 6862 overflow: visible; … … 6096 6870 6097 6871 .wp-full-overlay-sidebar { 6098 6872 -webkit-box-sizing: border-box; 6099 -moz-box-sizing: border-box; 6100 box-sizing: border-box; 6101 6873 -moz-box-sizing: border-box; 6874 box-sizing: border-box; 6102 6875 position: fixed; 6103 6876 width: 300px; 6104 6877 height: 100%; … … 6109 6882 margin: 0; 6110 6883 z-index: 10; 6111 6884 overflow: auto; 6112 background: #f5f5f5;6113 border-right: 1px solid rgba( 0, 0, 0, 0.2 );6885 background: transparent; 6886 border-right: none; 6114 6887 } 6115 6888 6116 6889 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { … … 6138 6911 bottom: 0; 6139 6912 right: 0; 6140 6913 width: 3px; 6141 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;6142 6914 z-index: 1000; 6143 6915 } 6144 6916 … … 6160 6932 line-height: 45px; 6161 6933 z-index: 10; 6162 6934 margin: 0; 6935 border-top: none; 6936 -webkit-box-shadow: none; 6937 box-shadow: none; 6163 6938 } 6164 6939 6165 .wp-full-overlay-sidebar .wp-full-overlay-header { 6166 border-top: 0; 6167 border-bottom: 1px solid #fff; 6168 box-shadow: inset 0 -1px 0 0px #dfdfdf; 6940 .wp-full-overlay-sidebar .wp-full-overlay-header a.back { 6941 margin-top: 10px; 6169 6942 } 6170 6943 6171 6944 .wp-full-overlay-sidebar .wp-full-overlay-footer { 6172 6945 bottom: 0; 6173 border-bottom: 0; 6174 border-top: 1px solid #dfdfdf; 6175 box-shadow: inset 0 1px 0 0px #fff; 6946 border-bottom: none; 6947 border-top: none; 6948 -webkit-box-shadow: none; 6949 box-shadow: none; 6176 6950 } 6177 6951 6178 6952 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { … … 6184 6958 overflow: auto; 6185 6959 } 6186 6960 6187 .wp-full-overlay-sidebar-content .accordion-section:first-child {6188 border-top: 1px solid #fff;6189 }6190 6191 6961 /* Close Link */ 6192 6962 .wp-full-overlay .close-full-overlay { 6193 6963 text-decoration: none; … … 6214 6984 } 6215 6985 6216 6986 .wp-full-overlay .collapse-sidebar-arrow { 6217 position: absolute;6218 margin-top: 2px;6219 margin-left: 2px;6987 position: static; 6988 margin-top: 0; 6989 margin-left: 0; 6220 6990 display: block; 6221 width: 15px;6222 height: 15px;6223 background: transparent url('../images/arrows.png') no-repeat -1px -73px;6991 width: auto; 6992 height: auto; 6993 background: none; 6224 6994 } 6225 6995 6996 .wp-full-overlay .collapse-sidebar-arrow:before { 6997 float: left; 6998 content: "\f148"; 6999 font: normal 20px/1 'dashicons'; 7000 speak: none; 7001 display: block; 7002 padding: 0; 7003 text-indent: 0; 7004 text-align: center; 7005 position: relative; 7006 -webkit-font-smoothing: antialiased; 7007 -moz-osx-font-smoothing: grayscale; 7008 text-decoration: none !important; 7009 } 7010 6226 7011 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 6227 7012 background-position: -1px -109px; 6228 7013 } … … 6230 7015 .wp-full-overlay .collapse-sidebar-label { 6231 7016 position: absolute; 6232 7017 left: 100%; 6233 color: #808080;6234 7018 line-height: 20px; 6235 7019 margin-left: 10px; 6236 7020 } … … 6238 7022 .wp-full-overlay.collapsed .collapse-sidebar-label { 6239 7023 display: none; 6240 7024 } 6241 6242 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {6243 color: #666;6244 }6245 6246 7025 /* Animations */ 6247 7026 .wp-full-overlay, 6248 7027 .wp-full-overlay-sidebar, … … 6253 7032 -ms-transition-property: left, right, top, bottom, width, margin; 6254 7033 -o-transition-property: left, right, top, bottom, width, margin; 6255 7034 transition-property: left, right, top, bottom, width, margin; 6256 6257 7035 -webkit-transition-duration: 0.2s; 6258 7036 -moz-transition-duration: 0.2s; 6259 7037 -ms-transition-duration: 0.2s; … … 6261 7039 transition-duration: 0.2s; 6262 7040 } 6263 7041 6264 6265 7042 /*------------------------------------------------------------------------------ 6266 7043 24.0 - Customize Loader 6267 7044 ------------------------------------------------------------------------------*/ … … 6297 7074 } 6298 7075 6299 7076 .customize-loading #customize-container { 6300 background: #fff url( "../images/wpspin_light.gif") no-repeat fixed center center;6301 background-size: 16px 16px;7077 background: #fff url('../images/spinner.gif') no-repeat fixed center center; 7078 background-size: 20px 20px; 6302 7079 } 6303 7080 6304 7081 #customize-container iframe, … … 6318 7095 bottom: 16px; 6319 7096 } 6320 7097 7098 #customize-controls { 7099 margin-top: 0; 7100 } 7101 6321 7102 #theme-installer { 6322 7103 display: none; 6323 7104 } … … 6397 7178 } 6398 7179 6399 7180 .pagenav span { 6400 font-weight: bold;7181 font-weight: 600; 6401 7182 margin: 0 6px; 6402 7183 } 6403 7184 6404 7185 .row-title { 6405 font-size: 1 3px !important;6406 font-weight: bold;7186 font-size: 14px !important; 7187 font-weight: 600; 6407 7188 } 6408 7189 6409 7190 .column-author img, .column-username img { … … 6413 7194 } 6414 7195 6415 7196 .row-actions { 7197 font-size: 13px; 6416 7198 visibility: hidden; 6417 7199 padding: 2px 0 0; 6418 7200 } 6419 7201 7202 .mobile .row-actions { 7203 visibility: visible; 7204 } 7205 6420 7206 tr:hover .row-actions, 6421 .mobile .row-actions,6422 .row-actions.visible,6423 7207 div.comment-item:hover .row-actions { 6424 7208 visibility: visible; 6425 7209 } 6426 7210 6427 /* deprecated */6428 7211 .row-actions-visible { 6429 7212 padding: 2px 0 0; 6430 7213 } … … 6443 7226 font-size: 12px; 6444 7227 overflow: auto; 6445 7228 } 7229 .tagchecklist br { 7230 display: none; 7231 } 6446 7232 .tagchecklist strong { 6447 7233 margin-left: -8px; 6448 7234 position: absolute; … … 6451 7237 margin-right: 25px; 6452 7238 display: block; 6453 7239 float: left; 6454 font-size: 1 1px;7240 font-size: 13px; 6455 7241 line-height: 1.8em; 6456 7242 white-space: nowrap; 6457 7243 cursor: default; 6458 7244 } 7245 6459 7246 .tagchecklist span a { 6460 margin: 4px 0 0 -10px;7247 margin: 1px 0 0 -17px; 6461 7248 cursor: pointer; 6462 width: 10px;6463 height: 10px;7249 width: 20px; 7250 height: 20px; 6464 7251 display: block; 6465 7252 float: left; 6466 text-indent: -9999px;7253 text-indent: 0; 6467 7254 overflow: hidden; 6468 7255 position: absolute; 6469 7256 } … … 6478 7265 6479 7266 #poststuff h3, 6480 7267 .metabox-holder h3 { 6481 font-size: 15px; 6482 font-weight: normal; 6483 padding: 7px 10px; 7268 font-size: 14px; 7269 padding: 7px 12px; 6484 7270 margin: 0; 6485 line-height: 1 ;7271 line-height: 1.4; 6486 7272 } 6487 7273 6488 7274 #poststuff .inside { 6489 margin: 6px 0 8px;7275 margin: 6px 0 0 0; 6490 7276 } 6491 7277 6492 7278 #poststuff .inside #parent_id, … … 6590 7376 6591 7377 .error-message { 6592 7378 color: red; 6593 font-weight: bold;7379 font-weight: 600; 6594 7380 } 6595 7381 6596 7382 /* Scrollbar fix for bulk upgrade iframe */ … … 6636 7422 width: auto; 6637 7423 } 6638 7424 7425 #post-body #post-body-content #namediv h3 { 7426 margin-top: 0; 7427 } 7428 7429 #namediv h3 label { 7430 vertical-align: baseline; 7431 } 7432 6639 7433 #namediv table { 6640 7434 width: 100%; 6641 7435 } … … 6745 7539 } 6746 7540 6747 7541 .js #dashboard-widgets h3 .postbox-title-action { 6748 right: 3 0px;7542 right: 33px; 6749 7543 } 6750 7544 6751 7545 #dashboard-widgets h4 { 6752 7546 font-weight: normal; 6753 font-size: 1 3px;7547 font-size: 14px; 6754 7548 margin: 0 0 .2em; 6755 7549 padding: 0; 6756 7550 } 6757 7551 7552 #dashboard_plugins h5 { 7553 font-size: 14px; 7554 } 7555 6758 7556 /* Right Now */ 6759 7557 #dashboard_right_now p.sub, 6760 7558 #dashboard_right_now .table, #dashboard_right_now .versions { … … 6762 7560 } 6763 7561 6764 7562 #dashboard_right_now .inside { 6765 font-size: 1 2px;7563 font-size: 13px; 6766 7564 padding-top: 20px; 6767 7565 } 6768 7566 6769 7567 #dashboard_right_now p.sub { 6770 7568 padding: 5px 0 15px; 6771 color: #8f8f8f; 6772 font-size: 14px; 7569 font-size: 11px; 7570 font-weight: 600; 7571 left: 14px; 7572 letter-spacing: 1px; 6773 7573 position: absolute; 7574 text-transform: uppercase; 6774 7575 top: -17px; 6775 left: 15px;6776 7576 } 6777 7577 6778 7578 #dashboard_right_now .table { … … 6783 7583 6784 7584 #dashboard_right_now .table_content { 6785 7585 float: left; 6786 border-top-width: 1px; 6787 border-top-style: solid; 6788 width: 45%; 7586 width: 48%; 6789 7587 } 6790 7588 6791 7589 #dashboard_right_now .table_discussion { 6792 7590 float: right; 6793 border-top-width: 1px;6794 border-top-style: solid;6795 7591 width: 45%; 6796 7592 } 6797 7593 … … 6820 7616 } 6821 7617 6822 7618 #dashboard_right_now .t { 6823 font-size: 12px;6824 7619 padding-right: 12px; 6825 padding-top: 6px;6826 color: #777;6827 7620 } 6828 7621 7622 #dashboard_right_now .t, 7623 #dashboard_right_now .b { 7624 font-size: 14px; 7625 padding-top: 4px; 7626 } 7627 6829 7628 #dashboard_right_now .t a { 6830 7629 white-space: nowrap; 6831 7630 } … … 6864 7663 } 6865 7664 6866 7665 #dashboard_recent_comments .comment-meta .approve { 6867 font-style: italic; 6868 font-family: sans-serif; 6869 font-size: 10px; 7666 font-family: "Open Sans", sans-serif; 7667 font-size: 13px; 7668 line-height: 1; 7669 margin: 0 10px; 6870 7670 } 6871 7671 6872 7672 #dashboard_recent_comments .subsubsub { … … 6879 7679 } 6880 7680 6881 7681 #the-comment-list .comment-item { 6882 padding: 1em 1 0px;7682 padding: 1em 12px; 6883 7683 border-top: 1px solid; 6884 7684 } 6885 7685 6886 7686 #the-comment-list .pingback { 6887 padding-left: 9px !important;7687 padding-left: 12px !important; 6888 7688 } 6889 7689 6890 7690 #the-comment-list .comment-item, 6891 7691 #the-comment-list #replyrow { 6892 margin: 0 -1 0px;7692 margin: 0 -12px; 6893 7693 } 6894 7694 6895 7695 #the-comment-list .comment-item:first-child { … … 6902 7702 } 6903 7703 6904 7704 #the-comment-list .comment-item h4 { 6905 line-height: 1. 7em;6906 margin-top: -0.4em;6907 color: # 777;7705 line-height: 1.5em; 7706 margin-top: 0; 7707 color: #999; 6908 7708 } 6909 7709 6910 7710 #the-comment-list .comment-item h4 cite { … … 6927 7727 #the-comment-list .comment-item p.row-actions { 6928 7728 margin: 3px 0 0; 6929 7729 padding: 0; 6930 font-size: 1 2px;7730 font-size: 13px; 6931 7731 } 6932 7732 6933 7733 /* QuickPress */ 7734 #header-logo { 7735 display: none; 7736 } 7737 7738 #site-heading:before { 7739 top: 3px; 7740 position: relative; 7741 display: inline-block; 7742 font: normal 18px/1 'dashicons'; 7743 speak: none; 7744 color: #727272; 7745 content: '\f120'; 7746 -webkit-font-smoothing: antialiased; 7747 -moz-osx-font-smoothing: grayscale; 7748 } 6934 7749 .no-js #dashboard_quick_press { 6935 7750 display: none; 6936 7751 } … … 6967 7782 6968 7783 #tags-input-wrap #tags-input { 6969 7784 outline: none; 7785 padding: 3px 6px; 6970 7786 } 6971 7787 6972 7788 #title-wrap #title-prompt-text { … … 6976 7792 6977 7793 #tags-input-wrap #tags-input-prompt-text { 6978 7794 font-size: 1em; 6979 padding: 4px 8px;7795 padding: 5px 8px; 6980 7796 } 6981 7797 6982 7798 #dashboard_quick_press .input-text-wrap, 6983 7799 #dashboard_quick_press .textarea-wrap { 6984 margin: 0 0 1em 0;7800 margin: 0 0 .7em 0; 6985 7801 } 6986 7802 7803 #dashboard_quick_press .input-text-wrap { 7804 margin-right: 1px; 7805 } 7806 7807 #dashboard_quick_press .textarea-wrap { 7808 margin-left: 1px; 7809 } 7810 6987 7811 #dashboard_quick_press .wp-media-buttons { 6988 margin: 0 0 .2em1px;7812 margin: 0 0 2px 1px; 6989 7813 padding: 0; 6990 7814 } 6991 7815 6992 7816 #dashboard_quick_press .wp-media-buttons a { 6993 7817 color: #777; 7818 margin-bottom: 0; 6994 7819 } 6995 7820 6996 7821 #dashboard-widgets #dashboard_quick_press form p.submit input { … … 7033 7858 7034 7859 #dashboard_recent_drafts h4 abbr { 7035 7860 font-weight: normal; 7036 font-family: sans-serif;7861 font-family: "Open Sans", sans-serif; 7037 7862 font-size: 12px; 7038 7863 color: #999; 7039 7864 margin-left: 3px; … … 7047 7872 } 7048 7873 7049 7874 a.rsswidget { 7050 font-size: 13px; 7875 font-size: 14px; 7876 font-weight: 600; 7051 7877 line-height: 1.7em; 7052 7878 } 7053 7879 … … 7058 7884 7059 7885 .rss-widget span.rss-date { 7060 7886 color: #999; 7061 font-size: 1 2px;7887 font-size: 13px; 7062 7888 margin-left: 3px; 7063 7889 } 7064 7890 … … 7108 7934 /* Browser Nag */ 7109 7935 #dashboard_browser_nag a.update-browser-link { 7110 7936 font-size: 1.2em; 7111 font-weight: bold;7937 font-weight: 600; 7112 7938 } 7113 7939 7114 7940 #dashboard_browser_nag a { … … 7144 7970 7145 7971 #dashboard_browser_nag.postbox h3 { 7146 7972 border-bottom-color: #f6e2ac; 7147 text-shadow: none;7148 7973 background: transparent none; 7149 7974 color: #fff; 7150 7975 -webkit-box-shadow: none; … … 7155 7980 color: #fff; 7156 7981 } 7157 7982 7158 #dashboard_browser_nag.browser-insecure a.browse-happy-link, 7159 #dashboard_browser_nag.browser-insecure a.update-browser-link { 7160 text-shadow: #871b15 0 1px 0; 7983 /* Make the browser nags easier to read with Open Sans */ 7984 7985 #dashboard_browser_nag h3.hndle { 7986 border: none; 7987 font-weight: 600; 7988 font-size: 20px; 7989 padding-top: 10px; 7161 7990 } 7162 7991 7163 #dashboard_browser_nag a.browse-happy-link, 7164 #dashboard_browser_nag a.update-browser-link { 7165 text-shadow: #d29a04 0 1px 0; 7992 .postbox#dashboard_browser_nag p a.dismiss { 7993 font-size: 14px; 7166 7994 } 7167 7995 7996 .postbox#dashboard_browser_nag p, 7997 .postbox#dashboard_browser_nag a, 7998 .postbox#dashboard_browser_nag p.browser-update-nag { 7999 font-size: 16px; 8000 } 7168 8001 8002 7169 8003 /* login */ 7170 8004 8005 #loginform p.submit, 8006 .login-action-lostpassword p.submit { 8007 border: none; 8008 margin: -10px 0 20px; /* May want to revisit this */ 8009 } 8010 7171 8011 .login * { 7172 8012 margin: 0; 7173 8013 padding: 0; 7174 8014 } 7175 8015 7176 8016 .login form { 7177 margin-left: 8px; 8017 margin-top: 20px; 8018 margin-left: 0; 7178 8019 padding: 26px 24px 46px; 7179 8020 font-weight: normal; 7180 background: #fff; 7181 border: 1px solid #e5e5e5; 7182 -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 7183 box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px; 8021 overflow: hidden; 7184 8022 } 7185 8023 7186 8024 .login form .forgetmenot { … … 7198 8036 } 7199 8037 7200 8038 #login form p.submit { 8039 margin: 0; 7201 8040 padding: 0; 7202 8041 } 7203 8042 … … 7211 8050 line-height: 19px; 7212 8051 } 7213 8052 8053 .login h1 { 8054 text-align: center; 8055 } 8056 7214 8057 .login h1 a { 7215 background-image: url('../images/wordpress-logo. png?ver=20120216');7216 background-size: 274px 63px;7217 background-position: top center;8058 background-image: url('../images/wordpress-logo.svg?ver=20131107'); 8059 background-size: 80px 80px; 8060 background-position: center top; 7218 8061 background-repeat: no-repeat; 7219 width: 326px; 7220 height: 67px; 8062 color: #999; 8063 height: 80px; 8064 font-size: 20px; 8065 font-weight: normal; 8066 line-height: 1.3em; 8067 margin: 0 auto 25px; 8068 padding: 0; 8069 text-decoration: none; 8070 width: 80px; 7221 8071 text-indent: -9999px; 7222 8072 outline: none; 7223 8073 overflow: hidden; 7224 padding-bottom: 15px;7225 8074 display: block; 7226 8075 } 7227 8076 … … 7233 8082 7234 8083 #login_error, 7235 8084 .login .message { 7236 margin : 0 0 16px 8px;8085 margin-left: 0; 7237 8086 padding: 12px; 7238 8087 } 7239 8088 7240 8089 .login #nav, 7241 8090 .login #backtoblog { 7242 text-shadow: #fff 0 1px 0; 7243 margin: 0 0 0 16px; 7244 padding: 16px 16px 0; 8091 font-size: 13px; 8092 padding: 0 24px 0; 7245 8093 } 7246 8094 8095 .login #nav { 8096 margin: 24px 0 0 0; 8097 } 8098 7247 8099 #backtoblog { 7248 padding: 12px 16px0;8100 margin: 16px 0 0 0; 7249 8101 } 7250 8102 7251 8103 .login form .input, 7252 8104 .login input[type="text"] { 7253 8105 color: #555; 7254 font-weight: 200;7255 8106 font-size: 24px; 7256 8107 line-height: 1; 7257 8108 width: 100%; … … 7268 8119 7269 8120 .login #pass-strength-result { 7270 8121 width: 250px; 7271 font-weight: bold;8122 font-weight: 600; 7272 8123 border-style: solid; 7273 8124 border-width: 1px; 7274 8125 margin: 12px 0 6px; … … 7320 8171 /* ms */ 7321 8172 /* Dashboard: MS Specific Data */ 7322 8173 #dashboard_right_now p.musub { 7323 margin-top: 12px; 8174 margin: 20px -2px 0; 8175 padding: 15px 5px 10px; 7324 8176 border-top: 1px solid #ececec; 7325 padding-left: 16px;7326 8177 position: static; 7327 8178 } 7328 8179 … … 7339 8190 border-top: none; 7340 8191 } 7341 8192 7342 #dashboard_right_now div.musubtable .t { 8193 #dashboard_right_now div.musubtable .t, 8194 #dashboard_right_now div.musubtable .b { 8195 vertical-align: top; 8196 padding: 0; 7343 8197 white-space: normal; 7344 8198 } 7345 8199 8200 #dashboard_right_now div.musubtable .b { 8201 padding-right: 3px; 8202 } 8203 7346 8204 /* Background Color for Site Status */ 7347 8205 .wp-list-table .site-deleted { 7348 8206 background: #ff8573; … … 7363 8221 display: block; 7364 8222 } 7365 8223 7366 #nav-menu-meta ul.outer-border {7367 -webkit-border-radius: 3px;7368 border-radius: 3px;7369 }7370 7371 8224 .accordion-section ul.category-tabs, 7372 8225 .accordion-section ul.add-menu-item-tabs, 7373 8226 .accordion-section ul.wp-tab-bar { … … 7391 8244 margin-top: 23px; 7392 8245 } 7393 8246 8247 #nav-menus-frame .accordion-section-content .inside { 8248 font-size: 14px; 8249 } 8250 7394 8251 #wpbody-content #menu-settings-column { 7395 8252 display:inline; 7396 8253 width:281px; … … 7406 8263 } 7407 8264 7408 8265 .metabox-holder-disabled .postbox, 7409 .metabox-holder-disabled .accordion-section-content { 8266 .metabox-holder-disabled .accordion-section-content, 8267 .metabox-holder-disabled .accordion-section-title { 7410 8268 opacity: 0.5; 7411 8269 filter: alpha(opacity=50); 7412 8270 } … … 7440 8298 margin-top: 23px; 7441 8299 padding: 10px; 7442 8300 overflow: hidden; 7443 -webkit-border-radius: 3px;7444 border-radius: 3px;7445 8301 } 7446 8302 7447 8303 .manage-menus select { … … 7467 8323 margin: 0 0 10px; 7468 8324 } 7469 8325 8326 #post-body #post-body-content h3 { 8327 margin-top: 1em; 8328 } 8329 7470 8330 .menu-settings { 8331 border-top-width: 1px; 8332 border-top-style: solid; 7471 8333 margin-top: 2em; 7472 overflow: hidden;7473 8334 } 7474 8335 7475 8336 .menu-settings dl { 7476 8337 margin: 0 0 10px; 7477 8338 overflow: hidden; 7478 position: relative;7479 8339 } 7480 8340 7481 8341 .menu-settings dd { … … 7484 8344 width: 60%; 7485 8345 } 7486 8346 8347 .menu-settings dt { 8348 float: left; 8349 clear: both; 8350 width: 18%; 8351 padding: 3px 1px 0; 8352 } 8353 8354 .menu-settings label { 8355 vertical-align: baseline; 8356 } 8357 7487 8358 .menu-edit .checkbox-input { 7488 8359 margin-top: 4px; 7489 8360 } … … 7523 8394 7524 8395 #nav-menu-header { 7525 8396 border-bottom: 1px solid; 7526 margin-bottom: 13px;8397 margin-bottom: 0; 7527 8398 } 7528 8399 7529 8400 #nav-menu-header .menu-name-label { 7530 margin-top: 2px;8401 margin-top: 4px; 7531 8402 } 7532 8403 7533 #nav-menu-footer {7534 border-top: 1px solid;7535 }7536 7537 8404 .nav-menus-php #post-body div.updated, 7538 8405 .nav-menus-php #post-body div.error { 7539 8406 margin: 0; … … 7545 8412 } 7546 8413 7547 8414 #menu-management .menu-add-new abbr { 7548 font-weight: bold;8415 font-weight:600; 7549 8416 } 7550 8417 7551 8418 #select-nav-menu-container { … … 7624 8491 margin: 0; 7625 8492 } 7626 8493 7627 #nav-menu-meta .accordion-container .top {7628 border-top: 1px solid #dfdfdf;7629 }7630 7631 #nav-menu-meta .accordion-container .accordion-section:first-child,7632 #nav-menu-meta .accordion-container .accordion-section:first-child h3,7633 #nav-menu-meta .accordion-container .top,7634 #nav-menu-meta .accordion-container .top h3 {7635 -webkit-border-top-right-radius: 3px;7636 -webkit-border-top-left-radius: 3px;7637 border-top-right-radius: 3px;7638 border-top-left-radius: 3px;7639 }7640 7641 #nav-menu-meta .accordion-container .accordion-section:last-child,7642 #nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,7643 #nav-menu-meta .accordion-container .bottom,7644 #nav-menu-meta .accordion-container .bottom:not(.open) h3 {7645 -webkit-border-bottom-right-radius: 3px;7646 -webkit-border-bottom-left-radius: 3px;7647 border-bottom-right-radius: 3px;7648 border-bottom-left-radius: 3px;7649 }7650 7651 8494 .customlinkdiv .howto input { 7652 8495 width: 180px; 7653 8496 } … … 7685 8528 .nav-menus-php .submitcancel { 7686 8529 display: block; 7687 8530 float: left; 7688 margin: 4px 0;8531 margin: 6px 0; 7689 8532 line-height: 15px; 7690 8533 } 7691 8534 … … 7763 8606 } 7764 8607 7765 8608 .nav-menus-php .howto span { 7766 margin-top: 4px;8609 margin-top: 6px; 7767 8610 display: block; 7768 8611 float: left; 7769 8612 } … … 7806 8649 margin-top: -3px; 7807 8650 } 7808 8651 8652 .menu-item-title input[type=checkbox] { 8653 display: inline-block; 8654 margin-top: -4px; 8655 } 8656 7809 8657 /* Nav Menu */ 7810 8658 #menu-container .inside { 7811 8659 padding-bottom: 10px; … … 7836 8684 margin: 9px 0 0; 7837 8685 } 7838 8686 7839 .menu-item- handle {8687 .menu-item-bar .menu-item-handle { 7840 8688 border: 1px solid #dfdfdf; 7841 8689 position: relative; 7842 8690 padding-left: 10px; 8691 padding-right: 2px; 7843 8692 height: auto; 7844 8693 width: 400px; 7845 8694 line-height: 35px; 7846 text-shadow: 0 1px 0 #FFFFFF;7847 8695 overflow: hidden; 7848 8696 word-wrap: break-word; 7849 8697 } … … 7862 8710 -webkit-border-bottom-left-radius: 0; 7863 8711 border-bottom-right-radius: 0; 7864 8712 border-bottom-left-radius: 0; 8713 border-bottom: none; 7865 8714 } 7866 8715 7867 8716 .no-js .menu-item-edit-active .item-edit { … … 7874 8723 7875 8724 .menu li.deleting .menu-item-handle { 7876 8725 background-image: none; 7877 text-shadow: 0 0 0;7878 8726 } 7879 8727 7880 8728 .menu-item-handle .item-title { 7881 font-size: 1 2px;7882 font-weight: bold;7883 padding: 7px 0;8729 font-size: 13px; 8730 font-weight: 600; 8731 padding: 5px 0; 7884 8732 line-height: 20px; 7885 min-height: 20px;7886 8733 display: block; 7887 8734 margin-right: 13em; 7888 8735 } … … 7945 8792 /* Menu item controls */ 7946 8793 .item-type { 7947 8794 font-size: 12px; 7948 padding-right: 10px; 8795 padding: 7px 10px; 8796 line-height: 22px; 8797 display: block; 7949 8798 } 7950 8799 7951 8800 .item-controls { … … 7970 8819 .nav-menus-php .item-edit { 7971 8820 position: absolute; 7972 8821 right: -20px; 7973 top: 0;8822 top: -24px; 7974 8823 display: block; 7975 width: 30px;8824 width: 40px; 7976 8825 height: 36px; 7977 overflow: hidden;7978 8826 text-indent:-999em; 7979 border-bottom: 1px solid; 7980 -webkit-border-bottom-left-radius: 3px; 7981 border-bottom-left-radius: 3px; 8827 margin-right: 0 !important; 7982 8828 } 7983 8829 7984 8830 /* Menu editing */ … … 7988 8834 7989 8835 .menu-item-settings { 7990 8836 display: block; 7991 width: 40 0px;8837 width: 402px; 7992 8838 padding: 10px 0 10px 10px; 7993 border: solid;7994 border-width: 0 1px 1px 1px;7995 -webkit-border-bottom-right-radius: 3px;7996 -webkit-border-bottom-left-radius: 3px;7997 border-bottom-left-radius: 3px;7998 border-bottom-right-radius: 3px;7999 8839 } 8000 8840 8001 8841 .menu-item-settings .field-move a { … … 8005 8845 8006 8846 .menu-item-edit-active .menu-item-settings { 8007 8847 display: block; 8848 border-top: none; 8008 8849 } 8009 8850 8010 8851 .menu-item-edit-inactive .menu-item-settings { 8011 8852 display: none; 8853 border-top: none; 8012 8854 } 8013 8855 8014 8856 .add-menu-item-pagelinks { … … 8059 8901 /* Major/minor publishing actions (classes) */ 8060 8902 .nav-menus-php .major-publishing-actions { 8061 8903 clear: both; 8062 padding: 3px 0 5px;8904 padding: 3px 0 6px; 8063 8905 } 8064 8906 8065 8907 .nav-menus-php .major-publishing-actions .publishing-action { 8066 8908 text-align: right; 8067 8909 float: right; 8068 8910 line-height: 23px; 8069 margin: 2px 0 1px;8911 margin: 4px 0 1px; 8070 8912 } 8071 8913 8072 8914 .nav-menus-php .blank-slate .menu-settings { … … 8137 8979 #plugin-information-header { 8138 8980 margin: 0; 8139 8981 padding: 0 5px; 8140 font-weight: bold;8982 font-weight: 600; 8141 8983 position: relative; 8142 8984 border-bottom-width: 1px; 8143 8985 border-bottom-style: solid; … … 8152 8994 } 8153 8995 8154 8996 /* Install sidemenu */ 8997 #plugin-information { 8998 height: auto; 8999 } 9000 8155 9001 #plugin-information p.action-button { 8156 9002 width: 100%; 8157 9003 padding-bottom: 0; … … 8165 9011 8166 9012 #plugin-information .action-button a { 8167 9013 text-align: center; 8168 font-weight: bold;9014 font-weight: 600; 8169 9015 text-decoration: none; 8170 9016 display: block; 8171 9017 line-height: 2em; … … 8243 9089 #plugin-information pre { 8244 9090 padding: 7px; 8245 9091 overflow: auto; 9092 border-width: 1px; 9093 border-style: solid; 8246 9094 } 8247 9095 8248 /* press-this */ 8249 body.press-this { 8250 color: #333; 8251 margin: 0; 8252 padding: 0; 8253 min-width: 675px; 8254 min-height: 400px; 9096 .plugin-version-author-uri { 9097 font-size: 13px; 8255 9098 } 8256 9099 8257 9100 img { … … 8259 9102 } 8260 9103 8261 9104 /* Header */ 9105 #wphead { 9106 border-bottom-width: 1px; 9107 border-bottom-style: solid; 9108 } 9109 8262 9110 .press-this #wphead { 8263 9111 height: 32px; 8264 9112 margin-left: 0; … … 8294 9142 margin: 10px 0; 8295 9143 } 8296 9144 9145 .press-this .posting { 9146 margin-right: 252px; 9147 } 9148 8297 9149 .press-this-sidebar { 8298 9150 float: right; 8299 width: 2 00px;9151 width: 240px; 8300 9152 padding-top: 10px; 8301 9153 } 8302 9154 … … 8309 9161 box-sizing: border-box; 8310 9162 } 8311 9163 8312 .press-this .tagchecklist span a{8313 background: transparent url(../images/xit.gif) no-repeat 0 0;9164 .press-this .tagchecklist { 9165 margin-top: 8px; 8314 9166 } 8315 9167 8316 9168 .press-this #titlediv { … … 8319 9171 8320 9172 .press-this .wp-media-buttons { 8321 9173 cursor: default; 8322 padding: 8px 8px 0;9174 padding: 8px 8px 6px; 8323 9175 } 8324 9176 8325 9177 .press-this .howto { … … 8330 9182 display: block; 8331 9183 } 8332 9184 9185 .press-this #wp-content-editor-container { 9186 clear: none; 9187 } 9188 9189 .press-this #poststuff .inside { 9190 margin-top: 18px; 9191 } 9192 9193 .press-this .category-tabs { 9194 margin-bottom: 3px; 9195 } 9196 8333 9197 /* Editor/Main Column */ 8334 9198 .press-this #poststuff { 8335 9199 margin: 0 10px 10px; … … 8395 9259 } 8396 9260 8397 9261 h3.tb { 8398 text-shadow: 0 1px 0 #fff; 8399 font-weight: bold; 9262 font-weight: 600; 8400 9263 font-size: 12px; 8401 9264 margin-left: 5px; 8402 9265 } … … 8411 9274 min-width: 0; 8412 9275 } 8413 9276 8414 .js .postbox:hover .handlediv, 8415 .js .stuffbox:hover .handlediv { 8416 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 9277 .js .meta-box-sortables .postbox:hover .handlediv { 9278 margin-right: 0 !important; 8417 9279 } 8418 9280 9281 /* Metabox collapse arrow indicators */ 9282 .js .sidebar-name .sidebar-name-arrow:before, 9283 .js .meta-box-sortables .postbox .handlediv:before { 9284 right: 12px; 9285 font: normal 20px/1 'dashicons'; 9286 speak: none; 9287 display: inline-block; 9288 padding: 8px 10px; 9289 top: 0; 9290 position: relative; 9291 -webkit-font-smoothing: antialiased; 9292 -moz-osx-font-smoothing: grayscale; 9293 text-decoration: none !important; 9294 } 9295 9296 /* Make the tiny arrow visible on the widgets page at all times */ 9297 .js .widgets-holder-wrap .sidebar-name .sidebar-name-arrow:before { 9298 color: rgba(136,136,136,.4); 9299 } 9300 .js .widgets-holder-wrap .sidebar-name .sidebar-name-arrow:before { 9301 content: '\f142'; 9302 } 9303 .js .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow:before { 9304 content: '\f140'; 9305 } 9306 9307 /* Show the arrow only on hover */ 9308 .js .sidebar-name:hover .sidebar-name-arrow:before, 9309 .js .meta-box-sortables .postbox:hover .handlediv:before { 9310 content: '\f142'; 9311 color: #888; 9312 } 9313 9314 .js .widgets-holder-wrap.closed:hover .sidebar-name-arrow:before, 9315 .js .meta-box-sortables .postbox.closed:hover .handlediv:before { 9316 content: '\f140'; 9317 } 9318 8419 9319 .press-this #submitdiv:hover .handlediv { 8420 9320 background: none; 8421 9321 } … … 8591 9491 visibility: hidden; 8592 9492 } 8593 9493 9494 /* TinyMCE */ 9495 #mce_fullscreen_container { 9496 background: #fff; 9497 } 9498 8594 9499 #photo-add-url-div input[type="text"] { 8595 9500 width: 300px; 8596 9501 } 8597 9502 8598 /* theme-editor */9503 /* Theme/Plugin Editor */ 8599 9504 .alignleft h3 { 8600 9505 margin: 0; 8601 9506 } 8602 9507 8603 h3 span {8604 font-weight: normal;8605 }8606 8607 9508 #template textarea { 8608 9509 font-family: Consolas, Monaco, monospace; 8609 font-size: 1 2px;9510 font-size: 13px; 8610 9511 width: 97%; 8611 9512 background: #f9f9f9; 8612 9513 outline: none; … … 8633 9534 8634 9535 #templateside ol, 8635 9536 #templateside ul { 8636 margin: .5em ;9537 margin: .5em 0; 8637 9538 padding: 0; 8638 9539 } 8639 9540 … … 8641 9542 margin: 4px 0; 8642 9543 } 8643 9544 8644 #templateside ul li a span.highlight { 8645 display:block; 9545 #templateside a, 9546 .theme-editor-php .highlight { 9547 display: block; 9548 padding: 3px 3px 3px 12px; 9549 text-decoration: none; 8646 9550 } 8647 9551 9552 .theme-editor-php .highlight { 9553 margin: -3px 3px -3px -12px; 9554 } 9555 9556 #templateside .highlight { 9557 border: none; 9558 font-weight: bold; 9559 } 9560 8648 9561 .nonessential { 8649 9562 font-size: 11px; 8650 9563 font-style: italic; 8651 9564 padding-left: 12px; 8652 9565 } 8653 9566 8654 .highlight {8655 padding: 3px 3px 3px 12px;8656 margin-left: -12px;8657 font-weight: bold;8658 border: 0 none;8659 }8660 8661 9567 #documentation { 8662 9568 margin-top: 10px; 8663 9569 } 9570 8664 9571 #documentation label { 8665 9572 line-height: 22px; 8666 vertical-align: top;8667 font-weight: bold;9573 vertical-align: baseline; 9574 font-weight: 600; 8668 9575 } 8669 9576 8670 9577 .fileedit-sub { … … 8725 9632 width: 300px; 8726 9633 } 8727 9634 9635 .widget-liquid-right .widget { 9636 position: relative; 9637 } 9638 8728 9639 .widget-liquid-right .widget, 8729 9640 .inactive-sidebar .widget, 8730 9641 .widget-liquid-right .sidebar-description { 8731 9642 width: 250px; 8732 9643 margin: 0 auto 20px; 9644 } 9645 9646 .widget-liquid-right .widget, 9647 .widget-liquid-right .sidebar-description { 8733 9648 overflow: hidden; 8734 9649 } 8735 9650 … … 8753 9668 8754 9669 div.sidebar-name { 8755 9670 font-size: 13px; 8756 border-width: 1px; 8757 border-style: solid; 8758 -webkit-border-top-right-radius: 3px; 8759 -webkit-border-top-left-radius: 3px; 8760 border-top-right-radius: 3px; 8761 border-top-left-radius: 3px; 9671 border-bottom-width: 1px; 9672 border-bottom-style: solid; 8762 9673 } 8763 9674 8764 9675 .js .sidebar-name { … … 8783 9694 } 8784 9695 8785 9696 .js .closed .widgets-sortables, 8786 .js .closed .widget-holder { 9697 .js .closed .widget-holder, 9698 .js .closed br.clear { 8787 9699 display: none; 8788 9700 } 8789 9701 … … 8795 9707 padding: 7px 5px 0; 8796 9708 } 8797 9709 8798 #available-widgets .widget {8799 -webkit-box-shadow: none;8800 box-shadow: none;8801 }8802 8803 9710 .inactive-sidebar { 8804 9711 padding: 5px 5px 0; 8805 9712 } … … 8848 9755 } 8849 9756 8850 9757 .widget .widget-top { 8851 margin-bottom: -1px;8852 9758 font-size: 12px; 8853 font-weight: bold;9759 font-weight: 600; 8854 9760 height: 26px; 8855 overflow: hidden;8856 9761 } 8857 9762 9763 .widget .widget-top, 9764 .menu-item-handle { 9765 margin-top: 0; 9766 padding: 4px; 9767 } 9768 8858 9769 .widget-top .widget-title { 8859 9770 padding: 7px 9px; 8860 9771 } … … 8867 9778 display: block; 8868 9779 width: 24px; 8869 9780 height: 26px; 9781 text-decoration: none; 8870 9782 } 8871 9783 8872 9784 #available-widgets a.widget-action { 8873 9785 display: none; 8874 9786 } 8875 9787 8876 .widget-top a.widget-action { 8877 background: transparent url(../images/arrows.png) no-repeat 4px 6px; 9788 .widget-top a.widget-action, 9789 .widget-top a.widget-action:hover { 9790 background: none !important; 9791 border: none !important; 9792 width: 30px; 9793 margin-right: 0 !important; 9794 margin-top: 3px; 9795 text-decoration: none; 8878 9796 } 8879 9797 8880 .widget-top a.widget-action:hover { 8881 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; 9798 .nav-menus-php .item-edit:after, 9799 .widget-top a.widget-action:after, 9800 .control-section .accordion-section-title::after, 9801 .accordion-section-title::after { 9802 right: 0; 9803 content: '\f141'; 9804 border: none; 9805 background: none; 9806 font: normal 20px/1 'dashicons'; 9807 speak: none; 9808 display: block; 9809 padding: 0; 9810 text-indent: 0; 9811 text-align: center; 9812 position: relative; 9813 -webkit-font-smoothing: antialiased; 9814 -moz-osx-font-smoothing: grayscale; 9815 text-decoration: none !important; 8882 9816 } 8883 9817 9818 .control-section .accordion-section-title::after, 9819 .accordion-section-title::after { 9820 float: right; 9821 right: 20px; 9822 top: -2px; 9823 } 9824 9825 .widget-top a.widget-action:after { 9826 content: '\f140'; 9827 } 9828 9829 .control-section.open .accordion-section-title::after, 9830 #customize-info.open .accordion-section-title::after, 9831 .nav-menus-php .menu-item-edit-active .item-edit:after { 9832 content: '\f140'; 9833 } 9834 9835 .nav-menus-php .item-controls .item-type { 9836 padding: 11px; 9837 margin-right: 10px; 9838 } 9839 8884 9840 .widget .widget-inside, 8885 9841 .widget .widget-description { 8886 9842 padding: 12px 12px 10px; … … 8908 9864 line-height: 1; 8909 9865 overflow: hidden; 8910 9866 white-space: nowrap; 9867 text-overflow: ellipsis; 8911 9868 } 8912 9869 8913 9870 .widgets-sortables { … … 9060 10017 /* Accordion */ 9061 10018 9062 10019 .accordion-section { 9063 border-top: 1px solid #fff;9064 10020 border-bottom: 1px solid #dfdfdf; 9065 10021 margin: 0; 9066 10022 } 9067 10023 9068 .accordion-section:first-child {9069 border-top: 1px solid #dfdfdf;9070 }9071 9072 .accordion-section:last-child {9073 box-shadow: 0 1px 0 0px #fff;9074 }9075 9076 10024 .accordion-section.open .accordion-section-content, 9077 10025 .no-js .accordion-section .accordion-section-content { 9078 10026 display: block; … … 9086 10034 display: none; 9087 10035 padding: 10px 20px 15px; 9088 10036 overflow: hidden; 9089 background: #f dfdfd;10037 background: #fff; 9090 10038 border-left: 1px solid #dfdfdf; 9091 10039 border-right: 1px solid #dfdfdf; 9092 10040 } … … 9108 10056 } 9109 10057 9110 10058 .js .accordion-section-title:after { 9111 content: '';9112 width: 0;9113 height: 0;9114 border-color: #ccc transparent;9115 border-style: solid;9116 border-width: 6px 6px 0;9117 10059 position: absolute; 9118 top: 25px;9119 right: 20px;10060 top: 12px; 10061 right: 10px; 9120 10062 z-index: 1; 9121 10063 } 9122 10064 … … 9138 10080 } 9139 10081 9140 10082 .control-section .accordion-section-title { 9141 padding: 10px 20px; 9142 color: #464646; 9143 font-size: 15px; 9144 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 9145 font-weight: normal; 9146 text-shadow: 0 1px 0 #fff; 10083 border-left: none; 10084 border-right: none; 10085 padding: 10px 10px 11px 14px; 10086 line-height: 21px; 9147 10087 background: #f5f5f5; 9148 10088 background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5)); 9149 10089 background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5); … … 9153 10093 } 9154 10094 9155 10095 .control-section .accordion-section-title:after { 9156 top: 1 5px;10096 top: 11px; 9157 10097 } 9158 10098 9159 10099 .js .control-section:hover .accordion-section-title, 9160 10100 .js .control-section .accordion-section-title:hover, 9161 10101 .js .control-section.open .accordion-section-title, 9162 10102 .js .control-section .accordion-section-title:focus { 9163 color: # 000;10103 color: #fff; 9164 10104 background: #f9f9f9; 9165 10105 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 9166 10106 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); … … 9170 10110 } 9171 10111 9172 10112 .control-section.open .accordion-section-title { 10113 /* When expanded */ 9173 10114 border-bottom: 1px solid #dfdfdf; 9174 10115 } 9175 10116 10117 .sticky-menu #TB_window .updated { 10118 margin: 16px 0 0; 10119 } 10120 9176 10121 /* =Media Queries 9177 10122 -------------------------------------------------------------- */ 9178 10123 … … 9256 10201 (-webkit-min-device-pixel-ratio: 1.25), 9257 10202 (min-resolution: 120dpi) { 9258 10203 9259 .press-this .tagchecklist span a {9260 background-image: url('../images/xit-2x.gif');9261 background-size: 20px auto;9262 }9263 9264 .js .postbox:hover .handlediv,9265 .js .stuffbox:hover .handlediv,9266 .widget-top a.widget-action {9267 background-image: url('../images/arrows-2x.png');9268 background-size: 15px 123px;9269 }9270 9271 .widget-top a.widget-action:hover {9272 background-image: url('../images/arrows-dark-2x.png');9273 background-size: 15px 123px;9274 }9275 9276 .post-com-count {9277 background-image: url('../images/bubble_bg-2x.gif');9278 background-size: 18px 100px;9279 }9280 9281 10204 tr.wp-locked .locked-indicator { 9282 10205 background-image: url('../images/lock-2x.png'); 9283 10206 background-size: 16px 16px; 9284 10207 } 9285 10208 9286 th .comment-grey-bubble {9287 background-image: url('../images/comment-grey-bubble-2x.png');9288 background-size: 12px 12px;9289 }9290 9291 .sorting-indicator {9292 background-image: url('../images/sort-2x.gif?ver=20130102');9293 background-size: 14px 4px;9294 }9295 9296 10209 #content-resize-handle, 9297 10210 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 9298 10211 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; … … 9309 10222 background-size: 21px 37px; 9310 10223 } 9311 10224 9312 .welcome-panel .welcome-panel-close:before {9313 background-image: url('../images/xit-2x.gif');9314 background-size: 20px auto;9315 }9316 9317 .welcome-panel .welcome-icon {9318 background-image: url('../images/welcome-icons-2x.png');9319 }9320 9321 .login h1 a {9322 background-image: url('../images/wordpress-logo-2x.png?ver=20120412');9323 background-size: 274px 63px;9324 }9325 9326 .wp-badge {9327 background-image: url('../images/wp-badge-2x.png?ver=20120516');9328 background-size: 173px 194px;9329 }9330 9331 10225 .wp-full-overlay .collapse-sidebar-arrow { 9332 10226 background-image: url('../images/arrows-2x.png'); 9333 10227 background-size: 15px 123px; 9334 }9335 9336 .pressthis a span {9337 background-image: url(../images/press-this-2x.png?v=20121105);9338 10228 } 9339 10229 9340 .imgedit-crop,9341 .imgedit-rleft,9342 .imgedit-rright,9343 .imgedit-flipv,9344 .imgedit-fliph,9345 .imgedit-undo,9346 .imgedit-redo {9347 background-image: url('../images/imgedit-icons-2x.png');9348 background-size: 260px 64px;9349 }9350 9351 10230 .spinner, 9352 10231 .imgedit-wait, 9353 .customize-loading #customize-container { 9354 background-image: url(../images/wpspin_light-2x.gif); 10232 .customize-loading #customize-container, 10233 .revision-tick.completed-false { 10234 background-image: url('../images/spinner-2x.gif'); 9355 10235 } 9356 10236 9357 .wp-slider .ui-slider-handle:before {9358 background-image: url(../images/arrows-pr-2x.png);9359 background-size: 16px 102px;9360 }9361 9362 10237 } 9363 10238 9364 10239 /* =Localized CSS … … 9432 10307 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap { 9433 10308 margin-left: 8em; 9434 10309 } 10310 10311 10312 /* Thickbox styles */ 10313 10314 .tb-close-icon { 10315 background: none; 10316 height: 16px; 10317 margin: -2px -3px 0 0; 10318 width: 16px; 10319 } 10320 10321 .tb-close-icon:before { 10322 content: '\f158'; 10323 color: #ccc; 10324 font: normal 20px/1 'dashicons'; 10325 speak: none; 10326 vertical-align: middle; 10327 -webkit-font-smoothing: antialiased; 10328 -moz-osx-font-smoothing: grayscale; 10329 } 10330 10331 .tb-close-icon:hover:before { 10332 color: #fff; 10333 } 10334 10335 #TB_closeAjaxWindow a { 10336 text-decoration: none; 10337 } -
src/wp-includes/admin-bar.php
753 753 */ 754 754 function _admin_bar_bump_cb() { ?> 755 755 <style type="text/css" media="screen"> 756 html { margin-top: 28px !important; } 757 * html body { margin-top: 28px !important; } 756 html { margin-top: 32px !important; } 757 * html body { margin-top: 32px !important; } 758 @media screen and ( max-width: 782px ) { 759 html { margin-top: 46px !important; } 760 * html body { margin-top: 46px !important; } 761 } 758 762 </style> 759 763 <?php 760 764 } -
src/wp-includes/css/admin-bar-rtl.css
17 17 float: right; 18 18 } 19 19 20 #wpadminbar .quicklinks > ul > li {21 border-right: 0;22 border-left: 1px solid #555;23 }24 25 #wpadminbar .quicklinks > ul > li > a,26 #wpadminbar .quicklinks > ul > li > .ab-empty-item {27 border-right: 0;28 border-left: 1px solid #333;29 }30 31 20 #wpadminbar .quicklinks .ab-top-secondary > li { 32 border-left: 0;33 border-right: 1px solid #333;34 21 float: left; 35 22 } 36 23 37 24 #wpadminbar .quicklinks .ab-top-secondary > li > a, 38 25 #wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item { 39 border-right: 1px solid #555;40 border-left: 0;41 26 } 42 27 43 #wpadminbar .menupop .ab-sub-wrapper,44 #wpadminbar .shortlink-input {45 margin: 0 -1px 0 0;46 }47 48 28 #wpadminbar.ie7 .menupop .ab-sub-wrapper, 49 29 #wpadminbar.ie7 .shortlink-input { 50 30 left: auto; … … 54 34 #wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper { 55 35 right: auto; 56 36 left: 0; 57 margin: 0 0 0 -1px;58 37 } 59 38 60 39 #wpadminbar .menupop li:hover > .ab-sub-wrapper, … … 72 51 } 73 52 74 53 #wpadminbar .menupop .menupop > .ab-item { 75 background-position: 5% -46px;76 54 padding-left: 2em; 77 55 padding-right: 1em; 78 56 } 79 57 58 #wpadminbar .menupop .menupop > .ab-item:before { 59 content: '\f141'; 60 right: auto; 61 left: 3px; 62 } 63 80 64 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item { 81 background-position: 95% -20px;82 65 padding-left: 1em; 83 66 padding-right: 2em; 84 67 } 85 68 69 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 70 content: '\f139'; 71 left: auto; 72 right: 3px; 73 } 74 86 75 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary { 87 76 right: 0; 88 77 left: auto; … … 131 120 * My Sites 132 121 */ 133 122 #wpadminbar .quicklinks li .blavatar { 134 margin-right: 0px; 135 margin-left: 4px; 123 float: right; 124 margin-right: -10px; 125 margin-left: 7px; 136 126 } 137 127 138 128 /* 139 129 * Search 140 130 */ 131 #wpadminbar #adminbarsearch:before { 132 left: auto; 133 right: 5px; 134 } 135 141 136 #wpadminbar #adminbarsearch .adminbar-input { 142 font-family: Tahoma, Arial, Helvetica, sans-serif;143 137 padding: 0 24px 0 3px; 144 138 margin: 0; 145 background-position: 50% 2px;146 139 } 147 140 148 #wpadminbar #adminbarsearch .adminbar-input:focus,149 #wpadminbar.ie7 #adminbarsearch .adminbar-input {150 background-position: 99% 2px;151 }152 153 141 /** 154 142 * Comments icon 155 143 */ 156 144 #wpadminbar .ab-icon { 157 145 float: right; 146 margin-right: auto; 158 147 } 159 148 160 149 .ie7 #wp-admin-bar-wp-logo > .ab-item .ab-icon { -
src/wp-includes/css/admin-bar.css
6 6 position: static; 7 7 text-transform: none; 8 8 letter-spacing: normal; 9 line-height: 1;10 font: normal 13px/ 28pxsans-serif;11 color: # ccc;12 text-shadow: #444 0px -1px 0px;9 line-height: 30px; 10 font: normal 13px/32px "Open Sans", sans-serif; 11 color: #eee; 12 border-radius: 0; 13 13 -webkit-box-sizing: content-box; 14 14 -moz-box-sizing: content-box; 15 15 box-sizing: content-box; … … 19 19 transition: none; 20 20 } 21 21 22 #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default *, 23 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary * { 24 text-transform: none; 25 letter-spacing: normal; 26 font: normal 13px/32px "Open Sans", sans-serif; 27 } 28 29 #wpadminbar a.ab-item, 30 #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default span.ab-label, 31 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary span.ab-label, 32 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary span.noticon { 33 color: #eee; 34 } 35 36 #wpadminbar #wp-admin-bar-site-name a.ab-item, 37 #wpadminbar #wp-admin-bar-my-sites a.ab-item { 38 white-space: nowrap; 39 overflow: hidden; 40 text-overflow: ellipsis; 41 } 42 22 43 #wpadminbar ul li:before, 23 44 #wpadminbar ul li:after { 24 45 content: normal; … … 51 72 #wpadminbar { 52 73 direction: ltr; 53 74 color: #ccc; 54 font: normal 13px/ 28pxsans-serif;55 height: 28px;75 font: normal 13px/32px "Open Sans", sans-serif; 76 height: 32px; 56 77 position: fixed; 57 78 top: 0; 58 79 left: 0; 59 80 width: 100%; 60 81 min-width: 600px; /* match the min-width of the body in wp-admin.css */ 61 82 z-index: 99999; 62 background: #464646; 63 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646)); 64 background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px); 65 background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px); 66 background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px); 67 background-image: linear-gradient(to top, #373737 0, #464646 5px); 83 background: #222; 68 84 } 69 85 70 86 #wpadminbar .ab-sub-wrapper, … … 80 96 z-index: 99999; 81 97 } 82 98 83 #wpadminbar .quicklinks{84 border-left: 1px solid transparent;99 #wpadminbar ul#wp-admin-bar-root-default>li { 100 margin-right: 0; 85 101 } 86 102 87 103 #wpadminbar .quicklinks ul { … … 96 112 outline: none; 97 113 } 98 114 99 #wpadminbar .quicklinks > ul > li {100 border-right: 1px solid #555;101 }102 103 #wpadminbar .quicklinks > ul > li > a,104 #wpadminbar .quicklinks > ul > li > .ab-empty-item {105 border-right: 1px solid #333;106 }107 108 115 #wpadminbar .quicklinks .ab-top-secondary > li { 109 border-left: 1px solid #333;110 border-right: 0;111 116 float: right; 112 117 } 113 118 114 #wpadminbar .quicklinks .ab-top-secondary > li > a,115 #wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item {116 border-left: 1px solid #555;117 border-right: 0;118 }119 120 119 #wpadminbar .quicklinks a, 121 120 #wpadminbar .quicklinks .ab-empty-item, 122 121 #wpadminbar .shortlink-input { 123 height: 28px;122 height: 32px; 124 123 display: block; 125 padding: 0 1 2px;124 padding: 0 10px; 126 125 margin: 0; 127 126 } 128 127 129 128 #wpadminbar .menupop .ab-sub-wrapper, 130 129 #wpadminbar .shortlink-input { 131 margin: 0 0 0 -1px;130 margin: 0; 132 131 padding: 0; 133 -webkit-box-shadow: 0 4px 4px rgba(0,0,0,0.2);134 box-shadow: 0 4px 4px rgba(0,0,0,0.2);135 background: # fff;132 -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2); 133 box-shadow: 0 3px 5px rgba(0,0,0,0.2); 134 background: #333; 136 135 display: none; 137 136 position: absolute; 138 137 float: none; 139 border-width: 0 1px 1px 1px;140 border-style: solid;141 border-color: #dfdfdf;142 138 } 143 139 144 140 #wpadminbar.ie7 .menupop .ab-sub-wrapper, 145 141 #wpadminbar.ie7 .shortlink-input { 146 top: 28px;142 top: 32px; 147 143 left: 0; 148 144 } 149 145 150 #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {151 min-width: 100%;152 }153 154 146 #wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper { 155 147 right: 0; 156 148 left: auto; 157 margin: 0 -1px 0 0;158 149 } 159 150 160 #wpadminbar .ab-sub-wrapper > .ab-submenu:first-child {161 border-top: none;162 }163 164 151 #wpadminbar .ab-submenu { 165 152 padding: 6px 0; 166 border-top: 1px solid #dfdfdf;167 153 } 168 154 169 155 #wpadminbar .selected .shortlink-input { … … 185 171 #wpadminbar .shortlink-input { 186 172 line-height: 26px; 187 173 height: 26px; 188 text-shadow: none;189 174 white-space: nowrap; 190 175 min-width: 140px; 191 176 } … … 202 187 #wpadminbar .menupop li:hover > .ab-sub-wrapper, 203 188 #wpadminbar .menupop li.hover > .ab-sub-wrapper { 204 189 margin-left: 100%; 205 margin-top: -33px; 206 border-width: 1px; 190 margin-top: -32px; 207 191 } 208 192 209 193 #wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper, … … 217 201 #wpadminbar .ab-top-menu > li.hover > .ab-item, 218 202 #wpadminbar .ab-top-menu > li > .ab-item:focus, 219 203 #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus { 220 color: #fafafa; 221 background: #222; 222 background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222)); 223 background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222); 224 background-image: -moz-linear-gradient(bottom, #3a3a3a, #222); 225 background-image: -o-linear-gradient(bottom, #3a3a3a, #222); 226 background-image: linear-gradient(to top, #3a3a3a, #222); 204 color: #fff; 227 205 } 228 206 229 207 #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, 230 208 #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { 231 background: #fff; 232 color: #333; 233 text-shadow: none; 234 border-right-color: transparent; 235 border-left-color: transparent; 209 background: #333; 210 color: #2ea2cc; 236 211 } 237 212 238 #wpadminbar .hover .ab-label, 239 #wpadminbar.nojq .ab-item:focus .ab-label { 240 color: #fafafa; 213 #wpadminbar .ab-icon, 214 #wpadminbar .ab-item:before { 215 position: relative; 216 float: left; 217 font: normal 20px/1 'dashicons' !important; 218 speak: none; 219 padding: 4px 0; 220 -webkit-font-smoothing: antialiased; 221 -moz-osx-font-smoothing: grayscale; 222 background-image: none !important; 223 color: #999; 224 margin-right: 6px; 241 225 } 242 226 243 #wpadminbar .menupop.hover .ab-label {244 color: #333; 245 text-shadow: none;227 #wpadminbar li:hover .ab-icon, 228 #wpadminbar li:hover > .ab-item:before { 229 color: #2ea2cc; 246 230 } 247 231 248 #wpadminbar . menupop li:hover,249 #wpadminbar .menupop li.hover, 250 #wpadminbar .quicklinks .menupop .ab-item:focus, 251 #wpadminbar .quicklinks .ab-top-menu .menupop .ab-item:focus { 252 background-color: #eaf2fa;232 #wpadminbar .ab-icon:before { 233 position: relative; 234 -moz-transition: all .1s ease-in-out; 235 -webkit-transition: all .1s ease-in-out; 236 transition: all .1s ease-in-out; 253 237 } 254 238 239 #wpadminbar .ab-label { 240 display: inline-block; 241 height: 32px; 242 } 243 255 244 #wpadminbar .ab-submenu .ab-item { 256 color: #333; 257 text-shadow: none; 245 color: #eee; 258 246 } 259 247 260 248 #wpadminbar .quicklinks .menupop ul li a, 261 249 #wpadminbar .quicklinks .menupop ul li a strong, 262 250 #wpadminbar .quicklinks .menupop.hover ul li a, 263 251 #wpadminbar.nojs .quicklinks .menupop:hover ul li a { 264 color: # 21759B;252 color: #eee; 265 253 } 266 254 255 #wpadminbar .quicklinks .menupop ul li a:hover, 256 #wpadminbar .quicklinks .menupop ul li a:hover strong, 257 #wpadminbar .quicklinks .menupop.hover ul li a:hover, 258 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover { 259 color: #2ea2cc; 260 } 261 262 #wpadminbar .menupop .menupop > .ab-item:before, 263 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 264 position: absolute; 265 font: normal 17px/1 'dashicons'; 266 speak: none; 267 -webkit-font-smoothing: antialiased; 268 -moz-osx-font-smoothing: grayscale; 269 } 270 267 271 #wpadminbar .menupop .menupop > .ab-item { 268 272 display: block; 269 background-image: url(../images/admin-bar-sprite.png?d=20120830);270 background-position: 95% -20px;271 background-repeat: no-repeat;272 273 padding-right: 2em; 273 274 } 274 275 276 #wpadminbar .menupop .menupop > .ab-item:before { 277 top: 0px; 278 right: 4px; 279 content: '\f139'; 280 } 281 275 282 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item { 276 background-image: url(../images/admin-bar-sprite.png?d=20120830);277 background-position: 5% -46px;278 background-repeat: no-repeat;279 283 padding-left: 2em; 280 284 padding-right: 1em; 281 285 } 282 286 287 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 288 top: 5px; 289 left: 3px; 290 content: '\f141'; 291 } 292 283 293 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary { 284 294 display: block; 285 295 position: relative; 286 296 right: auto; 287 297 margin: 0; 288 background: # eee;298 background: #4b4b4b; 289 299 -webkit-box-shadow: none; 290 300 box-shadow: none; 291 301 } 292 302 293 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li:hover ,294 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li.hover ,295 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus {296 background-color: #dfdfdf;303 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li:hover > a, 304 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li.hover > a, 305 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus a { 306 color: #2ea2cc; 297 307 } 298 308 299 309 #wpadminbar .quicklinks a span#ab-updates { 300 310 background: #eee; 301 311 color: #333; 302 text-shadow: none;303 312 display: inline; 304 313 padding: 2px 5px; 305 314 font-size: 10px; … … 315 324 316 325 #wpadminbar .ab-top-secondary { 317 326 float: right; 318 background: #464646;319 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));320 background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);321 background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);322 background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);323 background-image: linear-gradient(to top, #373737 0, #464646 5px);324 327 } 325 328 326 329 #wpadminbar ul li:last-child, 327 330 #wpadminbar ul li:last-child .ab-item { 328 border-right: 0;329 331 -webkit-box-shadow: none; 330 332 box-shadow: none; 331 333 } … … 346 348 margin-right: 16px; 347 349 } 348 350 351 #wpadminbar #wp-admin-bar-user-actions.ab-submenu { 352 padding: 6px 0 12px; 353 } 354 349 355 #wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li { 350 356 margin-left: 88px; 351 357 } 352 358 353 #wp-admin-bar-user-actions > li > .ab-item {354 padding-left: 8px;355 }356 357 359 #wpadminbar #wp-admin-bar-user-info { 358 360 margin-top: 6px; 359 361 margin-bottom: 15px; … … 382 384 383 385 #wpadminbar #wp-admin-bar-user-info .display-name, 384 386 #wpadminbar #wp-admin-bar-user-info .username { 385 text-shadow: none;386 387 display: block; 387 388 } 388 389 389 390 #wpadminbar #wp-admin-bar-user-info .display-name { 390 color: # 333;391 color: #fff; 391 392 } 392 393 393 394 #wpadminbar #wp-admin-bar-user-info .username { … … 398 399 #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { 399 400 width: 16px; 400 401 height: 16px; 401 border: 1px solid #999;402 402 padding: 0; 403 border: 1px solid #888; 403 404 background: #eee; 404 405 line-height: 24px; 405 406 vertical-align: middle; 406 margin: - 3px 0 0 6px;407 margin: -4px 0 0 6px; 407 408 float: none; 408 409 display: inline; 409 410 } 410 411 412 /** 413 * WP Logo 414 */ 415 #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon { 416 width: 20px; 417 height: 20px; 418 margin-right: 0; 419 padding: 6px 0 5px; 420 } 421 422 #wpadminbar #wp-admin-bar-wp-logo > .ab-item { 423 padding: 0 8px 0 8px; 424 } 425 426 #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before { 427 content: '\f120'; 428 } 429 411 430 /* 412 * My Sites 431 * My Sites & Site Title 413 432 */ 414 433 #wpadminbar .quicklinks li .blavatar { 415 vertical-align: middle; 416 margin: -3px 4px 0 0; 417 padding: 0; 434 float: left; 435 font: normal 16px/1 'dashicons' !important; 436 speak: none; 437 -webkit-font-smoothing: antialiased; 438 -moz-osx-font-smoothing: grayscale; 439 color: #eee; 418 440 } 419 441 420 #wpadminbar .quicklinks li div.blavatar { 421 background: url('../images/wpmini-blue.png') no-repeat; 442 #wpadminbar .quicklinks li a:hover .blavatar { 443 color: #2ea2cc; 444 } 445 446 #wpadminbar .quicklinks li .blavatar:before { 447 content: '\f120'; 422 448 height: 16px; 423 449 width: 16px; 424 450 display: inline-block; 451 margin: 8px 8px 0 -2px; 425 452 } 426 453 454 #wpadminbar #wp-admin-bar-appearance { 455 margin-top: -12px; 456 } 457 458 #wpadminbar #wp-admin-bar-my-sites > .ab-item:before, 459 #wpadminbar #wp-admin-bar-site-name > .ab-item:before { 460 content: '\f112'; 461 top: 2px; 462 } 463 464 #wpadminbar #wp-admin-bar-site-name > .ab-item:before { 465 content: '\f319'; 466 } 467 468 469 427 470 /** 471 * Comments 472 */ 473 #wpadminbar #wp-admin-bar-comments .ab-icon { 474 margin-right: 6px; 475 } 476 477 #wpadminbar #wp-admin-bar-comments .ab-icon:before { 478 content: '\f101'; 479 top: 3px; 480 } 481 482 #wpadminbar #wp-admin-bar-comments .count-0 { 483 opacity: .5; 484 } 485 486 /** 487 * New Content 488 */ 489 #wpadminbar #wp-admin-bar-new-content .ab-icon:before { 490 content: '\f132'; 491 top: 4px; 492 } 493 494 /** 495 * Updates 496 */ 497 #wpadminbar #wp-admin-bar-updates .ab-icon:before { 498 content: '\f113'; 499 top: 2px; 500 } 501 502 /** 428 503 * Search 429 504 */ 430 505 #wpadminbar #wp-admin-bar-search .ab-item { 431 506 padding: 0; 432 }433 434 #wpadminbar #wp-admin-bar-search .ab-item {435 /* default background */436 507 background: transparent; 437 508 } 438 509 439 510 #wpadminbar #adminbarsearch { 440 height: 28px; 511 position: relative; 512 height: 32px; 441 513 padding: 0 2px; 442 514 } 443 515 444 #wpadminbar #adminbarsearch .adminbar-input { 445 font: 13px/24px sans-serif; 516 #wpadminbar #adminbarsearch:before { 517 position: absolute; 518 top: 6px; 519 left: 5px; 520 z-index: 20; 521 font: normal 20px/1 'dashicons' !important; 522 content: '\f179'; 523 color: #999; 524 speak: none; 525 -webkit-font-smoothing: antialiased; 526 -moz-osx-font-smoothing: grayscale; 527 } 528 529 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 530 position: relative; 531 z-index: 30; 532 font: 13px/24px "Open Sans", sans-serif; 446 533 height: 24px; 447 534 width: 24px; 448 border: none; 449 padding: 0 3px 0 23px; 535 padding: 0 3px 0 24px; 450 536 margin: 0; 451 537 color: #ccc; 452 text-shadow: #444 0px -1px 0px;453 538 background-color: rgba( 255, 255, 255, 0 ); 454 background-image: url(../images/admin-bar-sprite.png?d=20120830); 455 background-position: 3px 2px; 456 background-repeat: no-repeat; 539 border: none; 457 540 outline: none; 458 541 cursor: pointer; 459 542 460 -webkit-border-radius: 3px;461 border-radius: 3px;462 463 543 -webkit-box-shadow: none; 464 544 box-shadow: none; 465 545 … … 479 559 -o-transition-timing-function: ease; 480 560 } 481 561 482 #wpadminbar.ie7 #adminbarsearch .adminbar-input { 483 margin-top: 1px; 484 width: 120px; 485 } 486 487 #wpadminbar #adminbarsearch .adminbar-input:focus { 488 color: #555; 489 text-shadow: 0 1px 0 #fff; 562 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 563 z-index: 10; 564 color: #000; 490 565 width: 200px; 491 566 background-color: rgba( 255, 255, 255, 0.9 ); 492 567 cursor: text; 568 border: 0; 493 569 } 494 570 495 #wpadminbar.ie8 #adminbarsearch .adminbar-input { 571 #wpadminbar.ie7 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 572 margin-top: 3px; 573 width: 120px; 574 } 575 576 #wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 577 margin-top: 4px; 496 578 background-color: #464646; 497 579 } 498 580 499 #wpadminbar.ie8 #adminbarsearch.adminbar-input:focus {581 #wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 500 582 background-color: #fff; 501 583 } 502 584 503 /* Two rules to ensure browser recognition */504 585 #wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder { 505 color: # ddd;586 color: #999; 506 587 } 507 508 588 #wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder { 509 color: # ddd;589 color: #999; 510 590 } 511 512 #wpadminbar #adminbarsearch .adminbar-button { 513 display: none; 591 #wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder { 592 color: #999; 514 593 } 515 516 /** 517 * Site Menu 518 */ 519 #wpadminbar #wp-admin-bar-appearance { 520 border-top: none; 521 margin-top: -12px; 594 #wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder { 595 color: #999; 522 596 } 523 597 524 /** 525 * Site Menu 526 */ 527 #wpadminbar #wp-admin-bar-appearance { 528 border-top: none; 529 margin-top: -12px; 530 } 531 532 /** 533 * ICONS 534 */ 535 #wpadminbar .ab-icon { 536 position: relative; 537 float: left; 538 width: 16px; 539 height: 16px; 540 margin-top: 6px; 541 } 542 543 #wpadminbar .ab-label { 544 margin-left: 4px; 545 } 546 547 /** 548 * WP Logo icon 549 */ 550 #wp-admin-bar-wp-logo > .ab-item .ab-icon { 551 width: 20px; 552 height: 20px; 553 margin-top: 4px; 554 background-image: url(../images/admin-bar-sprite.png?d=20120830); 555 background-position: 0 -76px; 556 background-repeat: no-repeat; 557 } 558 559 #wpadminbar.nojs #wp-admin-bar-wp-logo:hover > .ab-item .ab-icon, 560 #wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon { 561 background-position: 0 -104px; 562 } 563 564 /** 565 * Updates icon 566 */ 567 #wp-admin-bar-updates > .ab-item .ab-icon { 568 background-image: url(../images/admin-bar-sprite.png?d=20120830); 569 background-position: -2px -159px; 570 background-repeat: no-repeat; 571 } 572 573 /** 574 * Comments icon 575 */ 576 #wp-admin-bar-comments > .ab-item .ab-icon { 577 background-image: url(../images/admin-bar-sprite.png?d=20120830); 578 background-position: -1px -134px; 579 background-repeat: no-repeat; 580 } 581 582 #wpadminbar span.count-0 { 598 #wpadminbar #adminbarsearch .adminbar-button { 583 599 display: none; 584 600 } 585 601 586 602 /** 587 * Add New icon588 */589 #wpadminbar #wp-admin-bar-new-content > .ab-item .ab-icon {590 background-image: url(../images/admin-bar-sprite.png?d=20120830);591 background-position: -2px -182px;592 background-repeat: no-repeat;593 }594 595 /**596 * Add New icon597 */598 #wpadminbar.nojs #wp-admin-bar-new-content:hover > .ab-item .ab-icon,599 #wpadminbar #wp-admin-bar-new-content.hover > .ab-item .ab-icon {600 background-position: -2px -203px;601 }602 603 /**604 603 * Customize support classes 605 604 */ 606 605 .no-customize-support .hide-if-no-customize, … … 612 611 display: none; 613 612 } 614 613 615 /**616 * Retina display 2x icons617 */618 @media print,619 (-o-min-device-pixel-ratio: 5/4),620 (-webkit-min-device-pixel-ratio: 1.25),621 (min-resolution: 120dpi) {622 #wpadminbar .menupop .menupop > .ab-item,623 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item,624 #wpadminbar #adminbarsearch .adminbar-input,625 #wp-admin-bar-wp-logo > .ab-item .ab-icon,626 #wp-admin-bar-updates > .ab-item .ab-icon,627 #wp-admin-bar-comments > .ab-item .ab-icon,628 #wpadminbar #wp-admin-bar-new-content > .ab-item .ab-icon {629 background-image: url(../images/admin-bar-sprite-2x.png?d=20120830);630 background-size: 20px 220px;631 }632 633 #wpadminbar .quicklinks li div.blavatar {634 background: url('../images/wpmini-blue-2x.png') no-repeat;635 background-size: 16px 16px;636 }637 }638 639 614 /* Skip link */ 640 615 #wpadminbar .screen-reader-text, 641 616 #wpadminbar .screen-reader-text span { … … 662 637 font-weight: bold; 663 638 padding: 15px 23px 14px; 664 639 background: #f1f1f1; 665 color: #21759b; 666 text-shadow: none; 667 border-radius: 3px; 640 color: #fff; 668 641 z-index: 100000; 669 642 line-height: normal; 643 text-decoration: none; 670 644 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 671 645 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 672 text-decoration: none;673 646 } 674 647 675 648 /** -
src/wp-includes/css/buttons.css
39 39 .wp-core-ui .button-secondary { 40 40 display: inline-block; 41 41 text-decoration: none; 42 font-size: 1 2px;43 line-height: 2 3px;44 height: 2 4px;42 font-size: 13px; 43 line-height: 26px; 44 height: 28px; 45 45 margin: 0; 46 46 padding: 0 10px 1px; 47 47 cursor: pointer; … … 97 97 display: none; 98 98 } 99 99 100 /* Style Reset buttons as simple text links */ 101 102 .wp-core-ui input[type="reset"], 103 .wp-core-ui input[type="reset"]:hover, 104 .wp-core-ui input[type="reset"]:active, 105 .wp-core-ui input[type="reset"]:focus { 106 background: none; 107 border: none; 108 -moz-box-shadow: none; 109 -webkit-box-shadow: none; 110 box-shadow: none; 111 padding-left: 2px; 112 padding-right: 2px; 113 width: auto; 114 } 115 100 116 /* ---------------------------------------------------------------------------- 101 117 2.0 - Default Button Style 102 118 ---------------------------------------------------------------------------- */ 103 119 104 120 .wp-core-ui .button, 105 121 .wp-core-ui .button-secondary { 106 background: #f3f3f3; 107 background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4)); 108 background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 109 background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4); 110 background-image: -o-linear-gradient(top, #fefefe, #f4f4f4); 111 background-image: linear-gradient(to bottom, #fefefe, #f4f4f4); 112 border-color: #bbb; 113 color: #333; 114 text-shadow: 0 1px 0 #fff; 122 color: #555; 123 border-color: #cccccc; 124 background: #f7f7f7; 125 126 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 127 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 128 vertical-align: top; 115 129 } 116 130 117 131 .wp-core-ui .button.hover, … … 120 134 .wp-core-ui .button.focus, 121 135 .wp-core-ui .button:focus, 122 136 .wp-core-ui .button-secondary:focus { 123 background: #f3f3f3; 124 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); 125 background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); 126 background-image: -moz-linear-gradient(top, #fff, #f3f3f3); 127 background-image: -ms-linear-gradient(top, #fff, #f3f3f3); 128 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 129 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 137 background: #fafafa; 130 138 border-color: #999; 131 139 color: #222; 132 140 } … … 144 152 .wp-core-ui .button:active, 145 153 .wp-core-ui .button-secondary:active { 146 154 background: #eee; 147 background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe));148 background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe);149 background-image: -moz-linear-gradient(top, #f4f4f4, #fefefe);150 background-image: -ms-linear-gradient(top, #f4f4f4, #fefefe);151 background-image: -o-linear-gradient(top, #f4f4f4, #fefefe);152 background-image: linear-gradient(to bottom, #f4f4f4, #fefefe);153 155 border-color: #999; 154 156 color: #333; 155 text-shadow: 0 -1px 0 #fff;156 157 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 157 158 box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); 158 159 } 159 160 161 /* this creates an inset effect on the text */ 162 .wp-core-ui .button:active { 163 padding-top: 1px; 164 } 165 160 166 .wp-core-ui .button[disabled], 161 167 .wp-core-ui .button:disabled, 162 168 .wp-core-ui .button-secondary[disabled], … … 164 170 .wp-core-ui .button-disabled { 165 171 color: #aaa !important; 166 172 border-color: #ddd !important; 167 background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f4f4f4)) !important;168 background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4) !important;169 background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4) !important;170 background-image: -ms-linear-gradient(top, #f9f9f9, #f4f4f4) !important;171 background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4) !important;172 background-image: linear-gradient(to bottom, #f9f9f9, #f4f4f4) !important;173 173 -webkit-box-shadow: none !important; 174 174 box-shadow: none !important; 175 175 text-shadow: 0 1px 0 #fff !important; … … 181 181 ---------------------------------------------------------------------------- */ 182 182 183 183 .wp-core-ui .button-primary { 184 background-color: #21759b; 185 background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b)); 186 background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); 187 background-image: -moz-linear-gradient(top, #2a95c5, #21759b); 188 background-image: -ms-linear-gradient(top, #2a95c5, #21759b); 189 background-image: -o-linear-gradient(top, #2a95c5, #21759b); 190 background-image: linear-gradient(to bottom, #2a95c5, #21759b); 191 border-color: #21759b; 192 border-bottom-color: #1e6a8d; 193 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 194 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 184 background: #2ea2cc; 185 border-color: #0074a2; 186 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15); 187 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15); 195 188 color: #fff; 196 189 text-decoration: none; 197 text-shadow: 0 1px 0 rgba(0,0,0,0.1);198 190 } 199 191 200 192 .wp-core-ui .button-primary.hover, 201 193 .wp-core-ui .button-primary:hover, 202 194 .wp-core-ui .button-primary.focus, 203 195 .wp-core-ui .button-primary:focus { 204 background-color: #278ab7; 205 background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b)); 206 background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b); 207 background-image: -moz-linear-gradient(top, #2e9fd2, #21759b); 208 background-image: -ms-linear-gradient(top, #2e9fd2, #21759b); 209 background-image: -o-linear-gradient(top, #2e9fd2, #21759b); 210 background-image: linear-gradient(to bottom, #2e9fd2, #21759b); 211 border-color: #1b607f; 196 background: #1e8cbe; 197 border-color: #0074a2; 212 198 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 213 199 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 214 200 color: #fff; 215 text-shadow: 0 -1px 0 rgba(0,0,0,0.3);216 201 } 217 202 218 203 .wp-core-ui .button-primary.focus, … … 226 211 .wp-core-ui .button-primary.active:hover, 227 212 .wp-core-ui .button-primary.active:focus, 228 213 .wp-core-ui .button-primary:active { 229 background: #1b607f; 230 background-image: -webkit-gradient(linear, left top, left bottom, from(#21759b), to(#278ab7)); 231 background-image: -webkit-linear-gradient(top, #21759b, #278ab7); 232 background-image: -moz-linear-gradient(top, #21759b, #278ab7); 233 background-image: -ms-linear-gradient(top, #21759b, #278ab7); 234 background-image: -o-linear-gradient(top, #21759b, #278ab7); 235 background-image: linear-gradient(to bottom, #21759b, #278ab7); 236 border-color: #124560 #2382ae #2382ae #2382ae; 214 background: #1e8cbe; 215 border-color: #005684; 237 216 color: rgba(255,255,255,0.95); 238 217 -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 239 218 box-shadow: inset 0 1px 0 rgba(0,0,0,0.1); 240 text-shadow: 0 1px 0 rgba(0,0,0,0.1);219 vertical-align: top; 241 220 } 242 221 222 /* this creates an inset effect on the text */ 223 .wp-core-ui .button-primary:active { 224 padding-top: 1px; 225 } 226 243 227 .wp-core-ui .button-primary[disabled], 244 228 .wp-core-ui .button-primary:disabled, 245 229 .wp-core-ui .button-primary-disabled { -
src/wp-includes/css/dashicons.css
1 @font-face { 2 font-family: 'dashicons'; 3 src: url('../fonts/dashicons.eot'); 4 } 5 6 @font-face { 7 font-family: 'dashicons'; 8 src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), 9 url('../fonts/dashicons.ttf') format('truetype'), 10 url('../fonts/dashicons.svg#dashicons') format('svg'); 11 font-weight: normal; 12 font-style: normal; 13 } -
src/wp-includes/css/editor.css
1 1 2 2 /*------------------------------------------------------------------------------ 3 3 4 TinyMCE and Quicklinks toolbars 4 5 ------------------------------------------------------------------------------*/ 5 6 … … 48 49 color: #555; 49 50 } 50 51 52 /* These are part of TinyMCE, used in TinyMCE Advanced, but not WordPress. These are not MP6-ified. */ 53 /* 54 .wp_themeSkin span.mce_sup, 55 .wp_themeSkin span.mce_sub, 56 .wp_themeSkin span.mce_media, 57 .wp_themeSkin span.mce_styleprops, 58 .wp_themeSkin span.mce_search, 59 .wp_themeSkin span.mce_emotions, 60 .wp_themeSkin span.mce_print, 61 .wp_themeSkin span.mce_attribs, 62 .wp_themeSkin span.mce_hr, 63 .wp_themeSkin span.mce_cut, 64 .wp_themeSkin span.mce_copy, 65 .wp_themeSkin span.mce_paste, 66 .wp_themeSkin span.mce_cite, 67 .wp_themeSkin span.mce_visualchars, 68 .wp_themeSkin span.mce_advhr, 69 .wp_themeSkin span.mce_insertdate, 70 .wp_themeSkin span.mce_anchor, 71 .wp_themeSkin span.mce_visualaid, 72 .wp_themeSkin span.mce_cleanup, 73 .wp_themeSkin span.mce_table, 74 .wp_themeSkin span.mce_row_props, 75 .wp_themeSkin span.mce_cell_props, 76 .wp_themeSkin span.mce_row_before, 77 .wp_themeSkin span.mce_row_after, 78 .wp_themeSkin span.mce_delete_row, 79 .wp_themeSkin span.mce_col_before, 80 .wp_themeSkin span.mce_col_after, 81 .wp_themeSkin span.mce_delete_col, 82 .wp_themeSkin span.mce_split_cells, 83 .wp_themeSkin span.mce_merge_cells, 84 .wp_themeSkin span.mce_delete_table, 85 .wp_themeSkin span.mce_ins, 86 .wp_themeSkin span.mce_abbr, 87 .wp_themeSkin span.mce_acronym, 88 .wp_themeSkin span.mce_del, 89 .wp_themeSkin span.mce_replace, 90 .wp_themeSkin span.mce_code, 91 .wp_themeSkin span.mce_nonbreaking, 92 .wp_themeSkin span.mce_inserttime, 93 .wp_themeSkin span.mce_insertlayer, 94 .wp_themeSkin span.mce_moveforward, 95 .wp_themeSkin span.mce_movebackward, 96 .wp_themeSkin span.mce_absolute 97 { 98 -moz-transition: none; 99 -webkit-transition: none; 100 transition: none; 101 background: url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px; 102 }*/ 103 104 51 105 /* Containers */ 52 106 .wp_themeSkin table {} 53 107 … … 97 151 } 98 152 99 153 .wp_themeSkin .mceStatusbar { 154 background: #fff; 155 border-top: 1px solid #eee; 156 color: #000; 100 157 display: block; 101 158 font-family: sans-serif; 102 159 font-size: 12px; 160 height: 20px; 103 161 line-height: 16px; 104 162 padding: 0 0 0 8px; 105 163 overflow: visible; 106 height: 20px;107 border-top: 1px solid #dfdfdf;108 color: #000;109 background-color: #f5f5f5;110 164 } 111 165 112 166 .rtl .wp_themeSkin .mceStatusbar { … … 169 223 height: 20px; 170 224 } 171 225 172 .wp_themeSkin .mceIcon { 173 background: url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px; 226 a .mceIcon, .mceAction { 227 text-align: center; 228 font: normal 20px/1 'dashicons' !important; 229 speak: none; 230 -webkit-font-smoothing: antialiased; 231 -moz-osx-font-smoothing: grayscale; 174 232 } 175 233 234 .mceAction { 235 line-height:16px; 236 } 237 176 238 /* Button */ 177 239 .wp_themeSkin .mceButton { 178 240 display: block; … … 354 416 border-top-right-radius: 2px; 355 417 } 356 418 357 .wp_themeSkin span.mce_undo,358 .wp_themeSkin span.mce_redo,359 .wp_themeSkin span.mce_bullist,360 .wp_themeSkin span.mce_numlist,361 .wp_themeSkin span.mce_blockquote,362 .wp_themeSkin span.mce_charmap,363 .wp_themeSkin span.mce_bold,364 .wp_themeSkin span.mce_italic,365 .wp_themeSkin span.mce_underline,366 .wp_themeSkin span.mce_justifyleft,367 .wp_themeSkin span.mce_justifyright,368 .wp_themeSkin span.mce_justifycenter,369 .wp_themeSkin span.mce_justifyfull,370 .wp_themeSkin span.mce_indent,371 .wp_themeSkin span.mce_outdent,372 .wp_themeSkin span.mce_link,373 .wp_themeSkin span.mce_unlink,374 .wp_themeSkin span.mce_help,375 .wp_themeSkin span.mce_removeformat,376 .wp_themeSkin span.mce_fullscreen,377 .wp_themeSkin span.mce_wp_fullscreen,378 .wp_themeSkin span.mce_media,379 .wp_themeSkin span.mce_pastetext,380 .wp_themeSkin span.mce_pasteword,381 .wp_themeSkin span.mce_wp_help,382 .wp_themeSkin span.mce_wp_adv,383 .wp_themeSkin span.mce_wp_more,384 .wp_themeSkin span.mce_strikethrough,385 .wp_themeSkin span.mce_spellchecker,386 .wp_themeSkin span.mce_forecolor,387 .wp_themeSkin .mce_forecolorpicker,388 .wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,389 .wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,390 .wp_themeSkin .mceSplitButton span.mce_numlist,391 .wp_themeSkin .mceSplitButton span.mce_bullist {392 background-image: url('../images/wpicons.png?ver=20120720');393 }394 395 419 /* ColorSplitButton */ 396 420 .wp_themeSkin div.mceColorSplitMenu table { 397 421 background-color: #ebebeb; … … 418 442 width: 100%; 419 443 height: auto; 420 444 text-align: center; 421 font-family: Tahoma,Verdana,Arial,Helvetica;445 font-family: "Open Sans", sans-serif; 422 446 font-size: 11px; 423 447 line-height: 20px; 424 448 border-color: #fff; … … 474 498 .wp_themeSkin .mceMenu .mceText { 475 499 position: relative; 476 500 display: block; 477 font-family: Tahoma,Verdana,Arial,Helvetica;501 font-family: "Open Sans", sans-serif; 478 502 cursor: default; 479 503 margin: 0; 480 504 padding: 0 25px; … … 591 615 592 616 .wp_themeSkin .mce_h2 span.mceText { 593 617 font-weight: bolder; 594 font-size: 1 6px;618 font-size: 14px; 595 619 } 596 620 597 621 .wp_themeSkin .mce_h3 span.mceText { 598 622 font-weight: bolder; 599 font-size: 1 4px;623 font-size: 12px; 600 624 } 601 625 602 626 .wp_themeSkin .mce_h4 span.mceText { 603 627 font-weight: bolder; 604 font-size: 1 2px;628 font-size: 11px; 605 629 } 606 630 607 631 .wp_themeSkin .mce_h5 span.mceText { … … 614 638 font-size: 10px; 615 639 } 616 640 641 span.mce_bold:before { 642 content:'\f200'; 643 } 644 span.mce_italic:before { 645 content:'\f201'; 646 } 647 648 span.mce_bullist:before { 649 content:'\f203'; 650 } 651 652 span.mce_numlist:before { 653 content:'\f204'; 654 } 655 656 span.mce_blockquote:before { 657 content:'\f205'; 658 } 659 span.mce_justifyleft:before { 660 content:'\f206'; 661 } 662 span.mce_justifycenter:before { 663 content:'\f207'; 664 } 665 span.mce_justifyright:before { 666 content:'\f208'; 667 } 668 span.mce_link:before { 669 content:'\f103'; 670 } 671 span.mce_unlink:before { 672 content:'\f225'; 673 } 674 span.mce_wp_more:before { 675 content:'\f209'; 676 } 677 span.mce_strikethrough:before { 678 content:'\f224'; 679 } 680 681 span.mce_spellchecker { 682 font-size:20px; 683 background:none !important; 684 margin-top: 2px; 685 } 686 span.mce_spellchecker:before { 687 content:'\f210'; 688 } 689 span.mce_fullscreen:before, 690 span.mce_wp_fullscreen:before { 691 content:'\f211'; 692 } 693 694 span.mce_wp_adv:before { 695 content:'\f212'; 696 } 697 span.mce_underline:before { 698 content:'\f213'; 699 } 700 701 span.mce_justifyfull:before { 702 content:'\f214'; 703 } 704 705 span.mce_forecolor { 706 background:none !important; 707 } 708 span.mce_forecolor:before { 709 content:'\f215'; 710 } 711 span.mce_pastetext:before { 712 content:'\f217'; 713 } 714 span.mce_pasteword:before { 715 content:'\f216'; 716 } 717 span.mce_removeformat:before { 718 content:'\f218'; 719 } 720 span.mce_charmap:before { 721 content:'\f220'; 722 } 723 span.mce_outdent:before { 724 content:'\f221'; 725 } 726 span.mce_indent:before { 727 content:'\f222'; 728 } 729 span.mce_undo:before { 730 content:'\f171'; 731 } 732 span.mce_redo:before { 733 content:'\f172'; 734 } 735 span.mce_wp_help:before { 736 content:'\f223'; 737 } 738 span.mce_image:before { 739 content: '\f104'; 740 } 741 span.mce_ltr:before { 742 content: '\f320'; 743 } 744 745 617 746 /* Theme */ 618 747 .wp_themeSkin span.mce_undo {background-position:-500px -20px} 619 748 .wp_themeSkin .mceButtonEnabled:hover span.mce_undo, … … 944 1073 945 1074 #mceModalBlocker { 946 1075 background: #000; 1076 opacity: 0.7; 1077 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; 1078 filter: alpha(opacity=70); 947 1079 } 948 1080 949 1081 /* WP specific */ … … 951 1083 position: relative; 952 1084 } 953 1085 1086 #wp-content-editor-tools { 1087 position: relative; 1088 z-index: 1; 1089 } 1090 1091 #wp-content-editor-container { 1092 clear: both; 1093 position: relative; 1094 top: -1px; 1095 } 1096 954 1097 .wp-editor-area { 955 1098 font-family: Consolas, Monaco, monospace; 1099 font-size: 13px; 956 1100 padding: 10px; 957 1101 margin: 1px 0 0; 958 1102 line-height: 150%; … … 966 1110 } 967 1111 968 1112 .wp-editor-tools { 969 height: 30px; 970 padding: 0 10px 0 0; 1113 padding: 0; 971 1114 } 972 1115 973 1116 .rtl .wp-editor-tools { 974 1117 padding: 0 0 0 10px; 975 1118 } 976 1119 977 .wp-editor-container {978 border-width: 1px;979 border-style: solid;980 -webkit-border-top-right-radius: 3px;981 -webkit-border-top-left-radius: 3px;982 border-top-right-radius: 3px;983 border-top-left-radius: 3px;984 border-color: #ccc #ccc #dfdfdf;985 }986 987 1120 .wp-editor-container textarea.wp-editor-area { 988 1121 width: 100%; 989 1122 margin: 0; … … 993 1126 994 1127 .quicktags-toolbar, 995 1128 .wp_themeSkin tr.mceFirst td.mceToolbar { 996 border-bottom: 1px solid #d1d1d1; 997 background: #eee; 998 background-image: -webkit-gradient(linear, left bottom, left top, from(#e5e5e5), to(#f4f4f4)); 999 background-image: -webkit-linear-gradient(bottom, #e5e5e5, #f4f4f4); 1000 background-image: -moz-linear-gradient(bottom, #e5e5e5, #f4f4f4); 1001 background-image: -o-linear-gradient(bottom, #e5e5e5, #f4f4f4); 1002 background-image: linear-gradient(to top, #e5e5e5, #f4f4f4); 1129 border-bottom: 1px solid #dedede; 1130 background: #f5f5f5; 1003 1131 } 1004 1132 1005 1133 .wp-switch-editor { 1006 height: 18px;1007 font: 13px/18px Arial,Helvetica,sans-serif normal;1008 margin: 5px 5px 0 0;1009 padding: 4px 5px 2px;1134 background: #ebebeb; 1135 border: 1px solid #dedede; 1136 color: #777; 1137 cursor: pointer; 1010 1138 float: right; 1011 cursor: pointer; 1012 border-width: 1px; 1013 border-style: solid; 1014 -webkit-border-top-right-radius: 3px; 1015 -webkit-border-top-left-radius: 3px; 1016 border-top-right-radius: 3px; 1017 border-top-left-radius: 3px; 1018 background-color: #f1f1f1; 1019 border-color: #dfdfdf #dfdfdf #ccc; 1020 color: #999; 1139 font: 13px/19px "Open Sans", sans-serif; 1140 height: 19px; 1141 margin: 5px 0 0 5px; 1142 padding: 3px 8px 4px; 1021 1143 } 1022 1144 1023 1145 html[dir="rtl"] .wp-switch-editor { … … 1030 1152 1031 1153 .wp-switch-editor:hover { 1032 1154 text-decoration: none !important; 1155 background: #fff; 1033 1156 } 1034 1157 1035 1158 .js .tmce-active .wp-editor-area { … … 1042 1165 1043 1166 .tmce-active .switch-tmce, 1044 1167 .html-active .switch-html { 1045 border-color: #ccc #ccc #f4f4f4; 1046 background-color: #f4f4f4; 1168 background: #f5f5f5; 1047 1169 color: #555; 1170 height: 20px; 1171 border-bottom: none; 1048 1172 } 1049 1173 1050 1174 .wp-media-buttons .button { 1051 1175 margin-right: 5px; 1176 margin-bottom: 4px; 1177 padding-left: 7px; 1178 padding-right: 7px; 1052 1179 } 1053 1180 1181 .wp-media-buttons .button:active { 1182 position: relative; 1183 top: 1px; 1184 margin-top: -1px; 1185 margin-bottom: 1px; 1186 } 1187 1054 1188 .rtl .wp-media-buttons .button { 1055 1189 margin-right: 0; 1056 1190 margin-left: 5px; 1057 1191 } 1058 1192 1059 1193 .wp-media-buttons .insert-media { 1060 padding-left: 0.4em;1194 padding-left: 5px; 1061 1195 } 1062 1196 1063 1197 .rtl .wp-media-buttons .insert-media { 1064 padding-left: 10px;1065 padding-right: 0.4em;1198 padding-left: 7px; 1199 padding-right: 5px; 1066 1200 } 1067 1201 1068 1202 .wp-media-buttons a { … … 1078 1212 1079 1213 .wp-media-buttons span.wp-media-buttons-icon { 1080 1214 display: inline-block; 1081 width: 1 6px;1082 height: 1 6px;1215 width: 18px; 1216 height: 18px; 1083 1217 vertical-align: text-top; 1084 1218 margin: 0 2px; 1085 1219 } 1086 1220 1087 1221 .wp-media-buttons .add_media span.wp-media-buttons-icon { 1088 background: url('../../wp-admin/images/media-button.png') no-repeat top left;1222 background: none; 1089 1223 } 1090 1224 1225 .wp-media-buttons .add_media span.wp-media-buttons-icon:before { 1226 font: normal 18px/1 'dashicons'; 1227 speak: none; 1228 -webkit-font-smoothing: antialiased; 1229 -moz-osx-font-smoothing: grayscale; 1230 } 1231 1232 .wp-media-buttons .add_media span.wp-media-buttons-icon:before { 1233 content: '\f104'; 1234 } 1235 1236 .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before { 1237 content: '\f175'; 1238 } 1239 1091 1240 .quicktags-toolbar { 1092 1241 border-bottom-style: solid; 1093 1242 border-bottom-width: 1px; … … 1109 1258 display: inline-block; 1110 1259 min-width: 26px; 1111 1260 padding: 2px 4px; 1112 font: 12px/18px Arial, Helvetica, sans-serif normal;1261 font: 12px/18px "Open Sans", sans-serif; 1113 1262 color: #464646; 1114 1263 border: 1px solid #c3c3c3; 1115 1264 -webkit-border-radius: 3px; … … 1222 1371 } 1223 1372 1224 1373 #wp-link .toggle-arrow { 1225 background: transparent url( '../images/toggle-arrow.png') top left no-repeat;1374 background: transparent url("../images/toggle-arrow.png") top left no-repeat; 1226 1375 height: 23px; 1227 1376 line-height: 23px; 1228 1377 } … … 1749 1898 direction: rtl; 1750 1899 } 1751 1900 1752 .clearlooks2 .mceFocus .mceTop .mceLeft { 1901 /* TinyMCE modal */ 1902 .clearlooks2 .mceTop { 1903 border-bottom: 1px solid #ccc; 1904 } 1905 1906 .clearlooks2 .mceTop span { 1907 font: 13px/24px "Open Sans", sans-serif; 1908 color: #e5e5e5; 1909 } 1910 1911 .clearlooks2 .mceTop .mceLeft { 1753 1912 background: #444444; 1754 border-left: 1px solid #999; 1755 border-top: 1px solid #999; 1756 -webkit-border-top-left-radius: 3px; 1757 border-top-left-radius: 3px; 1913 border-color: transparent; 1758 1914 } 1759 1915 1760 .clearlooks2 .mce Focus .mceTop .mceRight {1916 .clearlooks2 .mceTop .mceRight { 1761 1917 background: #444444; 1762 border-right: 1px solid #999; 1763 border-top: 1px solid #999; 1764 -webkit-border-top-right-radius: 3px; 1765 border-top-right-radius: 3px; 1918 border-color: transparent; 1766 1919 } 1767 1920 1921 .clearlooks2 .mceMiddle { 1922 clip: rect(24px auto auto auto); 1923 } 1924 1768 1925 .clearlooks2 .mceMiddle .mceLeft { 1769 1926 background: #f1f1f1; 1770 border- left: 1px solid #999;1927 border-color: transparent; 1771 1928 } 1772 1929 1773 1930 .clearlooks2 .mceMiddle .mceRight { 1774 1931 background: #f1f1f1; 1775 border- right: 1px solid #999;1932 border-color: transparent; 1776 1933 } 1777 1934 1778 1935 .clearlooks2 .mceBottom { 1779 1936 background: #f1f1f1; 1780 border- bottom: 1px solid #999;1937 border-color: transparent; 1781 1938 } 1782 1939 1783 1940 .clearlooks2 .mceBottom .mceLeft { 1784 1941 background: #f1f1f1; 1785 border-bottom: 1px solid #999; 1786 border-left: 1px solid #999; 1942 border-color: transparent; 1787 1943 } 1788 1944 1789 1945 .clearlooks2 .mceBottom .mceCenter { 1790 1946 background: #f1f1f1; 1791 border- bottom: 1px solid #999;1947 border-color: transparent; 1792 1948 } 1793 1949 1794 1950 .clearlooks2 .mceBottom .mceRight { 1795 1951 background: #f1f1f1; 1796 border-bottom: 1px solid #999; 1797 border-right: 1px solid #999; 1952 border-color: transparent; 1798 1953 } 1799 1954 1800 .clearlooks2 .mceFocus .mceTop span { 1801 color: #e5e5e5; 1955 .clearlooks2 .mceClose, 1956 .clearlooks2 .mceFocus .mceClose, 1957 .clearlooks2 .mceFocus .mceClose:hover { 1958 background-image: none; 1802 1959 } 1960 .clearlooks2 .mceClose:before { 1961 content: '\f158'; 1962 font: normal 20px/1 'dashicons'; 1963 speak: none; 1964 -webkit-font-smoothing: antialiased; 1965 -moz-osx-font-smoothing: grayscale; 1966 color: #666; 1967 padding-left: 12px; 1968 } 1803 1969 1804 1805 1970 /* Distraction Free Writing mode 1806 1971 * =Overlay Styles 1807 1972 -------------------------------------------------------------- */ … … 1903 2068 /* =Top bar 1904 2069 -------------------------------------------------------------- */ 1905 2070 #fullscreen-topbar { 2071 background: #f5f5f5; 2072 border-bottom: 1px solid #fff; 2073 height: 40px; 2074 left: 0; 2075 min-width: 800px; 1906 2076 position: fixed; 1907 2077 top: 0; 1908 left: 0;2078 width: 100%; 1909 2079 z-index: 150050; 1910 border-bottom-style: solid;1911 border-bottom-width: 1px;1912 min-width: 800px;1913 width: 100%;1914 height: 40px;1915 2080 } 1916 2081 1917 2082 #wp-fullscreen-toolbar { … … 2035 2200 display: none; 2036 2201 } 2037 2202 2038 #wp-fullscreen-buttons #wp_fs_image span.mce_image {2039 background-image: url('../../wp-admin/images/media-button.png');2040 background-position: 2px 2px;2041 }2042 2043 2203 /* =Thickbox Adjustments 2044 2204 -------------------------------------------------------------- */ 2045 2205 .fullscreen-active #TB_overlay { … … 2074 2234 border-color: #ccc; 2075 2235 } 2076 2236 2077 #fullscreen-topbar {2078 border-bottom-color: #DFDFDF;2079 background: #f1f1f1;2080 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));2081 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);2082 background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);2083 background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);2084 background-image: linear-gradient(to top, #ececec, #f9f9f9);2085 }2086 2087 #mce_fullscreen_container {2088 background: #fff;2089 /* Fix for the default fullscreen plugin for the media modal */2090 z-index: 110000 !important;2091 }2092 2093 2237 /* =CSS 3 transitions 2094 2238 -------------------------------------------------------------- */ 2095 2239 … … 2227 2371 (-o-min-device-pixel-ratio: 5/4), 2228 2372 (-webkit-min-device-pixel-ratio: 1.25), 2229 2373 (min-resolution: 120dpi) { 2230 .wp_themeSkin span.mce_undo,2231 .wp_themeSkin span.mce_redo,2232 .wp_themeSkin span.mce_bullist,2233 .wp_themeSkin span.mce_numlist,2234 .wp_themeSkin span.mce_blockquote,2235 .wp_themeSkin span.mce_charmap,2236 .wp_themeSkin span.mce_bold,2237 .wp_themeSkin span.mce_italic,2238 .wp_themeSkin span.mce_underline,2239 .wp_themeSkin span.mce_justifyleft,2240 .wp_themeSkin span.mce_justifyright,2241 .wp_themeSkin span.mce_justifycenter,2242 .wp_themeSkin span.mce_justifyfull,2243 .wp_themeSkin span.mce_indent,2244 .wp_themeSkin span.mce_outdent,2245 .wp_themeSkin span.mce_link,2246 .wp_themeSkin span.mce_unlink,2247 .wp_themeSkin span.mce_help,2248 .wp_themeSkin span.mce_removeformat,2249 .wp_themeSkin span.mce_fullscreen,2250 .wp_themeSkin span.mce_wp_fullscreen,2251 .wp_themeSkin span.mce_media,2252 .wp_themeSkin span.mce_pastetext,2253 .wp_themeSkin span.mce_pasteword,2254 .wp_themeSkin span.mce_wp_help,2255 .wp_themeSkin span.mce_wp_adv,2256 .wp_themeSkin span.mce_wp_more,2257 .wp_themeSkin span.mce_strikethrough,2258 .wp_themeSkin span.mce_spellchecker,2259 .wp_themeSkin span.mce_forecolor,2260 .wp_themeSkin .mce_forecolorpicker,2261 .wp_themeSkin .mceSplitButton .mce_spellchecker span.mce_spellchecker,2262 .wp_themeSkin .mceSplitButton .mce_forecolor span.mce_forecolor,2263 .wp_themeSkin .mceSplitButton span.mce_numlist,2264 .wp_themeSkin .mceSplitButton span.mce_bullist {2265 background-image: url('../images/wpicons-2x.png?ver=20120720');2266 background-size: 560px 40px;2267 }2268 2269 2374 .wp-media-buttons .add_media span.wp-media-buttons-icon, 2270 2375 #wp-fullscreen-buttons #wp_fs_image span.mce_image { 2271 background-image: url('../../wp-admin/images/media-button-2x.png'); 2272 background-size: 16px 16px; 2376 background: none; 2273 2377 } 2274 2378 2275 2379 .wp_themeSkin .mceListBox .mceOpen, -
src/wp-includes/css/media-views.css
3 3 */ 4 4 .media-modal, 5 5 .media-frame { 6 font-family: sans-serif;6 font-family: "Open Sans", sans-serif; 7 7 font-size: 12px; 8 8 } 9 9 … … 49 49 .media-frame input[type="url"], 50 50 .media-frame textarea, 51 51 .media-frame select { 52 font-family: sans-serif;52 font-family: "Open Sans", sans-serif; 53 53 font-size: 12px; 54 54 -moz-box-sizing: border-box; 55 55 -webkit-box-sizing: border-box; 56 56 -ms-box-sizing: border-box; /* ie8 only */ 57 57 box-sizing: border-box; 58 -webkit-border-radius: 3px;59 border-radius: 3px;60 58 border-width: 1px; 61 59 border-style: solid; 62 60 border-color: #dfdfdf; … … 114 112 115 113 .media-modal-close { 116 114 position: absolute; 117 top: 7px; 118 right: 7px; 115 text-decoration: none; 116 top: 5px; 117 right: 10px; 119 118 width: 30px; 120 119 height: 30px; 121 120 z-index: 1000; 122 121 } 123 .media-modal-close span { 122 123 .media-modal-close span.media-modal-icon { 124 124 display: block; 125 125 margin: 8px auto 0; 126 126 width: 15px; 127 127 height: 15px; 128 background- position: -100px 0;128 background-image: none; 129 129 } 130 130 131 .media-modal-close .media-modal-icon:before { 132 content: '\f158'; 133 font: normal 20px/1 'dashicons'; 134 speak: none; 135 vertical-align: middle; 136 -webkit-font-smoothing: antialiased; 137 -moz-osx-font-smoothing: grayscale; 138 color: #666; 139 } 140 141 .media-modal-close:hover .media-modal-icon:before { 142 color: #2ea2cc; 143 } 144 131 145 .media-modal-close:active { 132 146 outline: 0; 133 147 } … … 141 155 overflow: auto; 142 156 min-height: 300px; 143 157 background: #fff; 158 -webkit-font-smoothing: subpixel-antialiased; 144 159 } 145 160 146 161 .media-modal-icon { … … 209 224 } 210 225 211 226 .media-sidebar .sidebar-title { 212 font-weight: 200;213 227 font-size: 20px; 214 228 margin: 0; 215 229 padding: 12px 10px 10px; … … 232 246 text-transform: uppercase; 233 247 font-size: 12px; 234 248 color: #777; 235 text-shadow: 0 1px 0 #fff;236 249 margin: 24px 0 8px; 237 250 } 238 251 … … 261 274 max-width: 65%; 262 275 } 263 276 264 .media-sidebar .setting input[type="checkbox"] { 265 width: auto; 277 .media-sidebar .setting input[type="checkbox"], 278 .media-sidebar .field input[type="checkbox"] { 279 width: 16px; 266 280 float: none; 267 margin -top: 8px;281 margin: 8px 3px 0; 268 282 padding: 0; 269 283 } 270 284 … … 277 291 text-align: right; 278 292 font-weight: normal; 279 293 color: #999; 280 text-shadow: 0 1px 0 #fff;281 294 } 282 295 283 296 .media-sidebar .setting input, 284 297 .media-sidebar .setting textarea { 298 margin: 1px; 285 299 width: 65%; 286 300 float: right; 287 301 } … … 336 350 337 351 .compat-item .field { 338 352 float: right; 339 width: 65%; 340 padding-right: 1px; 353 width: 66%; 341 354 } 342 355 343 356 .compat-item .field input { … … 357 370 bottom: 0; 358 371 margin: 0; 359 372 padding: 16px 0; 360 border-right : 1px solid #d9d9d9;361 bo x-shadow: inset -6px 0 6px -6px rgba( 0, 0, 0, 0.2 );373 border-right-width: 1px; 374 border-right-style: solid; 362 375 -webkit-user-select: none; 363 376 -moz-user-select: none; 364 377 -ms-user-select: none; … … 368 381 .media-menu > a { 369 382 display: block; 370 383 position: relative; 371 padding: 4px 20px;384 padding: 8px 20px; 372 385 margin: 0; 373 386 line-height: 18px; 374 387 font-size: 14px; 375 388 color: #21759B; 376 text-shadow: 0 1px 0 #fff;377 389 text-decoration: none; 378 390 } 379 391 … … 417 429 .media-router > a { 418 430 position: relative; 419 431 float: left; 420 padding: 2px 10px;432 padding: 8px 10px 9px; 421 433 margin: 0; 422 434 height: 18px; 423 435 line-height: 18px; 424 436 font-size: 14px; 425 border-right: 1px solid #dfdfdf;426 text-shadow: 0 1px 0 #fff;427 437 text-decoration: none; 428 438 } 429 439 … … 441 451 color: #333; 442 452 } 443 453 454 .media-router .active, 455 .media-router > a.active:last-child { 456 margin: -1px -1px 0; 457 } 458 444 459 .media-router .active:after { 445 content: ''; 446 display: block; 447 margin: -100px auto 0; 448 width: 7px; 449 height: 7px; 450 background: #fff; 451 box-shadow: 1px 1px 1px rgba( 0, 0, 0, 0.2 ); 452 z-index: 300; 453 454 -webkit-transform: rotate( 45deg ) translate( 75px, 75px ); 455 -moz-transform: rotate( 45deg ) translate( 75px, 75px ); 456 -ms-transform: rotate( 45deg ) translate( 75px, 75px ); 457 -o-transform: rotate( 45deg ) translate( 75px, 75px ); 458 transform: rotate( 45deg ) translate( 75px, 75px ); 460 display: none; 459 461 } 460 462 461 463 /** … … 484 486 top: 0; 485 487 left: 200px; 486 488 right: 0; 487 height: 45px;489 height: 56px; 488 490 z-index: 200; 489 491 } 490 492 491 493 .media-frame-router { 492 494 position: absolute; 493 top: 45px;495 top: 56px; 494 496 left: 200px; 495 497 right: 0; 496 height: 3 0px;498 height: 36px; 497 499 z-index: 200; 498 border-bottom: 1px solid #dfdfdf;499 box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );500 500 } 501 501 502 502 .media-frame-content { 503 503 position: absolute; 504 top: 75px;504 top: 90px; 505 505 left: 200px; 506 506 right: 0; 507 507 bottom: 61px; … … 509 509 width: auto; 510 510 margin: 0; 511 511 overflow: auto; 512 border-top-width: 1px; 513 border-top-style: solid; 514 border-bottom-width: 1px; 515 border-bottom-style: solid; 512 516 } 513 517 514 518 .media-frame-toolbar { … … 518 522 bottom: 0; 519 523 height: 60px; 520 524 z-index: 100; 521 border: 0 solid #dfdfdf;522 border-width: 1px 0 0 0;523 box-shadow: 0 -4px 4px -4px rgba( 0, 0, 0, 0.1 );524 525 } 525 526 526 527 .media-frame.hide-menu .media-frame-title, … … 543 544 } 544 545 545 546 .media-frame.hide-router .media-frame-content { 546 top: 45px;547 top: 56px; 547 548 } 548 549 549 550 .media-frame.hide-router .media-frame-router { … … 562 563 .media-frame-title h1 { 563 564 padding: 0 16px; 564 565 font-size: 22px; 565 font-weight: 200; 566 line-height: 45px; 566 line-height: 60px; 567 567 margin: 0; 568 568 } 569 569 … … 598 598 line-height: 18px; 599 599 font-size: 13px; 600 600 color: #464646; 601 font-family: sans-serif;601 font-family: "Open Sans", sans-serif; 602 602 -webkit-appearance: none; 603 603 } 604 604 … … 641 641 0 0 0 3px #ccc; 642 642 } 643 643 644 .details.attachment {645 box-shadow:646 0 0 0 1px #fff,647 0 0 0 5px #1e8cbe;648 }649 650 644 .attachment-preview { 651 645 position: relative; 652 646 width: 199px; … … 779 773 outline: none; 780 774 781 775 border: 1px solid #fff; 782 border-radius: 3px;783 776 box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.4 ); 784 785 background: #f1f1f1;786 background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));787 background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1);788 background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1);789 background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1);790 background-image: linear-gradient(to bottom, #f1f1f1, #e1e1e1);791 777 } 792 778 793 779 .attachment .check div { … … 938 924 display: none; 939 925 font-size: 12px; 940 926 color: #666; 941 text-shadow: 0 1px 0 #fff;942 927 } 943 928 944 929 .uploading.media-uploader-status .upload-details { … … 1032 1017 } 1033 1018 1034 1019 .uploader-window h3 { 1020 margin: -0.5em 0 0; 1035 1021 position: absolute; 1036 1022 top: 50%; 1037 1023 left: 0; … … 1042 1028 -o-transform: translateY( -50% ); 1043 1029 transform: translateY( -50% ); 1044 1030 1045 font-size: 20px; 1046 font-weight: 200; 1031 font-size: 40px; 1047 1032 color: #fff; 1048 1033 padding: 0; 1049 1034 } … … 1092 1077 .uploader-inline h3 { 1093 1078 font-size: 20px; 1094 1079 line-height: 28px; 1095 font-weight: 200;1080 font-weight: 400; 1096 1081 margin-bottom: 1.6em; 1097 1082 } 1098 1083 … … 1252 1237 */ 1253 1238 1254 1239 .media-frame .spinner { 1255 background: url( ../images/wpspin.gif) no-repeat;1256 background-size: 16px 16px;1240 background: url('../images/spinner.gif') no-repeat; 1241 background-size: 20px 20px; 1257 1242 display: none; 1258 1243 opacity: 0.7; 1259 1244 filter: alpha(opacity=70); 1260 width: 16px;1261 height: 16px;1245 width: 20px; 1246 height: 20px; 1262 1247 margin: 0; 1263 1248 } 1264 1249 … … 1402 1387 .embed-url { 1403 1388 display: block; 1404 1389 position: relative; 1405 padding: 0 16px 7px;1390 padding: 16px; 1406 1391 margin: 0; 1407 1392 z-index: 250; 1408 1393 background: #fff; 1409 border-bottom: 1px solid #dfdfdf;1410 box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );1411 1394 font-size: 18px; 1412 font-weight: 200;1413 1395 } 1414 1396 1415 1397 .media-frame .embed-url input { … … 1433 1415 .embed-link-settings, 1434 1416 .embed-image-settings { 1435 1417 position: absolute; 1436 background: #f5f5f5; 1437 top: 57px; 1418 top: 60px; 1438 1419 left: 0; 1439 1420 right: 0; 1440 1421 bottom: 0; … … 1480 1461 font-size: 13px; 1481 1462 line-height: 24px; 1482 1463 color: #999; 1483 text-shadow: 0 1px 0 #fff;1484 1464 } 1485 1465 1486 1466 .media-embed .setting .button-group { … … 1627 1607 .media-menu .separator { 1628 1608 margin: 12px 10px; 1629 1609 } 1610 1611 .media-modal-close { 1612 right: 20px; 1613 } 1630 1614 } 1631 1615 1632 1616 @media only screen and (max-width: 800px) { … … 1662 1646 (-o-min-device-pixel-ratio: 5/4), 1663 1647 (-webkit-min-device-pixel-ratio: 1.25), 1664 1648 (min-resolution: 120dpi) { 1649 1665 1650 .media-modal-icon { 1666 1651 background-image: url(../images/uploader-icons-2x.png); 1667 1652 background-size: 134px 15px; 1668 1653 } 1669 1654 1670 1655 .media-frame .spinner { 1671 background-image: url( ../images/wpspin-2x.gif);1656 background-image: url('../images/spinner-2x.gif'); 1672 1657 } 1673 1658 } 1659 No newline at end of file -
src/wp-includes/css/open-sans.css
1 @font-face { 2 font-family: 'Open Sans'; 3 font-style: normal; 4 font-weight: 400; 5 src: url('../fonts/opensans/OpenSans-Regular-webfont.woff') format('woff'), 6 url('../fonts/opensans/OpenSans-Regular-webfont.svg#open_sansregular') format('svg'); 7 } 8 @font-face { 9 font-family: 'Open Sans'; 10 font-style: normal; 11 font-weight: 600; 12 src: url('../fonts/opensans/OpenSans-Semibold-webfont.woff') format('woff'), 13 url('../fonts/opensans/OpenSans-Semibold-webfont.svg#open_sanssemibold') format('svg'); 14 } 15 @font-face { 16 font-family: 'Open Sans'; 17 font-style: italic; 18 font-weight: 400; 19 src: url('../fonts/opensans/OpenSans-Italic-webfont.woff') format('woff'), 20 url('../fonts/opensans/OpenSans-Italic-webfont.svg#open_sansitalic') format('svg'); 21 } 22 @font-face { 23 font-family: 'Open Sans'; 24 font-style: italic; 25 font-weight: 600; 26 src: url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.woff') format('woff'), 27 url('../fonts/opensans/OpenSans-SemiboldItalic-webfont.svg#open_sanssemibold_italic') format('svg'); 28 } -
src/wp-includes/css/wp-pointer.css
1 .wp-pointer { 2 } 3 4 .wp-pointer-content { 1 .wp-pointer-content { 5 2 padding: 0 0 10px; 6 3 position: relative; 7 4 font-size: 13px; 8 9 5 background: #fff; 10 border-style: solid; 11 border-width: 1px; 12 /* Fallback for non-rgba-compliant browsers */ 13 border-color: #dfdfdf; 14 /* Use rgba to look better against non-white backgrounds. */ 15 border-color: rgba(0,0,0,.125); 16 -webkit-border-radius: 3px; 17 border-radius: 3px; 18 19 -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.19); 20 box-shadow: 0 2px 4px rgba(0,0,0,.19); 6 border: none; 7 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075); 8 box-shadow: 0 3px 6px rgba(0,0,0,0.075); 21 9 } 22 10 23 11 .wp-pointer-content h3 { … … 27 15 line-height: 1.4em; 28 16 font-size: 14px; 29 17 color: #fff; 30 border-radius: 3px 3px 0 0; 31 text-shadow: 0 -1px 0 rgba(0,0,0,0.3); 32 background: #8cc1e9; 33 background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9)); 34 background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9); 35 background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9); 36 background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9); 37 background-image: linear-gradient(to top, #72a7cf, #8cc1e9); 18 background: #2ea2cc; 38 19 } 39 20 40 21 .wp-pointer-content h3:before { … … 64 45 } 65 46 66 47 .wp-pointer-buttons a.close { 67 padding-left: 3px;48 padding-left: 3px; 68 49 position: relative; 69 50 } 70 51 71 52 .wp-pointer-buttons a.close:before { 72 content: ' ';73 width: 10px;74 height: 100%;75 position: absolute;76 left: -10px;77 background:url('../images/xit.gif') 0 50% no-repeat;53 font-size: 13px; 54 width: 10px; 55 height: 100%; 56 position: absolute; 57 left: -12px; 58 top: 1px; 78 59 } 79 60 80 61 .wp-pointer-buttons a.close:hover:before { … … 91 72 92 73 .wp-pointer-arrow { 93 74 z-index: 10; 94 background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat; 75 width: 0; 76 height: 0; 77 border: 0 solid transparent; 95 78 } 96 79 97 80 .wp-pointer-arrow-inner { … … 121 104 .wp-pointer-bottom .wp-pointer-arrow, 122 105 .wp-pointer-undefined .wp-pointer-arrow { 123 106 left: 50px; 124 width: 30px;125 height: 14px;126 107 } 127 108 128 109 .wp-pointer-left .wp-pointer-arrow, 129 110 .wp-pointer-right .wp-pointer-arrow { 130 111 top: 50%; 131 112 margin-top: -15px; 132 width: 14px;133 height: 30px;134 113 } 135 114 136 115 /* Arrow Sprite */ 137 116 .wp-pointer-top .wp-pointer-arrow, 138 117 .wp-pointer-undefined .wp-pointer-arrow { 139 118 top: 0; 140 background-position: 0 0; 119 border-width: 0 17px 15px 17px; 120 border-bottom-color: #2ea2cc; 141 121 } 142 122 143 123 .wp-pointer-bottom .wp-pointer-arrow { 144 124 bottom: 0; 145 background-position: 0 -46px; 125 border-width: 15px 17px 0 17px; 126 border-top-color: #fff; 146 127 } 147 128 148 129 .wp-pointer-left .wp-pointer-arrow { 149 130 left: 0; 150 background-position: 0 -15px; 131 border-width: 17px 15px 17px 0; 132 border-right-color: #fff; 151 133 } 152 134 153 135 .wp-pointer-right .wp-pointer-arrow { 154 136 right:0; 155 background-position:-16px -15px; 137 border-width: 17px 0 17px 15px; 138 border-left-color: #fff; 156 139 } 157 140 158 141 /* - RTL … … 185 168 .rtl .wp-pointer-undefined .wp-pointer-arrow { 186 169 right: 50px; 187 170 } 188 189 /**190 * HiDPI Displays191 */192 @media print,193 (-o-min-device-pixel-ratio: 5/4),194 (-webkit-min-device-pixel-ratio: 1.25),195 (min-resolution: 120dpi) {196 197 .wp-pointer-buttons a.close:before {198 background-image: url('../images/xit-2x.gif');199 background-size: 20px auto;200 }201 202 .wp-pointer-content h3:before {203 background-image: url('../images/icon-pointer-flag-2x.png');204 background-size: 36px auto;205 }206 207 .wp-pointer-arrow {208 background: url('../images/arrow-pointer-blue-2x.png') 0 0 no-repeat;209 background-size: 30px 60px;210 }211 212 .wp-pointer-top .wp-pointer-arrow,213 .wp-pointer-undefined .wp-pointer-arrow {214 background-position: 0 1px;215 }216 217 .wp-pointer-bottom .wp-pointer-arrow {218 background-position: 0 -47px;219 }220 221 .wp-pointer-left .wp-pointer-arrow {222 background-position: 1px -15px;223 }224 225 .wp-pointer-right .wp-pointer-arrow {226 background-position:-17px -15px;227 }228 } -
src/wp-includes/general-template.php
2101 2101 * @since 3.0.0 2102 2102 */ 2103 2103 function register_admin_color_schemes() { 2104 wp_admin_css_color( 'classic', _x( 'Blue', 'admin color scheme' ), admin_url( 'css/colors-classic.min.css' ), 2105 array( '#5589aa', '#cfdfe9', '#d1e5ee', '#eff8ff' ) ); 2106 wp_admin_css_color( 'fresh', _x( 'Gray', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ), 2107 array( '#555', '#a0a0a0', '#ccc', '#f1f1f1' ) ); 2104 wp_admin_css_color( 'fresh', _x( 'Default', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ), 2105 array( '#222', '#333', '#0074a2', '#2ea2cc' ) ); 2108 2106 } 2109 2107 2110 2108 /** -
src/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css
1 html { 2 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 3 box-shadow: inset 0 1px 2px rgba(0,0,0,0.07); 4 } 1 5 2 6 body.mceForceColors {background:#FFF; color:#000;} 3 7 body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} … … 39 43 /* WordPress styles */ 40 44 body { 41 45 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 42 font-size: 1 3px;43 line-height: 1 9px;46 font-size: 14px; 47 line-height: 1.5em; 44 48 color: #333; 45 margin: 10px; 49 background-color: #fff; 50 margin: 0; 51 padding: 10px; 46 52 } 47 53 54 p { 55 margin-bottom: 1.3em; 56 } 57 48 58 .aligncenter, 49 59 dl.aligncenter { 50 60 display: block; … … 83 93 84 94 .wp-caption-dd { 85 95 font-size: 11px; 86 line-height: 1 7px;96 line-height: 1.5; 87 97 padding: 0 4px 5px; 88 98 margin: 0; 89 99 } … … 104 114 border: 0; 105 115 border-top: 1px dotted #cccccc; 106 116 display: block; 107 width: 95%;108 117 height: 12px; 109 margin: 1 5pxauto 0;118 margin: 1.2em auto 0; 110 119 } 111 120 112 121 img.mce-wp-more { 113 122 background: transparent url("img/more_bug.gif") no-repeat right top; 123 background-size: 52px 11px; 114 124 } 115 125 116 126 img.mce-wp-nextpage { 117 127 background: transparent url("img/page_bug.gif") no-repeat right top; 128 background-size: 76px 11px; 118 129 } 119 130 120 131 img.wp-gallery { 121 132 border: 1px dashed #888; 122 133 background: #f2f8ff url("img/gallery.png") no-repeat scroll center center; 123 width: 99%; 134 background-size: 40px 40px; 135 width: 100%; 124 136 height: 250px; 125 137 } 126 138 … … 130 142 width: 300px; 131 143 height: 250px; 132 144 } 145 146 147 @media print, 148 (-o-min-device-pixel-ratio: 5/4), 149 (-webkit-min-device-pixel-ratio: 1.25), 150 (min-resolution: 120dpi) { 151 152 img.mce-wp-more { 153 background-image: url('../images/mce-more-2x.png'); 154 } 155 156 img.mce-wp-nextpage { 157 background-image: url('../images/mce-nextpage-2x.png'); 158 } 159 160 img.wp-gallery { 161 background-image: url('../images/gallery-2x.png'); 162 } 163 } -
src/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css
1 @import url('//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin-ext,latin'); 2 1 3 /* Generic */ 2 4 body { 3 font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; 4 background:#f1f1f1; 5 font-family: "Open Sans", sans-serif; 6 font-size:13px; 7 background:#fcfcfc; 5 8 padding:0; 6 9 margin:8px 8px 0 8px; 7 10 } 8 11 9 html {background:#f1f1f1;}10 td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}11 12 textarea {resize:none;outline:none;} 12 a:link, a:visited {color:black;} 13 a:hover {color:#2B6FB6;} 13 14 a:link, a:hover { 15 color: #2B6FB6; 16 } 17 18 a:visited { 19 color: #3C2BB6; 20 } 21 14 22 .nowrap {white-space: nowrap} 15 23 16 24 /* Forms */ … … 34 42 .mceActionPanel .button, 35 43 input.mceButton, 36 44 .updateButton { 37 border: 1px solid #bbb; 38 margin:0; 39 padding:0 0 1px; 40 font-weight:bold; 41 font-size: 11px; 42 width:94px; 43 height:24px; 44 color:#000; 45 cursor:pointer; 45 display: inline-block; 46 text-decoration: none; 47 border: 1px solid #adadad; 48 margin: 0; 49 padding: 0 10px 1px; 50 font-size: 13px; 51 height: 24px; 52 line-height: 22px; 53 color: #333; 54 cursor: pointer; 46 55 -webkit-border-radius: 3px; 56 -webkit-appearance: none; 47 57 border-radius: 3px; 48 background-color: #eee; 49 background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); 50 background-image: -webkit-linear-gradient(bottom, #ddd, #fff); 51 background-image: -moz-linear-gradient(bottom, #ddd, #fff); 52 background-image: -o-linear-gradient(bottom, #ddd, #fff); 53 background-image: linear-gradient(to top, #ddd, #fff); 58 white-space: nowrap; 59 -webkit-box-sizing: border-box; 60 -moz-box-sizing: border-box; 61 box-sizing: border-box; 62 background: #fafafa; 63 background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e9e9e9)); 64 background-image: -webkit-linear-gradient(top, #fafafa, #e9e9e9); 65 background-image: -moz-linear-gradient(top, #fafafa, #e9e9e9); 66 background-image: -o-linear-gradient(top, #fafafa, #e9e9e9); 67 background-image: linear-gradient(to bottom, #fafafa, #e9e9e9); 68 69 text-shadow: 0 1px 0 #fff; 70 -webkit-box-shadow: inset 0 1px 0 #fff; 71 -moz-box-shadow: inset 0 1px 0 #fff; 72 box-shadow: inset 0 1px 0 #fff; 54 73 } 55 74 56 #insert:hover, 75 #insert { 76 background: #2ea2cc; 77 background: -webkit-gradient(linear, left top, left bottom, from(#2ea2cc), to(#1e8cbe)); 78 background: -webkit-linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%); 79 background: linear-gradient(top, #2ea2cc 0%,#1e8cbe 100%); 80 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=0 ); 81 border-color: #0074a2; 82 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 83 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 84 color: #fff; 85 text-decoration: none; 86 text-shadow: 0 1px 0 rgba(0,86,132,0.7); 87 } 88 57 89 #cancel:hover, 58 90 input.mceButton:hover, 59 91 .updateButton:hover, 60 #insert:focus,61 92 #cancel:focus, 62 93 input.mceButton:focus, 63 94 .updateButton:focus { 64 border: 1px solid #555; 95 background: #f3f3f3; 96 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); 97 background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); 98 background-image: -moz-linear-gradient(top, #fff, #f3f3f3); 99 background-image: -ms-linear-gradient(top, #fff, #f3f3f3); 100 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 101 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 102 border-color: #999; 103 color: #222; 65 104 } 66 105 106 #insert:hover, 107 #insert:focus { 108 background: #1e8cbe; 109 background: -webkit-gradient(linear, left top, left bottom, from(#1e8cbe), to(#0074a2)); 110 background: -webkit-linear-gradient(top, #1e8cbe 0%,#0074a2 100%); 111 background: linear-gradient(top, #1e8cbe 0%,#0074a2 100%); 112 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e8cbe', endColorstr='#0074a2',GradientType=0 ); 113 border-color: #0074a2; 114 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 115 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6); 116 color: #fff; 117 } 118 67 119 .mceActionPanel #insert { 68 120 float: right; 69 121 } … … 103 155 .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;} 104 156 .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;} 105 157 158 .wp-core-ui #tabs { 159 padding-bottom: 5px; 160 background-color: transparent; 161 } 162 163 .wp-core-ui #tabs a { 164 padding: 6px 10px; 165 margin: 0 2px; 166 } 167 106 168 /* Panels */ 107 169 .panel_wrapper div.panel {display:none;} 108 170 .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;} -
src/wp-includes/script-loader.php
393 393 $scripts->add( 'media-editor', "/wp-includes/js/media-editor$suffix.js", array( 'shortcode', 'media-views' ), false, 1 ); 394 394 $scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models' ), false, 1 ); 395 395 396 $scripts->add( 'svg-painter', '/wp-includes/js/svg-painter.js' ); 397 396 398 if ( is_admin() ) { 397 399 $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 ); 398 400 did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array( … … 553 555 // Any rtl stylesheets that don't have a .min version 554 556 $no_suffix = array( 'farbtastic' ); 555 557 556 $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css" );558 $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array( 'open-sans', 'dashicons' ) ); 557 559 558 560 $styles->add( 'ie', "/wp-admin/css/ie$suffix.css" ); 559 561 $styles->add_data( 'ie', 'conditional', 'lte IE 7' ); 560 562 563 // Open Sans 564 $styles->add( 'open-sans', '/wp-includes/css/open-sans.css' ); 565 566 // Dashicons 567 $styles->add( 'dashicons', '/wp-includes/css/dashicons.css' ); 568 561 569 // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. 562 $styles->add( 'colors', true, array( 'wp-admin', 'buttons') );570 $styles->add( 'colors', true, array( 'wp-admin', 'buttons', 'open-sans', 'dashicons' ) ); 563 571 564 572 // do not refer to these directly, the right one is queued by the above "meta" colors handle 565 $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') ); 566 $styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array('wp-admin', 'buttons') ); 573 $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array( 'wp-admin', 'buttons' ) ); 567 574 568 575 $styles->add( 'media', "/wp-admin/css/media$suffix.css" ); 569 576 $styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') ); … … 572 579 $styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" ); 573 580 $styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.12' ); 574 581 $styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.8' ); 575 $styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css" );582 $styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array( 'open-sans', 'dashicons' ) ); 576 583 $styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" ); 577 584 $styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" ); 578 585 $styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" );