Ticket #25858: mp6.2.diff
File mp6.2.diff, 351.5 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 $classes .= ' multisite'; 149 151 152 if ( is_network_admin() ) 153 $classes .= ' 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-mp6.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 MP6 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 span.wp-media-buttons-icon:before { 1062 color: #888; 709 1063 } 710 1064 711 1065 #rightnow .youhave { … … 716 1070 color: #448abd; 717 1071 } 718 1072 719 .tagchecklist span a, 720 #bulk-titles div a { 721 background: url(../images/xit.gif) no-repeat; 1073 #welcome-panel.welcome-panel .welcome-panel-close::before, 1074 .tagchecklist span a:before, 1075 #bulk-titles div a:before, 1076 .wp-pointer-buttons a.close:before { 1077 background: none; 1078 color: #bbb; 722 1079 } 723 1080 724 .tagchecklist span a:hover, 725 #bulk-titles div a:hover { 726 background: url(../images/xit.gif) no-repeat -10px 0; 1081 #welcome-panel.welcome-panel .welcome-panel-close:hover:before, 1082 .tagchecklist span a:hover:before, 1083 #bulk-titles div a:hover:before, 1084 .wp-pointer-buttons a.close:hover:before { 1085 color: #c00; 727 1086 } 728 1087 729 #update-nag, .update-nag {730 background-color: #fffbcc;731 border-color: #e6db55;732 color: #555;733 }734 735 1088 #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 ); 1089 background-color: #fff; 1090 border: 1px solid #dedede; 1091 border-top: none; 1092 -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025); 1093 box-shadow: 0 1px 0 rgba(0,0,0,.025); 740 1094 } 741 1095 742 1096 #contextual-help-back { 743 background: #f ff;1097 background: #f6fbfd; 744 1098 } 745 1099 746 1100 .contextual-help-tabs a:hover { … … 748 1102 } 749 1103 750 1104 #contextual-help-back, 1105 .contextual-help-tabs .active a { 1106 border-color: #e1e1e1; 1107 } 1108 751 1109 .contextual-help-tabs .active { 752 border-color: #ccc; 1110 border-color: #2ea2cc; 1111 1112 -webkit-box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 1113 box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02); 753 1114 } 754 1115 755 1116 .contextual-help-tabs .active, 756 1117 .contextual-help-tabs .active a, 757 1118 .contextual-help-tabs .active a:hover { 758 background: #f ff;1119 background: #f6fbfd; 759 1120 color: #333; 760 1121 } 761 1122 762 1123 /* screen options and help tabs */ 763 1124 #screen-options-link-wrap, 764 1125 #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); 1126 border: 1px solid #dedede; 1127 border-top: none; 1128 background: #fff; 1129 -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 1130 box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1); 774 1131 } 775 1132 776 1133 #screen-meta-links a { 777 1134 color: #777; 778 background: transparent url(../images/arrows.png) no-repeat right 4px;779 1135 } 780 1136 1137 #screen-meta-links a:after { 1138 color: #bbb; 1139 } 1140 781 1141 #screen-meta-links a:hover, 782 1142 #screen-meta-links a:active { 783 1143 color: #333; 784 1144 background-color: transparent; 785 1145 } 786 787 #screen-meta-links a.screen-meta-active {788 background-position: right -31px;789 }790 791 1146 /* end screen options and help tabs */ 792 1147 793 .login #backtoblog a {794 color: #464646;795 }796 797 1148 #wphead { 798 border-bottom : #dfdfdf 1px solid;1149 border-bottom-color: #dfdfdf; 799 1150 } 800 1151 801 1152 #wphead h1 a { 802 1153 color: #464646; 803 1154 } 804 1155 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 1156 .file-error, 815 1157 abbr.required, 816 1158 .widget-control-remove:hover, … … 849 1191 } 850 1192 851 1193 #post-status-info { 852 border-color: #dfdfdf #ccc #ccc; 853 background-color: #eaeaea; 1194 background-color: #f7f7f7; 854 1195 } 855 1196 856 .editwidget .widget-inside { 857 border-color: #dfdfdf; 1197 .widget-inside, 1198 .menu-item-settings { 1199 background: #eee; 858 1200 } 859 1201 860 1202 #titlediv #title { … … 873 1215 /* menu */ 874 1216 #adminmenuback, 875 1217 #adminmenuwrap { 876 background-color: #ececec; 877 border-color: #ccc; 1218 background-color: #222; 878 1219 } 879 1220 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 1221 #adminmenu li.wp-menu-separator { 888 background: #dfdfdf;889 border-color: #cfcfcf;1222 background: transparent; 1223 border-color: transparent; 890 1224 } 891 1225 892 1226 #adminmenu div.separator { 893 border-color: #e1e1e1;1227 border-color: transparent; 894 1228 } 895 1229 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 1230 #adminmenu li.wp-menu-open { 903 1231 border-color: #dfdfdf; 904 1232 } 905 1233 1234 #adminmenu li.menu-top, 1235 #adminmenu li.opensub > a.menu-top, 1236 #adminmenu li > a.menu-top { 1237 -webkit-transition: all .1s ease-in-out; 1238 -moz-transition: all .1s ease-in-out; 1239 transition: all .1s ease-in-out; 1240 } 1241 906 1242 #adminmenu li.menu-top:hover, 907 1243 #adminmenu li.opensub > a.menu-top, 908 1244 #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 ); 1245 background-color: #111; 1246 color: #2ea2cc; 912 1247 } 913 1248 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; 1249 /* flyout menu arrow */ 1250 #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after { 1251 border-right-color: #333; 918 1252 } 919 1253 920 1254 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, … … 922 1256 .folded #adminmenu li.wp-has-current-submenu, 923 1257 .folded #adminmenu li.current.menu-top, 924 1258 #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 1259 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, 934 1260 #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); 1261 background: #0074a2; 941 1262 } 942 1263 943 1264 #adminmenu li.wp-not-current-submenu .wp-menu-arrow { 944 1265 border-top-color: #f9f9f9; 945 1266 border-bottom-color: #dfdfdf; 946 background: #e4e4e4;1267 background: transparent; 947 1268 } 948 1269 949 1270 #adminmenu li.wp-not-current-submenu .wp-menu-arrow div { 950 background: # e4e4e4;951 border-color: # ccc;1271 background: #111; 1272 border-color: #111; 952 1273 } 953 1274 954 .folded #adminmenu li.menu-top li:hover a {955 background-image: none;956 }957 958 1275 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, 959 1276 #adminmenu li.current a.menu-top, 960 1277 #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { 961 text-shadow: 0 -1px 0 #333;962 1278 color: #fff; 963 border-top-color: #808080;964 border-bottom-color: #6d6d6d;965 1279 } 966 1280 967 1281 .folded #adminmenu li.wp-has-current-submenu, 968 1282 .folded #adminmenu li.current.menu-top { 969 border-top-color: #808080; 970 border-bottom-color: #6d6d6d; 1283 border-color: #666; /* Match the background color of the current menu item for a flat appearance */ 971 1284 } 972 1285 973 #adminmenu .wp-submenu a:hover,974 #adminmenu .wp-submenu a:focus {975 background-color: #eaf2fa;976 color: #333;977 }978 979 1286 #adminmenu .wp-submenu li.current, 980 1287 #adminmenu .wp-submenu li.current a, 981 #adminmenu .wp-submenu li.current a:hover { 982 color: #333; 1288 #adminmenu .opensub .wp-submenu li.current a, 1289 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, 1290 #adminmenu .wp-submenu li.current a:hover, 1291 #adminmenu .wp-submenu li.current a:focus { 1292 color: #fff; 1293 background: transparent; 983 1294 } 984 1295 985 1296 #adminmenu .wp-submenu, 986 1297 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 987 1298 .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);1299 background-color: #333; 1300 1301 -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3); 1302 box-shadow: 0 3px 6px rgba(0,0,0,0.3); 992 1303 } 993 1304 1305 #adminmenu .wp-submenu a, 1306 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, 1307 .folded #adminmenu .wp-has-current-submenu .wp-submenu a { 1308 color: #bbb; 1309 } 1310 994 1311 #adminmenu .wp-submenu .wp-submenu-head { 995 background-color: #e4e4e4; 996 color: #333; 1312 color: #fff; 997 1313 } 998 1314 999 1315 /* collapse menu button */ 1000 1316 #collapse-menu { 1001 1317 color: #aaa; 1002 border-top-color: #f9f9f9; 1318 -webkit-transition: all .1s ease-in-out; 1319 -moz-transition: all .1s ease-in-out; 1320 transition: all .1s ease-in-out; 1003 1321 } 1004 1322 1005 1323 #collapse-menu:hover { 1006 color: # 999;1324 color: #2ea2cc; 1007 1325 } 1008 1326 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); 1327 #collapse-button div:after { 1328 color: #aaa; 1017 1329 } 1018 1330 1019 #collapse-menu:hover #collapse-button {1020 border-color: #aaa;1331 #collapse-menu:hover #collapse-button div:after { 1332 color: #2ea2cc; 1021 1333 } 1022 1334 1023 # collapse-button div{1024 background: transparent url(../images/arrows.png) no-repeat 0 -72px;1335 #adminmenu div.wp-menu-image:before { 1336 color: #999; 1025 1337 } 1026 1338 1027 . folded #collapse-button div{1028 background-position: 0 -108px;1339 .icon16:before { 1340 color: #999; 1029 1341 } 1030 1342 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 } 1343 #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before { 1344 color: #fff; 1060 1345 } 1061 1346 1062 /* menu and screen icons */ 1063 .icon16, 1064 .icon32, 1065 div.wp-menu-image { 1066 background-color: transparent; 1067 background-repeat: no-repeat; 1347 #adminmenu li:hover div.wp-menu-image:before { 1348 color: #2ea2cc; 1068 1349 } 1069 1350 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); 1351 #adminmenu .wp-has-current-submenu div.wp-menu-image:before, 1352 #adminmenu .current div.wp-menu-image:before, 1353 #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, 1354 #adminmenu a.current:hover div.wp-menu-image:before { 1355 color: #fff; 1097 1356 } 1098 1357 1099 .icon16.icon-dashboard, 1100 #adminmenu .menu-icon-dashboard div.wp-menu-image { 1101 background-position: -59px -33px; 1102 } 1358 /* Diff */ 1103 1359 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; 1360 table.diff .diff-deletedline del { 1361 background-color: #f99; 1108 1362 } 1109 1363 1110 . icon16.icon-post,1111 #adminmenu .menu-icon-post div.wp-menu-image { 1112 b ackground-position: -269px -33px;1364 .ui-tooltip, .arrow::after { 1365 background-color: #fff; 1366 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1113 1367 } 1114 1368 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; 1369 .revisions-meta, 1370 .revisions-diff, 1371 .revisions.pinned .revisions-controls { 1372 background-color: #fff; 1373 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1119 1374 } 1120 1375 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 1376 table.diff .diff-deletedline { 1363 1377 background-color: #ffe9e9; 1364 1378 } … … 1375 1389 background-color: #afa; 1376 1390 } 1377 1391 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 1392 .revisions-tooltip, 1392 1393 .revisions-tooltip-arrow span { 1393 1394 border-color: #d7d7d7; 1394 1395 background-color: #fff; 1395 1396 } 1396 1397 1398 .revisions-tickmarks { 1399 background-color: #fff; 1400 } 1401 1397 1402 .revisions-tickmarks > div { 1398 1403 border-color: #aaa; 1399 1404 } 1400 1405 1406 .revisions.pinned .revisions-controls { 1407 background: #fff; 1408 } 1409 1410 .revisions.pinned .revisions-meta { 1411 box-shadow: none; 1412 } 1413 1401 1414 /* jQuery UI Slider */ 1415 1402 1416 .wp-slider.ui-slider { 1403 1417 border-color: #d7d7d7; 1404 1418 } 1405 1419 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; 1420 .wp-slider .ui-slider-handle, 1421 .wp-slider .ui-slider-handle.ui-state-hover, 1422 .wp-slider .ui-slider-handle.focus { 1423 background: #2ea2cc; 1424 background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#2ea2cc), color-stop(100%,#1e8cbe)); 1425 background: -webkit-linear-gradient(-45deg, #2ea2cc 0%,#1e8cbe 100%); 1426 background: linear-gradient(135deg, #2ea2cc 0%,#1e8cbe 100%); 1427 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2ea2cc', endColorstr='#1e8cbe',GradientType=1 ); 1428 box-shadow: 0 1px 3px rgba(0,0,0,0.1); 1416 1429 } 1417 1430 1418 .wp-slider .ui-slider-handle: hover,1419 .wp-slider .ui-slider-handle:focus { 1420 border-color: #aaa;1431 .wp-slider .ui-slider-handle:before { 1432 color: #fff; 1433 text-shadow: 0 1px 1px rgba(0,116,162,1); 1421 1434 } 1422 1435 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; 1436 .wp-slider .ui-slider-handle.ui-state-active { 1437 background: #0074a2; 1438 background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#0074a2), color-stop(100%,#005684)); 1439 background: -webkit-linear-gradient(-45deg, #0074a2 0%,#005684 100%); 1440 background: linear-gradient(135deg, #0074a2 0%,#005684 100%); 1441 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0074a2', endColorstr='#005684',GradientType=1 ); 1427 1442 } 1428 1443 1429 1444 /* edit image */ … … 1434 1449 } 1435 1450 1436 1451 #sidemenu a.current { 1437 background-color: # fff;1438 border-color: #dfdfdf #dfdfdf # fff;1439 color: # d54e21;1452 background-color: #eee; 1453 border-color: #dfdfdf #dfdfdf #eee; 1454 color: #000; 1440 1455 } 1441 1456 1442 1457 #replyerror { … … 1452 1467 } 1453 1468 1454 1469 /* Install Plugins */ 1470 1471 #plugin-information { 1472 height: auto; 1473 } 1474 1455 1475 #plugin-information .fyi ul { 1456 1476 background-color: #eaf3fa; 1457 1477 } … … 1466 1486 } 1467 1487 1468 1488 #plugin-information pre { 1469 border : 1px solid#ccc;1489 border-color: #ccc; 1470 1490 } 1471 1491 1472 1492 /* inline editor */ … … 1492 1512 } 1493 1513 1494 1514 .attention { 1495 color: # d54e21;1515 color: #2ea2cc; 1496 1516 } 1497 1517 1498 .js .meta-box-sortables .postbox:hover .handlediv {1499 background: transparent url(../images/arrows.png) no-repeat 6px 7px;1518 .js .meta-box-sortables .postbox:hover .handlediv:before { 1519 color: #888; 1500 1520 } 1501 1521 1502 1522 .tablenav .tablenav-pages { … … 1504 1524 } 1505 1525 1506 1526 .tablenav .tablenav-pages a { 1507 border-color: #e3e3e3;1508 1527 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; 1528 background: rgba( 0, 0, 0, 0.05 ); 1512 1529 } 1513 1530 1514 1531 .tablenav .tablenav-pages a:hover, 1515 1532 .tablenav .tablenav-pages a:focus { 1516 color: #d54e21; 1533 color: #fff; 1534 background: #2ea2cc; 1517 1535 } 1518 1536 1519 1537 .tablenav .tablenav-pages a.disabled, 1520 1538 .tablenav .tablenav-pages a.disabled:hover, 1521 1539 .tablenav .tablenav-pages a.disabled:focus { 1522 1540 color: #aaa; 1541 background: #eee; 1542 background: rgba( 0, 0, 0, 0.05 ); 1523 1543 } 1524 1544 1525 1545 .tablenav .tablenav-pages .current { … … 1547 1567 } 1548 1568 1549 1569 .misc-pub-section { 1550 border-top-color: #fff;1551 border-bottom-color: #dfdfdf;1552 1570 } 1553 1571 1554 1572 #minor-publishing { … … 1556 1574 } 1557 1575 1558 1576 #post-body .misc-pub-section { 1559 border-left-color: #eee;1560 1577 } 1561 1578 1562 1579 .post-com-count span { 1563 1580 background-color: #bbb; 1564 1581 } 1565 1582 1566 .form-table .color-palette td {1567 border-color: #fff;1568 }1569 1570 1583 .sortable-placeholder { 1571 1584 border-color: #bbb; 1572 1585 background-color: #f5f5f5; … … 1578 1591 color: #333; 1579 1592 } 1580 1593 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; 1594 .view-switch>a:before { 1595 color: #bbb; 1586 1596 } 1587 1597 1588 .view-switch #view-switch-list{1589 background-position: 0 0;1598 .view-switch a:hover:before { 1599 color: #727272; 1590 1600 } 1591 1601 1592 .view-switch .current #view-switch-list{1593 background-position: -40px 0;1602 .view-switch a.current:before { 1603 color: #0074a2; 1594 1604 } 1595 1605 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 1606 div.widgets-sortables, 1615 1607 #widgets-left .inactive, 1616 1608 #available-widgets .widget-holder { 1617 background-color: #f cfcfc;1618 border-color: # dfdfdf;1609 background-color: #fff; 1610 border-color: #fff; 1619 1611 } 1620 1612 1613 #widgets-left #available-widgets { 1614 background: #fff; 1615 } 1616 1621 1617 #available-widgets .widget-description { 1622 1618 color: #555; 1623 1619 } 1624 1620 1625 1621 .sidebar-name { 1626 1622 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; 1623 border-bottom-color: #e1e1e1; 1631 1624 } 1632 1625 1633 1626 .js .sidebar-name:hover, 1634 1627 .js #removing-widget { 1635 color: # d54e21;1628 color: #2ea2cc; 1636 1629 } 1637 1630 1638 1631 #removing-widget span { 1639 1632 color: black; 1640 1633 } 1641 1634 1642 .js .sidebar-name-arrow { 1643 background: transparent url(../images/arrows.png) no-repeat 5px 9px; 1635 .in-widget-title, 1636 #widgets-right .widget-top a.widget-control-edit, 1637 #wp_inactive_widgets .in-widget-title { 1638 color: #777; 1644 1639 } 1645 1640 1646 .js .sidebar-name:hover .sidebar-name-arrow{1647 background: transparent url(../images/arrows-dark.png) no-repeat 5px 9px;1641 #widgets-right .widget-top a.widget-control-edit:hover { 1642 color: #fff; 1648 1643 } 1649 1644 1650 .in-widget-title { 1651 color: #606060; 1652 } 1653 1654 .deleting .widget-title * { 1645 .deleting .widget-title, 1646 .deleting .widget-top a.widget-action:after { 1655 1647 color: #aaa; 1656 1648 } 1657 1649 … … 1672 1664 opacity: 0.5; 1673 1665 } 1674 1666 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 1667 /* added from nav-menu.css */ 1689 #menu-management .menu-edit{1690 b order-color: #dfdfdf;1668 #menu-management { 1669 background: #f5f5f5 1691 1670 } 1692 1671 1693 # post-body {1672 #menu-management #post-body { 1694 1673 background: #fff; 1695 1674 border-top-color: #fff; 1696 1675 border-bottom-color: #dfdfdf; … … 1700 1679 border-bottom-color: #dfdfdf; 1701 1680 } 1702 1681 1703 #nav-menu-footer {1704 border-top-color: #fff;1705 }1706 1707 1682 #menu-management .nav-tabs-arrow a { 1708 1683 color: #c1c1c1; 1709 1684 } 1710 1685 1711 1686 #menu-management .nav-tabs-arrow a:hover { 1712 color: # d54e21;1687 color: #2ea2cc; 1713 1688 } 1714 1689 1715 1690 #menu-management .nav-tabs-arrow a:active { … … 1745 1720 1746 1721 .menu li.deleting .menu-item-handle { 1747 1722 background-color: #f66; 1748 text-shadow: #ccc;1749 1723 } 1750 1724 1751 1725 .item-type { /* Menu item controls */ 1752 color: # 999;1726 color: #777; 1753 1727 } 1754 1728 1755 1729 .item-controls .menu-item-delete:hover { 1756 1730 color: #f00; 1757 1731 } 1758 1732 1759 .nav-menus-php .item-edit { 1760 background: transparent url(../images/arrows.png) no-repeat 8px 10px; 1761 border-bottom-color: #eee; 1733 .widget-top a.widget-action:hover { 1734 color: #0074a2; 1762 1735 } 1763 1736 1764 . nav-menus-php .item-edit:hover {1765 background: transparent url(../images/arrows-dark.png) no-repeat 8px 10px;1737 .widget-top a.widget-action:after { 1738 color: #333; 1766 1739 } 1767 1740 1768 .menu-item-settings { /* Menu editing */ 1769 border-color: #dfdfdf;1741 #wp_inactive_widgets .widget .widget-top a.widget-action { 1742 color: #ddd; 1770 1743 } 1771 1744 1745 .nav-menus-php .item-edit:after, 1746 #wp_inactive_widgets .widget .widget-top a.widget-action:after { 1747 color: #888; 1748 } 1749 1750 .control-section .accordion-section-title::after, 1751 .accordion-section-title::after { 1752 color: #888; 1753 } 1754 1755 .nav-menus-php .control-section .accordion-section-title { 1756 background: #fff; 1757 } 1758 1759 .nav-menus-php .control-section:hover .accordion-section-title, 1760 .nav-menus-php .control-section .accordion-section-title:hover, 1761 .nav-menus-php .control-section.open .accordion-section-title, 1762 .nav-menus-php .control-section .accordion-section-title:focus{ 1763 color: #555; 1764 background: #f5f5f5; 1765 } 1766 1767 /* Menu editing */ 1768 1772 1769 .link-to-original { 1773 1770 color: #777; 1774 1771 border-color: #dfdfdf; … … 1790 1787 } 1791 1788 1792 1789 .submitbox .submitcancel { 1793 color: # 21759b;1794 border-bottom-color: # 21759b;1790 color: #0074a2; 1791 border-bottom-color: #0074a2; 1795 1792 } 1796 1793 1797 1794 .submitbox .submitcancel:hover { 1798 background: # 21759b;1795 background: #0074a2; 1799 1796 color: #fff; 1800 1797 } 1801 1798 1802 1799 .manage-menus { 1803 border: 1px solid #eeeeee;1804 1800 background: #fbfbfb; 1805 1801 } 1806 1802 1803 .menu-settings { 1804 border-top-color: #eeeeee; 1805 } 1806 1807 1807 .theme-location-set { 1808 1808 color: #999999; 1809 1809 } … … 1815 1815 .is-submenu { 1816 1816 color: #999999; 1817 1817 } 1818 /* end added from nav-menu.css */1819 1818 1820 1819 .nav-tab { 1821 border-color: #dfdfdf #dfdfdf #fff; 1820 color: #555; 1821 border-color: #ccc; 1822 background: #e4e4e4; 1822 1823 } 1823 1824 1824 .nav-tab:hover ,1825 .nav-tab-active { 1826 border-color: #ccc #ccc #fff;1825 .nav-tab:hover { 1826 background-color: #fff; 1827 color: #464646; 1827 1828 } 1828 1829 1829 h2.nav-tab-wrapper, h3.nav-tab-wrapper{1830 border-bottom-color: #ccc;1830 .nav-tab-active { 1831 color: #464646; 1831 1832 } 1832 1833 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; 1834 .nav-tab-active, 1835 .nav-tab-active:hover { 1836 color: #000; 1837 background: none; 1838 border-color: #ccc; 1839 border-bottom-color: #eee; 1838 1840 } 1839 1841 1840 #menu-management .nav-tab-active { 1841 background: #f9f9f9; 1842 border-bottom-color: #f9f9f9; 1842 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 1843 border-bottom-color: #ccc; 1843 1844 } 1844 1845 1845 1846 #upload-form label { … … 1847 1848 } 1848 1849 1849 1850 /* Begin About Pages */ 1850 1851 1851 .about-wrap h1 { 1852 1852 color: #333; 1853 text-shadow: 1px 1px 1px #fff;1854 1853 } 1855 1854 1856 1855 .about-text { … … 1858 1857 } 1859 1858 1860 1859 .wp-badge { 1861 color: #fff; 1862 text-shadow: 0 -1px 0 rgba(22, 57, 81, 0.3); 1860 background-color: #0074a2; 1861 color: #78c8e6; 1862 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2); 1863 box-shadow: 0 1px 3px rgba(0,0,0,0.2); 1863 1864 } 1864 1865 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 1866 .about-wrap h2 .nav-tab-active { 1879 text-shadow: 1px 1px 1px #fff;1880 color: #464646;1867 border-color: #ccc; 1868 border-bottom-color: #eee; 1881 1869 } 1882 1870 1883 1871 .about-wrap h3 { 1884 1872 color: #333; 1885 text-shadow: 1px 1px 1px #fff;1886 1873 } 1887 1874 1888 1875 .about-wrap .feature-section h4 { 1889 1876 color: #464646; 1890 1877 } 1891 1878 1892 .about-wrap h4.wp-people-group { 1893 text-shadow: 1px 1px 1px #fff; 1879 .about-wrap .feature-section img { 1880 background: #fff; 1881 border-color: #ccc; 1894 1882 } 1895 1883 1884 .about-wrap .feature-section .col-2:before, 1885 .about-wrap .feature-section .col-2:after, 1886 .about-wrap .feature-section.two-col p:before { 1887 color: #1e8cbe; 1888 } 1889 1896 1890 .about-wrap .point-releases { 1897 1891 border-bottom: 1px solid #dfdfdf; 1898 1892 } 1899 1893 1900 1894 .about-wrap .point-releases h3 { 1901 border-top : 1px solid#dfdfdf;1895 border-top-color: #dfdfdf; 1902 1896 } 1903 1897 1904 .about-wrap .point-releases h3:first-child {1905 border: 0;1906 }1907 1908 1898 .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 ); 1899 border-color: #ccc; 1911 1900 } 1912 1901 1913 1902 .about-wrap li.wp-person .title { 1914 1903 color: #464646; 1915 text-shadow: 1px 1px 1px #fff;1916 1904 } 1917 1905 1918 1906 .freedoms-php .about-wrap ol li { … … 1925 1913 1926 1914 /* End About Pages */ 1927 1915 1916 /* Press This and Image editing icons */ 1928 1917 1929 /*------------------------------------------------------------------------------ 1930 2.0 - Right to Left Styles 1931 ------------------------------------------------------------------------------*/ 1918 .pressthis a span:before { 1919 color:#777; 1920 } 1932 1921 1933 .rtl .bar { 1934 border-right-color: transparent; 1935 border-left-color: #99d; 1922 .imgedit-menu div { 1923 color:#777; 1936 1924 } 1937 1925 1938 . rtl #screen-meta-links a.show-settings{1939 background-position: left 3px;1926 .imgedit-menu div:hover { 1927 color:#333; 1940 1928 } 1941 1929 1942 .rtl #screen-meta-links a.show-settings.screen-meta-active { 1943 background-position: left -33px; 1930 /* End Press This and Image editing icons */ 1931 1932 /* Media Manager */ 1933 1934 .media-modal-content { 1935 background: #fcfcfc; 1936 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 1944 1937 } 1945 1938 1946 /* Menu */ 1947 .rtl #adminmenushadow, 1948 .rtl #adminmenuback { 1949 background-image: url(../images/menu-shadow-rtl.png); 1950 background-position: top left; 1939 .media-menu { 1940 background: #f3f3f3; 1941 border-right-color: #ccc; 1951 1942 } 1952 1943 1953 .rtl #adminmenu .wp-submenu .wp-submenu-head { 1954 border-right-color: transparent; 1955 border-left-color: #dfdfdf; 1944 .media-menu > a { 1945 color: #0074a2; 1956 1946 } 1957 1947 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 ); 1948 .media-menu .active, 1949 .media-menu .active:hover { 1950 color: #222; 1962 1951 } 1963 1952 1964 .rtl #adminmenu .wp-has-current-submenu .wp-submenu { 1965 -webkit-box-shadow: none; 1966 box-shadow: none; 1953 .media-frame-content { 1954 background: #fff; 1955 border-top-color: #ddd; 1956 border-bottom-color: #ddd; 1967 1957 } 1968 1958 1969 /* Collapse Menu Button */ 1970 .rtl #collapse-button div { 1971 b ackground-position: 0 -108px;1959 .media-menu .separator { 1960 border-top-color: #ddd; 1961 border-bottom: none; 1972 1962 } 1973 1963 1974 .rtl.folded #collapse-button div { 1975 background-position: 0 -72px; 1964 .media-sidebar { 1965 background: #f3f3f3; 1966 border-color: #ddd; 1976 1967 } 1977 1968 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 } 1969 .media-router .active, 1970 .media-router > a.active:last-child { 1971 background: #fff; 1972 border: 1px solid #ddd; 1973 border-bottom: none; 1974 } 1985 1975 1986 .rtl.auto-fold #collapse-button div { 1987 background-position: 0 -72px; 1988 } 1976 .details.attachment { 1977 box-shadow: 0 0 0 1px #fff, 0 0 0 5px #2ea2cc; 1989 1978 } 1990 1979 1991 /* Edit Image */ 1992 .js.rtl .meta-box-sortables .postbox:hover .handlediv { 1993 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 1980 .attachment .check { 1981 background: #eee; 1994 1982 } 1995 1983 1996 .rtl #post-body .misc-pub-section { 1997 border-right-color: transparent; 1998 border-left-color: #eee; 1984 .attachment.details .check { 1985 box-shadow: 0 0 0 1px #2ea2cc; 1986 background: #0074a2; 1987 background-image: none; 1999 1988 } 2000 1989 2001 .js.rtl .sidebar-name-arrow { 2002 background: transparent url(../images/arrows.png) no-repeat 5px 9px; 1990 /* TinyMCE modal */ 1991 1992 .clearlooks2 { 1993 box-shadow: 0 5px 15px rgba(0,0,0,0.7); 2003 1994 } 2004 1995 2005 .js.rtl .sidebar-name:hover .sidebar-name-arrow { 2006 background: transparent url(../images/arrows-dark.png) no-repeat 5px 9px; 1996 .clearlooks2 .mceMiddle span, 1997 .clearlooks2 .mceMiddle .mceLeft, 1998 .clearlooks2 .mceMiddle .mceRight, 1999 .clearlooks2 .mceBottom, 2000 .clearlooks2 .mceBottom .mceLeft, 2001 .clearlooks2 .mceBottom .mceCenter, 2002 .clearlooks2 .mceBottom .mceRight { 2003 background-color: #fcfcfc; 2007 2004 } 2008 2005 2009 /** 2010 * HiDPI Displays 2011 */ 2006 .clearlooks2 .mceFocus .mceTop .mceLeft, 2007 .clearlooks2 .mceFocus .mceTop .mceRight { 2008 background-color: #f3f3f3; 2009 } 2010 2011 .clearlooks2 .mceTop span, 2012 .clearlooks2 .mceFocus .mceTop span { 2013 color: #222; 2014 } 2015 2016 .clearlooks2 .mceClose:before { 2017 color: #666; 2018 } 2019 .clearlooks2 .mceClose:hover:before { 2020 color: #2ea2cc; 2021 } 2022 2023 2024 /* Lightbox */ 2025 2026 .sticky-menu #TB_window { 2027 background: #f1f1f1; 2028 } 2029 2030 /* tinymce */ 2031 a .mceIcon, .mceAction { 2032 color:#777; 2033 } 2034 2035 a .mceIcon:hover { 2036 color:#333; 2037 } 2038 2039 /* Log in page */ 2040 2041 .login form .input, 2042 .login input[type="text"], 2043 .login form input[type="checkbox"] { 2044 border-color: #ddd !important; /* Override !important in checkbox style */ 2045 -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.08); 2046 box-shadow: inset 1px 1px 2px rgba(0,0,0,0.08); 2047 } 2048 2049 .login form input[type="checkbox"] { 2050 background-color: #fbfbfb; 2051 } 2052 2053 .login form { 2054 background: #fff; 2055 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2056 box-shadow: 0 1px 3px rgba(0,0,0,0.13); 2057 } 2058 2059 body.login { 2060 background: #eee; 2061 } 2062 2063 .login #nav a, 2064 .login #backtoblog a { 2065 text-decoration: none; 2066 color: #999; 2067 } 2068 2069 .login #nav a:hover, 2070 .login #backtoblog a:hover { 2071 color: #2ea2cc; 2072 } 2073 2074 .login h1 a:hover { 2075 color: #2ea2cc; 2076 } 2077 2012 2078 @media print, 2013 2079 (-o-min-device-pixel-ratio: 5/4), 2014 2080 (-webkit-min-device-pixel-ratio: 1.25), 2015 2081 (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 2082 .curtime #timestamp, 2083 #screen-meta-links a.show-settings, 2084 .widget-top a.widget-action, 2085 .widget-top a.widget-action:hover, 2086 .sidebar-name-arrow, 2087 .sidebar-name:hover .sidebar-name-arrow, 2088 .meta-box-sortables .postbox:hover .handlediv, 2022 2089 .tagchecklist span a, 2023 2090 #bulk-titles div a, 2024 2091 .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; 2092 #bulk-titles div a:hover, 2093 .wp_themeSkin .mceToolbar span.mce_undo, 2094 .wp_themeSkin .mceToolbar span.mce_redo, 2095 .wp_themeSkin .mceToolbar span.mce_bullist, 2096 .wp_themeSkin .mceToolbar span.mce_numlist, 2097 .wp_themeSkin .mceToolbar span.mce_blockquote, 2098 .wp_themeSkin .mceToolbar span.mce_charmap, 2099 .wp_themeSkin .mceToolbar span.mce_bold, 2100 .wp_themeSkin .mceToolbar span.mce_italic, 2101 .wp_themeSkin .mceToolbar span.mce_underline, 2102 .wp_themeSkin .mceToolbar span.mce_justifyleft, 2103 .wp_themeSkin .mceToolbar span.mce_justifyright, 2104 .wp_themeSkin .mceToolbar span.mce_justifycenter, 2105 .wp_themeSkin .mceToolbar span.mce_justifyfull, 2106 .wp_themeSkin .mceToolbar span.mce_indent, 2107 .wp_themeSkin .mceToolbar span.mce_outdent, 2108 .wp_themeSkin .mceToolbar span.mce_link, 2109 .wp_themeSkin .mceToolbar span.mce_unlink, 2110 .wp_themeSkin .mceToolbar span.mce_help, 2111 .wp_themeSkin .mceToolbar span.mce_removeformat, 2112 .wp_themeSkin .mceToolbar span.mce_fullscreen, 2113 .wp_themeSkin .mceToolbar span.mce_wp_fullscreen, 2114 .wp_themeSkin .mceToolbar span.mce_media, 2115 .wp_themeSkin .mceToolbar span.mce_pastetext, 2116 .wp_themeSkin .mceToolbar span.mce_pasteword, 2117 .wp_themeSkin .mceToolbar span.mce_wp_help, 2118 .wp_themeSkin .mceToolbar span.mce_wp_adv, 2119 .wp_themeSkin .mceToolbar span.mce_wp_more, 2120 .wp_themeSkin .mceToolbar span.mce_strikethrough, 2121 .wp_themeSkin .mceToolbar span.mce_spellchecker, 2122 .wp_themeSkin .mceToolbar span.mce_forecolor, 2123 .wp_themeSkin .mceToolbar .mce_forecolorpicker, 2124 .wp_themeSkin .mceToolbar .mceSplitButton .mce_spellchecker span.mce_spellchecker, 2125 .wp_themeSkin .mceToolbar .mceSplitButton .mce_forecolor span.mce_forecolor, 2126 .wp_themeSkin .mceToolbar .mceSplitButton span.mce_numlist, 2127 .wp_themeSkin .mceToolbar .mceSplitButton span.mce_bullist { 2128 background: none !important; 2028 2129 } 2130 } 2029 2131 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 } 2132 /*------------------------------------------------------------------------------ 2133 2.0 - Right to Left Styles 2134 ------------------------------------------------------------------------------*/ 2045 2135 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 } 2136 .rtl .bar { 2137 border-right-color: transparent; 2138 border-left-color: #99d; 2139 } 2056 2140 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 } 2141 .rtl #adminmenu .wp-submenu .wp-submenu-head { 2142 border-right-color: transparent; 2143 border-left-color: #dfdfdf; 2144 } 2062 2145 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 } 2146 .rtl #adminmenu .wp-submenu, 2147 .rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu { 2148 -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 2149 box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 ); 2150 } 2099 2151 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 } 2152 .rtl #adminmenu .wp-has-current-submenu .wp-submenu { 2153 -webkit-box-shadow: none; 2154 box-shadow: none; 2155 } 2129 2156 2130 #header-logo { 2131 background-image: url('../images/wp-logo-2x.png?ver=20120916'); 2132 background-size: 16px auto; 2133 } 2157 .rtl ul#adminmenu a.wp-has-current-submenu:after, 2158 .rtl ul#adminmenu > li.current > a.current:after { 2159 border-right-color: transparent; 2160 border-left-color: #eee; 2161 } 2134 2162 2135 /* 16px post formats */ 2136 .post-format-icon { 2137 background-image: url(../images/post-formats32.png); 2138 background-size: 16px 304px; 2139 } 2163 /* Flyout Menu Arrow */ 2164 .rtl #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, 2165 .rtl #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after { 2166 border-right-color: transparent; 2167 border-left-color: #333; 2168 } 2140 2169 2170 .rtl #post-body .misc-pub-section { 2171 border-right-color: transparent; 2172 border-left-color: #eee; 2141 2173 } 2174 2175 .rtl div.updated, 2176 .rtl .login .message { 2177 border-left: none; 2178 border-right: 4px solid #7ad03a; 2179 } 2180 2181 .rtl .plugins .active th.check-column, 2182 .rtl tr.active + tr.plugin-update-tr .plugin-update { 2183 border-left: none; 2184 border-right: 4px solid #2ea2cc; 2185 } 2186 2187 .rtl .plugins .update th.check-column, 2188 .rtl tr.plugin-update-tr .plugin-update { 2189 border-left: none; 2190 border-right: 4px solid #d54e21; 2191 } 2192 2193 .rtl #the-comment-list .unapproved th.check-column, 2194 .rtl #dashboard_recent_comments #the-comment-list .unapproved { 2195 border-left: none; 2196 border-right: 4px solid #d54e21; 2197 } 2198 2199 .rtl #dashboard_recent_comments #the-comment-list .unapproved .avatar { 2200 margin-left: 10px; 2201 margin-right: -4px; 2202 } -
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 text-decoration: none !important; 294 color: #333; 215 295 } 216 296 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 297 .customize-control .dropdown-status { 298 color: #333; 299 background: #eeeeee; 227 300 display: none; 228 301 max-width: 112px; 229 color: #777;230 302 } 231 303 232 /* 233 * Color Picker 234 */ 304 /* Color Picker */ 235 305 .customize-control-color .color-picker-hex { 236 306 display: none; 237 307 } … … 246 316 } 247 317 248 318 .customize-control-color .dropdown .dropdown-content { 249 background-color: # fff;250 border: 1px solid rgba( 0, 0, 0, 0.15);319 background-color: #555555; 320 border: 1px solid rgba(0, 0, 0, 0.15); 251 321 } 252 322 253 323 .customize-control-color .dropdown:hover .dropdown-content { 254 border-color: rgba( 0, 0, 0, 0.25);324 border-color: rgba(0, 0, 0, 0.25); 255 325 } 256 326 327 .customize-control-color .iris-picker { 328 border-radius: 0 !important; 329 } 330 257 331 .accordion-section input[type="text"].color-picker-hex { 258 332 width: 65px; 259 333 font-family: monospace; … … 265 339 .accordion-section input[type="text"].color-picker-hex:focus::-webkit-input-placeholder { 266 340 color: transparent; 267 341 } 342 268 343 .accordion-section input[type="text"].color-picker-hex:-moz-placeholder { 269 344 color: #999; 270 345 } … … 308 383 } 309 384 310 385 .accordion-section .customize-control-image .library ul { 311 border-bottom: 1px solid #d fdfdf;386 border-bottom: 1px solid #ddd; 312 387 float: left; 313 388 width: 100%; 314 389 margin: 10px 0 0; 315 390 } 316 391 317 392 .accordion-section .customize-control-image .library li { 318 color: # 999;393 color: #ccc; 319 394 float: left; 320 padding: 3px 5px;395 padding: 3px 15px; 321 396 margin: 0; 322 border-style: solid; 323 border-color: transparent; 324 border-width: 1px 1px 0 1px; 397 border: 1px solid transparent; 325 398 } 326 399 327 400 .accordion-section .customize-control-image .library li.library-selected { 328 401 margin-bottom: -1px; 329 402 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 ; 403 color: #666666; 404 border-color: #ddd; 405 border-bottom-color: #fff; 336 406 } 337 407 338 .accordion-section .customize-control-image .library -content{339 display: none;408 .accordion-section .customize-control-image .library .thumbnail { 409 display: block; 340 410 width: 100%; 341 float: left;342 padding: 10px 0;343 411 } 344 412 345 .accordion-section .customize-control-image .library -content.library-selected{413 .accordion-section .customize-control-image .library .thumbnail img { 346 414 display: block; 415 max-width: 90%; 416 max-height: 80px; 417 margin: 5px auto; 418 padding: 2px; 419 background: #666666; 347 420 } 348 421 349 .accordion-section .customize-control-image .library .thumbnail { 350 display: block; 351 width: 100%; 422 .accordion-section .customize-control-image .library .thumbnail:hover img { 423 background-color: #2ea2cc; 352 424 } 353 425 354 .accordion-section .customize-control-image .library .thumbnail:hover img { 355 border-color: #21759b; 426 .accordion-section .customize-control-image .library-content { 427 display: none; 428 width: 100%; 429 float: left; 430 padding: 10px 0; 356 431 } 357 432 358 .accordion-section .customize-control-image .library .thumbnail img{433 .accordion-section .customize-control-image .library-content.library-selected { 359 434 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 435 } 368 436 369 437 .accordion-section .customize-control-upload .upload-fallback, … … 378 446 border: 3px dashed #dfdfdf; 379 447 margin: 5px auto; 380 448 text-align: center; 381 color: #777;382 449 position: relative; 383 450 cursor: default; 384 451 } … … 408 475 * instead it expands the iframe size to match the size of the content 409 476 */ 410 477 .ios .wp-full-overlay { 411 position: relative;478 position: relative; 412 479 } 413 480 414 481 .ios #customize-preview { … … 416 483 } 417 484 418 485 .ios #customize-controls .wp-full-overlay-sidebar-content { 419 -webkit-overflow-scrolling: touch;486 -webkit-overflow-scrolling: touch; 420 487 } 421 488 422 /** 423 * Handle cheaters. 424 */ 489 /** Handle cheaters. */ 425 490 body.cheatin { 426 491 min-width: 0; 427 492 background: #f9f9f9; … … 433 498 margin: 0 auto; 434 499 padding: 2em; 435 500 font-size: 14px; 436 background: # fff;501 background: #555555; 437 502 border: 1px solid #dfdfdf; 438 503 -webkit-border-radius: 3px; 439 border-radius: 3px; 440 } 504 border-radius: 3px; 505 } 506 No newline at end of file -
src/wp-admin/css/dashicons/dashicons.eot
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
-
src/wp-admin/css/dashicons/dashicons.svg
Property changes on: src/wp-admin/css/dashicons/dashicons.eot ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property
1 <?xml version="1.0" standalone="no"?> 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > 3 <svg xmlns="http://www.w3.org/2000/svg"> 4 <metadata></metadata> 5 <defs> 6 <font id="dashiconsregular" horiz-adv-x="2000" > 7 <font-face units-per-em="2000" ascent="2000" descent="0" /> 8 <missing-glyph horiz-adv-x="500" /> 9 <glyph unicode="" horiz-adv-x="500" d="M0 0z" /> 10 <glyph unicode="" d="M1448 894l-707 707l150 150q25 28 85 34.5t134 -11t132 -55.5q45 -30 126.5 -97t164.5 -113q43 -24 73 -38t76.5 -30.5t87.5 -23t95.5 -6t112.5 12.5zM1377 823l-707 707l-177 -177q-29 -29 -29 -70.5t29 -70.5l106 -106q29 -29 29 -71t-29 -71q-27 -27 -61.5 -54 t-86 -63t-73.5 -52q-66 -49 -101 -84q-52 -52 -92 -108.5t-64 -113t-20.5 -108.5t39.5 -88t88 -39.5t108.5 20.5t113 63.5t108.5 91.5q34 34 85 102q13 17 51 72t64 88.5t54 60.5q29 29 70.5 29t70.5 -29l106 -106q29 -29 70.5 -29t70.5 29z" /> 11 <glyph unicode="" d="M500 1800h900q82 0 141 -59t59 -141v-700q0 -82 -59 -141t-141 -59h-200l-500 -500v500h-200q-82 0 -141 59t-59 141v700q0 82 59 141t141 59z" /> 12 <glyph unicode="" d="M1600 1150l153 -153l-106 -106l-647 647l-647 -647l-106 106l753 753l400 -400v200h200v-400zM1000 1396l600 -599v-597h-1200v597zM1200 300v500h-400v-500h400z" /> 13 <glyph unicode="" d="M1774 1724q126 -127 126 -305t-126 -305l-153 -152q-82 -82 -195 -110.5t-219 1.5l262 261l76 77l76 76q63 63 63 152t-63 152q-63 64 -152 64t-152 -64l-77 -76l-338 -338q-29 106 -0.5 219t110.5 195l152 153q127 126 305.5 126t304.5 -126zM859 657l534 534 q31 31 31 76t-31 76q-34 32 -78 31t-75 -31l-533 -534q-31 -31 -31 -76t31 -76q34 -32 78 -31t74 31zM783 428l414 415q30 -106 1.5 -219t-110.5 -195l-152 -153q-127 -126 -305 -126t-305 126q-126 126 -126 305t126 305l153 152q82 82 195 110.5t219 -0.5l-414 -415 q-64 -63 -64 -152t64 -153q63 -63 152 -63t152 63z" /> 14 <glyph unicode="" d="M1300 900v700q0 41 -29.5 70.5t-70.5 29.5h-167l-133 200h-400l-133 -200h-167q-41 0 -70.5 -29.5t-29.5 -70.5v-700q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5zM700 1550q104 0 177 -73t73 -177t-73 -177t-177 -73t-177 73t-73 177t73 177t177 73z M1400 1400h500v-1050q0 -104 -73 -177t-177 -73t-177 73t-73 177t73 177t177 73q23 0 50 -5v505h-300v300zM1000 595v105h200v-350q0 -104 -73 -177t-177 -73t-177 73t-73 177t73 177t177 73q23 0 50 -5z" /> 15 <glyph unicode="" d="M600 500v1300h1000v-1300h-1000zM500 400h800v-200h-1000v1300h200v-1100z" /> 16 <glyph unicode="" d="M1311 1564l-324 -324l-187 187l324 324q26 26 72 16.5t84 -48.5q39 -38 48 -83.5t-17 -71.5zM511 1387l91 112l901 -901l-119 -84q-50 -50 -167.5 -83t-214.5 -33h-388l-124 -124q-44 -44 -106 -44t-106 44q-44 43 -44 105.5t44 106.5l124 124v388q0 96 30.5 218 t78.5 171zM1237 990l324 324q25 26 71 17t84 -48q39 -38 48 -83.5t-17 -71.5l-324 -325z" /> 17 <glyph unicode="" d="M1668 1023q-99 -99 -236 -125t-259 26l-541 -652q-74 -74 -179 -74t-179 74t-74 179t74 178l652 542q-52 122 -26 259t125 236q94 94 224 122t248 -16l-289 -289l282 -282l286 287q41 -117 13 -244.5t-121 -220.5zM381 379q30 -29 72 -29t71 29q30 30 30 72t-30 71 q-29 30 -71 30t-72 -30q-29 -29 -29 -71t29 -72z" /> 18 <glyph unicode="" d="M1800 400v1200q0 41 -29.5 70.5t-70.5 29.5h-1300q-41 0 -70.5 -29.5t-29.5 -70.5v-1200q0 -41 29.5 -70.5t70.5 -29.5h1300q41 0 70.5 29.5t29.5 70.5zM800 900h100q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5 t-35.5 14.5t-14.5 35.5v150h-100q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h100v550q0 21 14.5 35.5t35.5 14.5t35.5 -14.5t14.5 -35.5v-550zM1300 1100h-100q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h100v150q0 21 14.5 35.5t35.5 14.5t35.5 -14.5 t14.5 -35.5v-150h100q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-550q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v550z" /> 19 <glyph unicode="" d="M1044 1698l182 182l636 -635l-183 -182q-78 52 -175 42.5t-166 -78.5l-75 -75q-68 -69 -77.5 -165.5t42.5 -175.5l-183 -182l-241 241l-280 -279q-54 -54 -203.5 -155t-176.5 -74t74 177.5t154 203.5l279 279l-241 242l183 182q78 -52 175 -42.5t165 78.5l75 75 q69 68 78.5 165t-42.5 176z" /> 20 <glyph unicode="" d="M1000 1075q-46 0 -86.5 19t-67.5 49.5t-49 67t-34.5 73t-21 67t-11.5 49.5l-3 19q-6 55 -3 108.5t24.5 103t53 87t82.5 60t113 22.5q103 0 171 -59t91 -144t9 -178q-1 -7 -3 -19.5t-10.5 -48t-20.5 -68t-33.5 -72.5t-48 -68.5t-66.5 -48t-86 -19.5zM1000 833l272 182 q116 0 221.5 -67t168 -172t62.5 -214v-249q-15 -5 -41.5 -12.5t-109 -27t-164.5 -34.5t-195 -27t-214 -12q-102 0 -214.5 11.5t-199.5 28t-159.5 33.5t-111.5 29l-39 11v249q0 112 58 215t162.5 168t226.5 65z" /> 21 <glyph unicode="" d="M1800 800h-218q-26 -107 -81 -193l154 -154l-210 -210l-154 154q-88 -55 -191 -79v-218h-300v218q-103 24 -191 79l-154 -154l-212 212l154 154q-55 88 -79 191h-218v297h217q23 101 80 194l-154 154l210 210l154 -154q85 54 193 81v218h300v-218q103 -24 191 -79 l154 154l212 -212l-154 -154q57 -93 80 -194h217v-297zM950 650q124 0 212 88t88 212t-88 212t-212 88t-212 -88t-88 -212t88 -212t212 -88z" /> 22 <glyph unicode="" d="M1695 1742q96 -96 130.5 -225t0 -257.5t-130.5 -224.5q-112 -112 -267.5 -138.5t-291.5 37.5l-187 -331l-299 -31l-150 -372h-300l-100 200l795 769q-71 139 -46.5 298.5t139.5 274.5q96 96 225 130.5t257.5 0t224.5 -130.5zM1444 1363q55 0 94 39t39 95q0 55 -39 94 t-94 39t-94 -39t-39 -94t39 -94.5t94 -39.5z" /> 23 <glyph unicode="" d="M1000 1700q154 0 290.5 -63t234.5 -175l-171 -195q-62 82 -155 130t-199 48q-157 0 -277.5 -98t-154.5 -247h232l-350 -400l-350 400h208q24 168 121 305t247.5 216t323.5 79zM1000 296q-155 0 -291 63t-234 175l171 195q62 -82 155 -130t199 -48q157 0 277.5 98 t154.5 247h-232l350 400l350 -400h-208q-18 -126 -79.5 -236.5t-152.5 -190.5t-210.5 -126.5t-249.5 -46.5z" /> 24 <glyph unicode="" d="M1800 600v1000q0 41 -29.5 70.5t-70.5 29.5h-1400q-41 0 -70.5 -29.5t-29.5 -70.5v-1000q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1000 1400q169 0 323 -79t277 -221q-123 -142 -277 -221t-323 -79t-323 79t-277 221q123 142 277 221t323 79z M1200 1100q0 82 -59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59t141 59t59 141zM1400 300h300v-100h-1400v100h300v100h800v-100z" /> 25 <glyph unicode="" d="M1900 400v1300q0 41 -29.5 70.5t-70.5 29.5h-1500q-41 0 -70.5 -29.5t-29.5 -70.5v-1300q0 -41 29.5 -70.5t70.5 -29.5h1500q41 0 70.5 29.5t29.5 70.5zM400 1600h1300v-400h-1300v400zM500 1500v-200h300v200h-300zM900 1500v-200h300v200h-300zM1300 1500v-200h300v200 h-300zM450 1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM600 1000h400v-100h-400v100zM1200 1000h500v-500h-500v500zM450 800q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5 t14.5 35.5t35.5 14.5zM600 800h400v-100h-400v100zM1300 800v-200h300v200h-300zM450 600q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM600 600h400v-100h-400v100z" /> 26 <glyph unicode="" d="M500 1800h1000q82 0 141 -59t59 -141v-800q0 -82 -59 -141t-141 -59h-200l-500 -500v500h-300q-82 0 -141 59t-59 141v800q0 82 59 141t141 59zM1350 950l-250 250l250 250l-100 100l-250 -250l-250 250l-100 -100l250 -250l-250 -250l100 -100l250 250l250 -250z" /> 27 <glyph unicode="" d="M1000 1000l-746 298l46 -1098h-200l48 1141l-148 59l1000 400l1000 -400zM1000 1500q-41 0 -70.5 -14.5t-29.5 -35.5t29.5 -35.5t70.5 -14.5t70.5 14.5t29.5 35.5t-29.5 35.5t-70.5 14.5zM1000 900l557 223q112 -149 136 -330q-52 7 -93 7q-188 0 -347.5 -92.5 t-252.5 -248.5q-93 156 -252.5 248.5t-347.5 92.5q-40 0 -93 -7q24 181 136 330z" /> 28 <glyph unicode="" d="M1689 1880l141 -141q29 -29 29 -70.5t-29 -70.5l-430 -431v-967h-1100v1500h1067l180 180q30 29 71.5 29.5t70.5 -29.5zM1123 1032l537 536l-142 142l-536 -537l-71 -212z" /> 29 <glyph unicode="" d="M2000 1000q0 163 -50.5 315.5t-143 275.5t-215.5 215.5t-275.5 143t-315.5 50.5t-315.5 -50.5t-275.5 -143t-215.5 -215.5t-143 -275.5t-50.5 -315.5t50.5 -315.5t143 -275.5t215.5 -215.5t275.5 -143t315.5 -50.5t315.5 50.5t275.5 143t215.5 215.5t143 275.5 t50.5 315.5zM1000 1899q183 0 349.5 -71t287 -191.5t191.5 -287t71 -349.5t-71 -349.5t-191.5 -287t-287 -191.5t-349.5 -71t-349.5 71t-287 191.5t-191.5 287t-71 349.5t71 349.5t191.5 287t287 191.5t349.5 71zM801 518l-305 821l105 8q20 2 27 27.5t-2.5 49t-30.5 22.5 q-129 -10 -213 -10q-33 0 -52 1q110 166 287 263t383 97q154 0 293.5 -55t247.5 -154q-52 7 -98.5 -30.5t-46.5 -111.5q0 -29 11.5 -61.5t22.5 -52.5t37 -61q5 -8 8 -13q50 -87 50 -221q0 -60 -31.5 -172t-63.5 -194l-32 -82l-271 750q21 1 40 5t27 8l8 3q20 2 27.5 29.5 t-2.5 53.5t-30 25q-130 -11 -214 -11q-35 0 -87.5 3l-87.5 5l-36 3q-20 1 -30 -25.5t-2.5 -54t27.5 -28.5l84 -8l112 -304zM1403 303l261 697q3 7 7 19.5t15 53.5t15.5 82t8 105t-6.5 121q94 -170 94 -381q0 -219 -106.5 -405t-287.5 -292zM268 1323l382 -1048 q-202 99 -324.5 294.5t-122.5 430.5q0 179 65 323zM1013 870l229 -625q-117 -42 -242 -42q-103 0 -206 30z" /> 30 <glyph unicode="" d="M300 1900h1400v-1800h-1400v1800zM1400 1500v100h-800v-100h800zM1400 1200v100h-800v-100h800zM1400 900v100h-800v-100h800zM1200 600v100h-600v-100h600z" /> 31 <glyph unicode="" d="M854 726q0 130 -72 222q-50 63 -136.5 82t-159.5 3q-25 143 78 303.5t264 241.5l-163 228q-98 -47 -188.5 -114t-169.5 -157t-133.5 -192.5t-79.5 -227t-9 -252.5q26 -211 139.5 -337t283.5 -126q151 0 248 88q98 88 98 238zM1797 726q0 130 -72 222q-50 63 -136.5 82 t-159.5 3q-25 143 78 303.5t264 241.5l-163 228q-98 -47 -188.5 -114t-169.5 -157t-133.5 -192.5t-79.5 -227t-9 -252.5q26 -211 139.5 -337t283.5 -126q151 0 248 88q98 88 98 238z" /> 32 <glyph unicode="" d="M100 1900h1800v-1200l-600 -600h-1200v1800zM400 1600v-100h1200v100h-1200zM400 1200v-100h1200v100h-1200zM1000 700v100h-600v-100h600zM1200 300l500 500h-500v-500z" /> 33 <glyph unicode="" d="M1100 1400h-82q-81 0 -149.5 -71t-68.5 -145v-184l-300 -300v300h-200q-82 0 -141 59t-59 141v500q0 82 59 141t141 59h600q82 0 141 -59t59 -141v-300zM1100 1300h600q82 0 141 -59t59 -141v-500q0 -82 -59 -141t-141 -59h-200v-300l-300 300h-100q-82 0 -141 59 t-59 141v500q0 82 59 141t141 59z" /> 34 <glyph unicode="" d="M200 1900h1600q41 0 70.5 -29.5t29.5 -70.5v-1600l-1800 2v1598q0 41 29.5 70.5t70.5 29.5zM600 1800l-200 -300h100l200 300h-100zM1000 1800h-100l-200 -300h100zM1300 1800h-100l-200 -300h100zM1600 1800h-100l-200 -300h100zM1700 400v1000h-1400v-1000h1400z M800 1300l600 -400l-600 -400v800z" /> 35 <glyph unicode="" d="M699 1692l1102 200q40 6 69.5 -25.5t29.5 -74.5v-200v-1042q0 -145 -102.5 -247.5t-247.5 -102.5t-247.5 102.5t-102.5 247.5t102.5 247.5t247.5 102.5q73 0 150 -35v627l-900 -200v-892q-18 -128 -118 -214t-232 -86q-145 0 -247.5 102.5t-102.5 247.5t102.5 247.5 t247.5 102.5q73 0 150 -35v827q0 40 28 66.5t71 33.5z" /> 36 <glyph unicode="" d="M225 1900h1550q52 0 88.5 -36.5t36.5 -88.5v-1550q0 -52 -36.5 -88.5t-88.5 -36.5h-1550q-52 0 -88.5 36.5t-36.5 88.5v1550q0 52 36.5 88.5t88.5 36.5zM1700 300v1400h-1400v-1400h1400zM1000 1400q0 82 -59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59t141 59 t59 141zM1300 900q0 8 0.5 21t3 54t7.5 81t15.5 94t25 100.5t37.5 93.5t52 80.5t70 54.5t89 21v-1000q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v700q41 0 79.5 -22t67.5 -57.5t55 -78t43.5 -85t30 -78t18.5 -57.5l6 -22q4 12 12 32.5t36 72t60 91 t84 72t108 32.5t107.5 -20.5t85 -50t59 -59t36.5 -50.5z" /> 37 <glyph unicode="" d="M1500 1600h294q44 0 75 -31t31 -75v-1181q0 -45 -31 -79t-75 -34h-1588q-44 0 -75 34t-31 79v1181q0 44 31 75t75 31h294l300 200h400zM1000 500q166 0 283 117t117 283t-117 283t-283 117t-283 -117t-117 -283t117 -283t283 -117z" /> 38 <glyph unicode="" d="M1000 1900q205 0 362 -33.5t257.5 -91t164.5 -142t90 -177.5t26 -206t-26 -206t-90 -177.5t-164.5 -142t-257.5 -91t-362 -33.5t-362 33.5t-257.5 91t-164.5 142t-90 177.5t-26 206t26 206t90 177.5t164.5 142t257.5 91t362 33.5zM550 1100q62 0 106 44t44 106t-44 106 t-106 44t-106 -44t-44 -106t44 -106t106 -44zM1000 1100q62 0 106 44t44 106t-44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44zM1450 1100q62 0 106 44t44 106t-44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44zM600 550q62 0 106 -44t44 -106t-44 -106t-106 -44 t-106 44t-44 106t44 106t106 44zM300 350q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z" /> 39 <glyph unicode="" d="M1700 1300v-300h-500v-500h-300v500h-500v300h500v500h300v-500h500z" /> 40 <glyph unicode="" d="M1700 1300v300h-200v200h-300v-100h-900v-1500h1100v900h100v200h200zM1600 1500v-100h-200v-200h-100v200h-200v100h200v200h100v-200h200z" /> 41 <glyph unicode="" d="M0 1700h2000v-1400h-2000v1400zM1900 1300v200h-1800v-200h1800zM1500 800v400h-1000v-400h1000zM400 900v200h-300v-200h300zM1900 900v200h-300v-200h300zM1900 500v200h-1800v-200h1800z" /> 42 <glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1100 780v400h-1000v-400h1000zM1900 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" /> 43 <glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1900 780v400h-1000v-400h1000zM800 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" /> 44 <glyph unicode="" d="M0 1680h2000v-1400h-2000v1400zM1500 780v400h-1000v-400h1000z" /> 45 <glyph unicode="" d="M800 1400l600 -403l-600 -397v800z" /> 46 <glyph unicode="" d="M1500 1200l-403 -600l-397 600h800z" /> 47 <glyph unicode="" d="M1300 600l-600 403l600 397v-800z" /> 48 <glyph unicode="" d="M700 700l403 600l397 -600h-800z" /> 49 <glyph unicode="" d="M700 700l403 600l397 -600h-800z" /> 50 <glyph unicode="" d="M1500 1600h300v-1400h-1600v1400h300v100q0 62 44 106t106 44t106 -44t44 -106v-100h400v100q0 62 44 106t106 44t106 -44t44 -106v-100zM600 1700v-250q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v250q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5z M1300 1700v-250q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v250q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5zM1700 300v900h-1400v-900h1400zM700 400v700h-200v-700h200zM1100 400v700h-200v-700h200zM1500 400v700h-200v-700h200z" /> 51 <glyph unicode="" d="M1439 1450l134 -94l-537 -745h-134l-302 401l134 125l235 -187z" /> 52 <glyph unicode="" d="M1000 1784q160 0 305 -62t250 -167t167 -250t62 -305t-62 -305t-167 -250t-250 -167t-305 -62t-305 62t-250 167t-167 250t-62 305q0 213 106 393.5t286.5 285.5t391.5 105zM1200 612v776l-582 -385z" /> 53 <glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1500 700l-300 300l300 300l-200 200l-300 -300l-300 300l-200 -200 l300 -300l-300 -300l200 -200l300 300l300 -300z" /> 54 <glyph unicode="" d="M1000 1900l-300 -600l-600 -75l413 -462l-113 -663l600 300l600 -300l-112 663l412 462l-600 75zM1000 1676l234 -469l465 -58l-318 -356l87 -515l-468 234l-468 -234l87 515l-318 356l465 58z" /> 55 <glyph unicode="" d="M1000 1900l300 -600l600 -75l-412 -462l112 -663l-600 300l-600 -300l113 663l-413 462l600 75z" /> 56 <glyph unicode="" d="M1100 1300h-1000l500 -700zM900 600h1000l-500 700z" /> 57 <glyph unicode="" d="M1476 1900q134 0 229 -95.5t95 -229.5t-95 -229t-229 -95q-33 0 -70 8l-106 -106v-1053h-1100v1500h954q9 145 99 222.5t223 77.5zM1476 1351q93 0 158.5 66t65.5 158q0 93 -65.5 159t-158.5 66t-158.5 -66t-65.5 -159q0 -54 27 -103l-322 -322q-35 -35 -101.5 -133 t-48.5 -116q3 -4 10 -4q32 0 120.5 61.5t118.5 91.5l324 324q48 -23 96 -23z" /> 58 <glyph unicode="" d="M1555 630l-219 -206l-342 365l-364 -343l-206 218l364 343l-342 364l218 206l343 -364l364 342l205 -218l-364 -343z" /> 59 <glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1000 500q136 0 251 67t182 182t67 251t-67 251t-182 182t-251 67 t-251 -67t-182 -182t-67 -251t67 -251t182 -182t251 -67z" /> 60 <glyph unicode="" d="M1400 1100h100q41 0 70.5 -29.5t29.5 -70.5v-700q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v700q0 41 29.5 70.5t70.5 29.5h100v300q0 166 117 283t283 117t283 -117t117 -283v-300zM1200 1100v300q0 82 -59 141t-141 59t-141 -59t-59 -141v-300 h400zM1100 400l-36 215q39 18 62.5 54.5t23.5 80.5q0 62 -44 106t-106 44t-106 -44t-44 -106q0 -44 23.5 -80.5t62.5 -54.5l-36 -215h200z" /> 61 <glyph unicode="" d="M1600 1600h196q43 0 73.5 -30.5t30.5 -73.5v-1292q0 -43 -30.5 -73.5t-73.5 -30.5h-1292q-43 0 -73.5 30.5t-30.5 73.5v196h-196q-43 0 -73.5 30.5t-30.5 73.5v1292q0 43 30.5 73.5t73.5 30.5h1292q43 0 73.5 -30.5t30.5 -73.5v-196zM300 600h1100v1100h-1100v-1100z M800 1450q0 62 -44 106t-106 44t-106 -44t-44 -106t44 -106t106 -44t106 44t44 106zM1000 1000q2 10 6 28t18.5 70t30.5 99.5t43 105t55.5 99t67 70t79.5 28.5v-800h-900v600q56 0 97 -31t60 -75t30 -88t12 -75l1 -31q1 4 2.5 11.5t8 28t15.5 39.5t25.5 42t36 39.5t49 28 t63.5 11.5q47 0 84.5 -20.5t58 -50t34.5 -59t19 -50.5zM1700 300v1100h-100v-896q0 -43 -30.5 -73.5t-73.5 -30.5h-896v-100h1100z" /> 62 <glyph unicode="" d="M200 100h1600q41 0 70.5 29.5t29.5 70.5v1600q0 41 -29.5 70.5t-70.5 29.5h-1600q-41 0 -70.5 -29.5t-29.5 -70.5v-1600q0 -41 29.5 -70.5t70.5 -29.5zM400 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M1700 1700v-200h-1100v200h1100zM400 1300q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 1300v-200h-1100v200h1100zM400 900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5 t29.5 70.5t70.5 29.5zM1700 900v-200h-1100v200h1100zM400 500q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 500v-200h-1100v200h1100z" /> 63 <glyph unicode="" d="M1900 200v1600q0 41 -29.5 70.5t-70.5 29.5h-1600q-41 0 -70.5 -29.5t-29.5 -70.5v-1600q0 -41 29.5 -70.5t70.5 -29.5h1600q41 0 70.5 29.5t29.5 70.5zM400 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M1700 1700v-600h-1100v600h1100zM400 900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1700 900v-600h-1100v600h1100z" /> 64 <glyph unicode="" d="M1900 800v-300h-400v-400h-300v400h-800v800h-400v300h400v400h300v-400h700l300 300l100 -100l-300 -300v-700h400zM1100 1300h-400v-400zM800 800h400v400z" /> 65 <glyph unicode="" d="M700 1500h-195q0 137 71.5 213.5t223.5 76.5v210q-232 0 -368 -139.5t-136 -360.5h-178l262 -339zM2000 1900v-1400h-500v-500h-1400v1000h900v900h1000zM1800 1700h-600v-700h300v-300h300v1000zM1300 800h-1000v-600h1000v600z" /> 66 <glyph unicode="" d="M1595 1500h-195l320 -339l262 339h-178q0 221 -136 360.5t-368 139.5v-210q152 0 223.5 -76.5t71.5 -213.5zM100 1900h1000v-900h900v-1000h-1400v500h-500v1400zM300 1700v-1000h300v300h300v700h-600zM800 800v-600h1000v600h-1000z" /> 67 <glyph unicode="" d="M2000 1100v-200h-300v-800h-1400v800h-300v200h300v800h1400v-800h300zM650 1300h700l-350 400zM1700 1050h-1400v-100h1400v100zM1350 700h-700l350 -400z" /> 68 <glyph unicode="" d="M1900 1700v-1400h-800v-300h-200v300h-800v1400h800v300h200v-300h800zM1050 300v1400h-100v-1400h100zM700 1350l-400 -350l400 -350v700zM1700 1000l-400 350v-700z" /> 69 <glyph unicode="" d="M1723 990q79 -186 79 -390t-79 -390l-278 117q55 132 55 273q0 142 -55 272q-52 125 -150 223q-97 97 -222 150q-132 55 -273 55v-300l-600 450l600 450v-298q204 0 390 -79q182 -77 318 -215q138 -136 215 -318z" /> 70 <glyph unicode="" d="M277 990q77 182 215 318q136 138 318 215q186 79 390 79v298l600 -450l-600 -450v300q-141 0 -273 -55q-124 -53 -222 -150q-98 -98 -150 -223q-55 -130 -55 -272q0 -141 55 -273l-278 -117q-79 186 -79 390t79 390z" /> 71 <glyph unicode="" d="M1400 1400q0 -138 -84.5 -245t-215.5 -141v-614q0 -44 -50 -94t-100 -78l-50 -28v814q-131 34 -215.5 141t-84.5 245q0 166 117 283t283 117t283 -117t117 -283zM800 1500q0 -41 29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-70.5 -29.5 t-29.5 -70.5z" /> 72 <glyph unicode="" d="M600 700h900q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v1000h-200q-41 0 -70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-200h1300l-400 -700h-900v-100zM550 400q62 0 106 -44t44 -106 t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1450 400q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" /> 73 <glyph unicode="" d="M200 1800h1600q41 0 70.5 -29.5t29.5 -70.5v-1400q0 -41 -29.5 -70.5t-70.5 -29.5h-1600q-41 0 -70.5 29.5t-29.5 70.5v1400q0 41 29.5 70.5t70.5 29.5zM1700 400v900h-1400v-900h1400zM400 1200v-100h300v100h-300zM800 1200v-300h800v300h-800zM400 800v-100h300v100 h-300zM800 800v-300h800v300h-800z" /> 74 <glyph unicode="" d="M1485 997q133 -14 224 -113t91 -234q0 -145 -102.5 -247.5t-247.5 -102.5h-1000q-145 0 -247.5 102.5t-102.5 247.5q0 133 88 231t218 115q-6 26 -6 54q0 104 73 177t177 73q49 0 95 -19q50 99 145.5 159t209.5 60q166 0 283 -117t117 -283q0 -48 -15 -103z" /> 75 <glyph unicode="" d="M1000 1500q102 0 201.5 -27.5t176.5 -71.5t146.5 -97.5t118.5 -107t85.5 -97.5t53.5 -71l18 -28q-6 -10 -18 -28t-53 -70t-86.5 -99.5t-117.5 -105t-147.5 -99t-175.5 -70t-202 -28.5t-201.5 27.5t-176.5 71.5t-146.5 97.5t-118.5 107t-85.5 97.5t-53.5 71l-18 28 q6 10 18 28t53 70t86.5 99.5t117.5 105t147.5 99t175.5 70t202 28.5zM1000 600q77 0 151 22t132 57.5t110 78t89 85t64.5 78t40.5 57.5l13 22q-5 8 -14 22.5t-39.5 56t-64.5 79.5t-88 84t-111 79t-131.5 56t-151.5 23t-151 -22t-132 -57.5t-110 -78t-89 -85t-64.5 -78 t-40.5 -57.5l-13 -22q5 -8 14 -22.5t39.5 -56t64.5 -79.5t88 -84t111 -79t131.5 -56t151.5 -23zM1300 1000q0 124 -88 212t-212 88t-212 -88t-88 -212t88 -212t212 -88t212 88t88 212z" /> 76 <glyph unicode="" d="M1800 300v1400q0 41 -29.5 70.5t-70.5 29.5h-1400q-41 0 -70.5 -29.5t-29.5 -70.5v-1400q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1700 300h-1400v1400h1400v-1400zM475 1600h1050q31 0 53 -22t22 -53v-125h-100v-300h100v-200h-100v-300h100v-125 q0 -31 -22 -53t-53 -22h-1050q-31 0 -53 22t-22 53v1050q0 31 22 53t53 22zM1300 1000q0 166 -117 283t-283 117t-283 -117t-117 -283t117 -283t283 -117t283 117t117 283zM900 1300l77 -115q55 -24 89 -74t34 -111q0 -82 -59 -141t-141 -59t-141 59t-59 141q0 61 34 111 t89 74z" /> 77 <glyph unicode="" d="M1214 1582q139 -139 158 -334.5t-86 -354.5q3 -3 15.5 -14t20.5 -17q34 -27 81 -59q62 -43 66 -47q61 -45 94 -78q49 -49 84 -100q36 -50 59 -104q22 -55 18 -100q-3 -48 -36 -81t-81 -36q-49 -3 -99 19q-52 21 -104 59q-51 35 -100 84q-33 33 -77 93q-2 3 -47 66 q-32 46 -56 78q-24 30 -44 50q-154 -83 -334 -57t-310 155q-160 161 -160 389.5t160 388.5q106 106 247.5 143.5t283 0t247.5 -143.5zM1073 946q102 103 102 247.5t-102 247.5q-103 103 -248 103t-247 -103q-103 -103 -103 -247.5t103 -247.5q102 -103 247 -103t248 103z " /> 78 <glyph unicode="" d="M900 1100v600h-600v-600h600zM1700 1100v600h-600v-600h600zM900 300v600h-600v-600h600zM1700 300v600h-600v-600h600z" /> 79 <glyph unicode="" d="M500 600v800h1000v-800h-1000zM200 700v600h200v-600h-200zM600 1300v-600h800v600h-800zM1600 1300h200v-600h-200v600zM1300 1100v100h-600v-100h600zM1300 800v200h-600v-200h600z" /> 80 <glyph unicode="" d="M1200 1600h300q41 0 70.5 -29.5t29.5 -70.5v-100h-1300v100q0 41 29.5 70.5t70.5 29.5h300q17 86 88.5 143t161.5 57t161.5 -57t88.5 -143zM800 1600h300q-16 43 -58.5 71.5t-91.5 28.5t-91.5 -28.5t-58.5 -71.5zM400 1300h1100v-1000q0 -41 -29.5 -70.5t-70.5 -29.5 h-900q-41 0 -70.5 29.5t-29.5 70.5v1000zM700 400v700h-100v-700h100zM1000 400v700h-100v-700h100zM1300 400v700h-100v-700h100z" /> 81 <glyph unicode="" d="M1800 200v1600h-1600v-1600h1600zM1600 1500h-1200v100h1200v-100zM700 1300v-300h300q0 -124 -88 -212t-212 -88t-212 88t-88 212t88 212t212 88zM800 1100v200q82 0 141 -59t59 -141h-200zM1600 1200h-400v100h400v-100zM1600 900h-400v200h400v-200zM1600 700h-400 v100h400v-100zM1600 400h-1200v100h1200v-100z" /> 82 <glyph unicode="" d="M1000 1000v700q143 0 272.5 -55.5t223 -149t149 -223t55.5 -272.5h-700zM900 1600v-700h700q0 -143 -55.5 -272.5t-149 -223t-223 -149t-272.5 -55.5t-272.5 55.5t-223 149t-149 223t-55.5 272.5t55.5 272.5t149 223t223 149t272.5 55.5z" /> 83 <glyph unicode="" d="M1800 200v1600h-400v-1600h400zM1200 200v1100h-400v-1100h400zM600 200v800h-400v-800h400z" /> 84 <glyph unicode="" d="M600 1600v-1300h454q207 0 326 100q120 99 120 277q0 126 -51 201q-52 76 -167 103v9q85 15 136 90t51 191q0 172 -117 250q-115 79 -374 79h-378zM857 1085v289h136q109 0 161 -32q51 -33 51 -107q0 -80 -47 -115t-151 -35h-150zM857 866h160q216 0 216 -161 q0 -91 -51 -134q-50 -43 -157 -43h-168v338z" /> 85 <glyph unicode="" d="M1478 1400h-213l-280 -900h212l-62 -200h-675l62 200h214l280 900h-213l62 200h675z" /> 86 <glyph unicode="" d="M550 1300q-62 0 -106 44t-44 106t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 1500h900v-100h-900v100zM550 800q-62 0 -106 44t-44 106t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 1000h900v-100h-900v100zM550 300q-62 0 -106 44t-44 106 t44 106t106 44t106 -44t44 -106t-44 -106t-106 -44zM800 500h900v-100h-900v100z" /> 87 <glyph unicode="" d="M600 1300v400h-69l-129 -103l40 -51l46 37q12 10 30 28l-2 -42v-269h84zM800 1500h900v-100h-900v100zM677 805v70h-172v4l51 48q56 52 70 71q21 26 30 49q10 23 10 51q0 33 -16 56q-14 23 -44 37t-65 14q-29 0 -51 -6q-17 -3 -42 -15q-21 -12 -48 -35l45 -54 q24 19 45 30q21 10 45 10q23 0 35 -11q13 -12 13 -36q0 -15 -6 -30q-7 -16 -19 -33q-11 -13 -58 -62l-99 -100v-58h276zM800 1000h900v-100h-900v100zM671 605q0 46 -37 71q-37 26 -100 26q-78 0 -133 -40l40 -60q27 18 46 23q20 7 41 7q58 0 58 -46q0 -31 -22 -43t-70 -12 h-31v-66h31q51 0 75 -12q23 -12 23 -41q0 -32 -20 -47q-21 -15 -63 -15q-27 0 -57 8q-25 7 -52 20v-74q50 -22 118 -22q80 0 122 33q43 33 43 92q0 40 -26 64q-25 24 -74 30v2q40 9 65 37q23 28 23 65zM800 500h900v-100h-900v100z" /> 88 <glyph unicode="" d="M949 678q0 113 -61 190q-43 53 -117 69.5t-136 2.5q-21 122 66.5 259t225.5 206l-139 195q-106 -51 -199.5 -129t-167.5 -179.5t-110 -231t-19 -265.5q22 -180 119.5 -287.5t242.5 -107.5q128 0 212 75q83 74 83 203zM1754 678q0 113 -61 190q-43 54 -117 70t-136 2 q-21 122 66.5 259t225.5 206l-139 195q-106 -51 -199.5 -129t-167 -179.5t-109.5 -231t-19 -265.5q22 -180 119 -287.5t242 -107.5q128 0 212 75q83 74 83 203z" /> 89 <glyph unicode="" d="M1200 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1200 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" /> 90 <glyph unicode="" d="M1400 1500v200h-800v-200h800zM1700 1100v200h-1400v-200h1400zM1400 700v200h-800v-200h800zM1700 300v200h-1400v-200h1400z" /> 91 <glyph unicode="" d="M1700 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1700 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" /> 92 <glyph unicode="" d="M1700 1300v400h-1400v-400h1400zM600 900v200h-300v-200h300zM1200 900v200h-400v-200h400zM1700 900v200h-300v-200h300zM1700 300v400h-1400v-400h1400z" /> 93 <glyph unicode="" d="M1584 1724q36 0 71 -11q26 -8 64 -25l35 81q-78 39 -169 39q-86 0 -152 -37q-65 -37 -99 -108q-34 -68 -34 -163q0 -149 70 -228t202 -79q88 0 160 26v84q-32 -10 -74 -19q-38 -8 -74 -8q-89 0 -134 57q-47 54 -47 166q0 105 48 165q49 60 133 60zM650 1200h104l-224 600 h-106l-224 -600h103l58 166h229zM800 1800v-600h217q101 0 157 46q56 44 56 126q0 60 -30 95q-28 35 -93 47v4q50 9 78 44q28 37 28 88q0 78 -56 114q-54 36 -179 36h-178zM898 1552v166h85q68 0 97 -19q31 -18 31 -61q0 -46 -29 -66q-28 -20 -89 -20h-95zM564 1450h-174 l54 156q23 65 32 110l15 -52q8 -26 17 -51zM898 1473h99q64 0 98 -23q32 -23 32 -69q0 -51 -32 -75q-31 -24 -93 -24h-104v191zM400 700l500 -500l900 800l-100 100l-800 -600l-400 300z" /> 94 <glyph unicode="" d="M600 1700l-125 -125l225 -375l-375 225l-125 -125v400h400zM1400 1700h400v-400l-125 125l-375 -225l225 375zM700 800v400h600v-400h-600zM200 700l125 -125l375 225l-225 -375l125 -125h-400v400zM1400 300l125 125l-225 375l375 -225l125 125v-400h-400z" /> 95 <glyph unicode="" d="M1900 1800v-600h-1800v600h1800zM1800 1300v400h-1600v-400h1600zM500 1600v-200h-200v200h200zM800 1600v-200h-200v200h200zM1100 1600v-200h-200v200h200zM1400 1600v-200h-200v200h200zM1700 1600v-200h-200v200h200zM1900 1100v-900h-1800v900h1800zM1800 300v700 h-1600v-700h1600zM500 900v-200h-200v200h200zM800 900v-200h-200v200h200zM1100 900v-200h-200v200h200zM1700 900v-200h-500v200h500zM1100 600v-200h-800v200h800zM1400 600v-200h-200v200h200zM1700 600v-200h-200v200h200z" /> 96 <glyph unicode="" d="M1400 1500h-200v-571q0 -143 -70 -220.5t-175 -77.5q-106 0 -180.5 78t-74.5 218v573h-200v-587q0 -61 12.5 -120.5t45 -121t82 -108t129 -75.5t179.5 -29t180.5 28.5t130 74t82.5 106.5t46 120.5t13 120.5v591zM1400 200v200h-900v-200h900z" /> 97 <glyph unicode="" d="M200 1700h1600v-200h-1600v200zM200 1300h1600v-200h-1600v200zM200 900h1600v-200h-1600v200zM200 500h1600v-200h-1600v200z" /> 98 <glyph unicode="" d="M1323 500h190l-413 1100h-200l-400 -1100h188l107 300h418zM1170 954h-319l149 486z" /> 99 <glyph unicode="" d="M1238 1800l262 -300v-100h-1000v100l264 300h474zM1000 1500q41 0 70.5 29.5t29.5 70.5t-29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5zM1800 300v1200q0 41 -29.5 70.5t-70.5 29.5h-154l54 -63v-237h-1200v238l55 62h-155q-41 0 -70.5 -29.5 t-29.5 -70.5v-1200q0 -41 29.5 -70.5t70.5 -29.5h1400q41 0 70.5 29.5t29.5 70.5zM1500 1100l-200 -700h-200l-100 500l-100 -500h-208l-192 700h200l100 -500l100 500h200l100 -500l100 500h200z" /> 100 <glyph unicode="" d="M1238 1800l262 -300v-100h-1000v100l264 300h474zM1000 1500q41 0 70.5 29t29.5 71q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5q0 -42 29.5 -71t70.5 -29zM1545 1600h155q41 0 70.5 -29.5t29.5 -70.5v-1200q0 -42 -29.5 -71t-70.5 -29h-1400q-41 0 -70.5 29 t-29.5 71v1200q0 41 29.5 70.5t70.5 29.5h155l-55 -63v-237h1200v237zM1400 900v200h-800v-200h300v-500h200v500h300z" /> 101 <glyph unicode="" d="M1429 1541l110 -111q61 -60 61 -147v-212q0 -87 -61 -147l-663 -663q-60 -61 -147 -61t-147 61l-111 110l-110 111q-61 60 -61 147v212q0 87 61 148l663 662q60 61 147 61q86 0 147 -61zM808 571l642 642q29 29 29 71t-29 72l-214 214q-29 29 -72 29q-42 0 -71 -29 l-642 -642q-29 -30 -29 -72t29 -71l214 -214q29 -29 71.5 -29t71.5 29z" /> 102 <glyph unicode="" d="M1600 1800h-300v-100h-600v100h-300v-1500h300v100h600v-100h300v1500zM600 1700v-100h-100v100h100zM1500 1700v-100h-100v100h100zM1300 1600v-500h-600v500h600zM600 1500v-100h-100v100h100zM1500 1500v-100h-100v100h100zM600 1300v-100h-100v100h100zM1500 1300 v-100h-100v100h100zM600 1100v-100h-100v100h100zM1500 1100v-100h-100v100h100zM1300 1000v-500h-600v500h600zM600 900v-100h-100v100h100zM1500 900v-100h-100v100h100zM600 700v-100h-100v100h100zM1500 700v-100h-100v100h100zM600 500v-100h-100v100h100zM1500 500 v-100h-100v100h100z" /> 103 <glyph unicode="" d="M1000 1460q190 0 291 -108q100 -108 100 -313q0 -192 -69 -327q-33 -62 -87.5 -111.5t-134.5 -100.5v-200h600v200h-369q146 101 212 234q74 153 74 335q0 267 -165 422q-166 155 -452 155q-287 0 -452 -157q-165 -156 -165 -420q0 -181 73 -333q62 -130 210 -236h-366 v-200h600v200q-84 55 -139 105t-85 112q-67 133 -67 322q0 206 100 313q99 108 291 108z" /> 104 <glyph unicode="" d="M700 1600v100h-400v-100h400zM1700 1500v200h-900v-200h900zM700 1300h-200v200l-400 -350l400 -350v200h200v300zM1700 1200v200h-900v-200h900zM1500 900v200h-700v-200h700zM1700 600v200h-900v-200h900zM700 600v100h-400v-100h400zM1100 300v200h-300v-200h300z" /> 105 <glyph unicode="" d="M300 1500v200h900v-200h-900zM1300 1600v100h400v-100h-400zM1300 1300h200v200l400 -350l-400 -350v200h-200v300zM300 1200v200h900v-200h-900zM500 900v200h700v-200h-700zM300 600v200h900v-200h-900zM1300 600v100h400v-100h-400zM900 300v200h300v-200h-300z" /> 106 <glyph unicode="" d="M1700 1000q0 190 -94 351.5t-255 255t-351 93.5q-143 0 -272.5 -55.5t-223 -149t-149 -223t-55.5 -272.5t55.5 -272.5t149 -223t223 -149t272.5 -55.5q190 0 351 93.5t255 255t94 351.5zM1070 852h-156v43q0 56 24 98q22 39 88 89q61 43 81 71q20 26 20 62q0 37 -28 58 q-28 19 -79 19q-88 0 -200 -57l-64 128q131 74 277 74q120 0 192 -58q71 -58 71 -155q0 -66 -29 -111q-27 -45 -111 -106q-55 -40 -71 -63q-15 -22 -15 -57v-35zM923 578q-27 26 -27 73q0 50 26 75t77 25q47 0 75 -26q27 -26 27 -74q0 -47 -27 -72q-27 -27 -75 -27t-76 26z " /> 107 <glyph unicode="" d="M1582 775q40 0 74 7q33 7 73 20v-84q-70 -26 -158 -26q-131 0 -201 79q-59 67 -68 179h-94q18 -32 18 -79q0 -80 -55 -126q-57 -45 -156 -45h-215v250h-141l93 -250h-103l-59 167h-228l-58 -167h-104l93 250h-93v100h131l93 249h106l92 -249h178v250h177q115 0 177 -41 q55 -36 55 -113q0 -52 -27 -87l-8 -9h129q8 62 31 110q36 71 98 106q64 37 151 37q93 0 169 -38l-35 -81q-26 13 -64 25q-35 11 -71 11q-83 0 -131 -59q-35 -44 -44 -111h293v-100h-295q9 -77 44 -119q45 -56 133 -56zM444 1104l-18 -54h103l-21 61q-2 5 -7.5 22t-9.5 29 q-12 41 -14 51q-14 -59 -33 -109zM897 1213v-163h119q39 3 64 18q28 19 28 66q0 42 -30 61q-30 18 -97 18h-84zM564 949v1h-173v-1h173zM1092 948l-3 2h-192v-168h104q60 0 92 23q31 24 31 74q0 46 -32 69z" /> 108 <glyph unicode="" d="M1774 1774q126 -127 126 -305t-126 -305l-153 -152q-45 -46 -108 -77l-213 65l169 164l76 77l76 76q63 63 63 152t-63 152q-63 64 -152 64t-152 -64l-77 -76l-76 -76l-164 -169l-65 214q31 63 77 107l152 153q127 126 305.5 126t304.5 -126zM200 1600l800 -600l-600 800z M600 1800l400 -800l-200 800h-200zM200 1400l800 -400l-800 200v200zM936 631l64 69l74 -235l-138 -139q-127 -126 -305 -126t-305 126q-126 126 -126 305t126 305l139 138l235 -74l-69 -64l-152 -153q-64 -63 -64 -152t64 -152q63 -64 152 -64t152 64zM1800 400l-800 600 l600 -800zM1400 200l-400 800l200 -800h200zM1800 600l-800 400l800 -200v-200z" /> 109 <glyph unicode="" d="M376 400h1248q176 219 176 500q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5t-255 -170.5t-170.5 -255t-63.5 -311q0 -281 176 -500zM1000 1600q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z M600 1400q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1400 1400q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM863 845l337 455v-600q0 -82 -59 -141t-141 -59 t-141 59t-59 141q0 85 63 145zM400 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1600 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1100 700 q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5z" /> 110 <glyph unicode="" d="M500 200v1500h-200v-1500h200zM600 800v800q83 28 189 28.5t214.5 -14t220.5 -29t239 -13.5t237 28v-800q-83 -35 -201 -39t-229.5 13t-239 32.5t-229.5 19.5t-201 -26z" /> 111 <glyph unicode="" d="M300 1600h1400v-200h-1400v200zM300 1100h1400v-200h-1400v200zM300 600h1400v-200h-1400v200z" /> 112 <glyph unicode="" d="M300 997l600 403v-800zM1100 1400l600 -403l-600 -397v800z" /> 113 <glyph unicode="" d="M1000 1800q-163 0 -301 -80.5t-218.5 -218.5t-80.5 -301q0 -142 70 -266.5t183 -222.5q4 -3 23.5 -19.5t29.5 -25.5t30 -27.5t34.5 -33t33 -35.5t34.5 -42q133 -174 162 -271q29 97 162 271q16 21 34.5 42t33 35.5t34.5 33t30 27.5t29.5 25.5t23.5 19.5q113 98 183 222.5 t70 266.5q0 163 -80.5 301t-218.5 218.5t-301 80.5zM1000 1544q142 0 243 -101t101 -243t-101 -243t-243 -101t-243 101t-101 243t101 243t243 101z" /> 114 <glyph unicode="" d="M1300 686l117 594q60 33 96.5 91.5t36.5 128.5q0 104 -73 177t-177 73t-177 -73t-73 -177q0 -70 36.5 -128.5t96.5 -91.5zM1300 1650q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1472 1170l328 133v-900l-488 -203l-612 203l-500 -200v900 l500 200l427 -141l173 -730z" /> 115 <glyph unicode="" d="M400 500v300h-200v1000h1200v-300h200v-300h200v-1000h-1200v300h-200zM1100 1700q-82 0 -141 -59t-59 -141h400q0 83 -58.5 141.5t-141.5 58.5zM400 900v500h-100v-500h100zM1100 1200h400q0 83 -58.5 141.5t-141.5 58.5q-82 0 -141 -59t-59 -141zM600 600v500h-100 v-500h100zM1500 700q83 0 141.5 58.5t58.5 141.5q0 82 -59 141t-141 59t-141 -59t-59 -141q0 -83 58.5 -141.5t141.5 -58.5zM1700 300v200q-101 0 -185.5 16.5t-144.5 43t-115 58.5l-110 64t-115 58.5t-144.5 43t-185.5 16.5v-500h1000z" /> 116 <glyph unicode="" d="M500 1700h1400v-1100h-200v-200h-200v-200h-1400v1100h200v200h200v200zM1800 700v900h-1200v-900h1200zM1500 1100q-82 0 -141 59t-59 141t59 141t141 59t141 -59t59 -141t-59 -141t-141 -59zM1600 500v100h-1100v800h-100v-900h1200zM700 1400l1000 -600h-1000v600z M1400 300v100h-1100v800h-100v-900h1200z" /> 117 <glyph unicode="" d="M800 1500q0 41 -29.5 70.5t-70.5 29.5h-500q-41 0 -70.5 -29.5t-29.5 -70.5q0 -42 30.5 -71t69.5 -29h500q41 0 70.5 29.5t29.5 70.5zM1400 1000l400 400v-1000l-400 400v200zM1300 600v600q0 41 -29.5 70.5t-70.5 29.5h-800q-41 0 -70.5 -29.5t-29.5 -70.5v-600 q0 -41 29.5 -70.5t70.5 -29.5h800q41 0 70.5 29.5t29.5 70.5z" /> 118 <glyph unicode="" d="M1200 700v600q0 82 -59 141t-141 59h-700q-82 0 -141 -59t-59 -141v-600q0 -82 59 -141t141 -59h700q82 0 141 59t59 141zM1300 950l600 -450v1000l-600 -450v-100z" /> 119 <glyph unicode="" d="M1900 500v1000q0 82 -59 141t-141 59h-1300q-82 0 -141 -59t-59 -141v-1000q0 -82 59 -141t141 -59h1300q82 0 141 59t59 141zM800 600v800l600 -400z" /> 120 <glyph unicode="" d="M1450 800q124 0 212 -88t88 -212t-88 -212t-212 -88t-212 88t-88 212q0 34 9 69l-438 230q-89 -99 -221 -99q-124 0 -212 88t-88 212t88 212t212 88q130 0 221 -99l438 230q-9 35 -9 69q0 124 88 212t212 88t212 -88t88 -212t-88 -212t-212 -88q-130 0 -221 99l-438 -230 q9 -35 9 -69t-9 -69l438 -230q89 99 221 99z" /> 121 <glyph unicode="" d="M1800 1650q0 -46 -25.5 -83.5t-66.5 -54.5v-1311h-1509l422 673q-21 37 -21 76q0 62 44 106t106 44t106 -44t44 -106q0 -17 -5 -37l144 -63q45 50 111 50q22 0 51 -9l358 641q-59 44 -59 118q0 62 44 106t106 44q25 0 53 -10l5 9v-11q41 -17 66.5 -54.5t25.5 -83.5z M1608 301v1114l-329 -589q21 -37 21 -76q0 -62 -44 -106t-106 -44t-106 44t-44 106l1 7l-163 72q-40 -29 -88 -29q-24 0 -51 10l-320 -509h1229z" /> 122 <glyph unicode="" d="M1800 200l1 1228q45 27 72 72.5t27 99.5q0 82 -59 141t-141 59t-141 -59t-59 -141q0 -59 31.5 -107.5t82.5 -72.5l-413 -658q-52 38 -116 38q-62 0 -112 -34t-73 -90l-214 153q14 34 14 71q0 83 -58.5 141.5t-141.5 58.5t-141.5 -58.5t-58.5 -141.5q0 -54 26.5 -99 t71.5 -72l-298 -529h1700zM1700 1700q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM500 1000q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5zM1085 700 q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5t29.5 70.5t70.5 29.5z" /> 123 <glyph unicode="" d="M1622 1420q35 -52 23.5 -112.5t-63.5 -95.5t-112.5 -23.5t-95.5 63.5q-21 31 -55 67q-36 34 -67 55q-37 25 -77 41q-42 19 -84 26q-90 20 -182 1q-43 -9 -84 -27q-40 -16 -77 -41q-33 -22 -66 -55q-34 -34 -56 -67q-24 -36 -41 -76q-1 -2 -1 -4q-12 -30 -23 -72h-461v300 h266q9 16 12 20q42 62 91 111q51 51 111 91q63 43 128 70q71 30 141 43q151 32 302 0q70 -13 141 -43q65 -27 128 -70q60 -40 111 -91q49 -49 91 -111zM1250 1000q0 104 -73 177t-177 73t-177 -73t-73 -177t73 -177t177 -73t177 73t73 177zM378 580q-35 52 -23.5 113 t63.5 96t113 23t95 -64q21 -31 55 -67q36 -34 67 -55q37 -25 77 -41q36 -16 84 -26q87 -19 182 0q48 10 84 26q40 16 77 41q33 22 66 55q31 31 56 67q26 41 41 76q1 2 1 4q12 30 23 72h461v-300h-266q-2 -2 -5.5 -9t-6.5 -11q-42 -62 -91 -111q-51 -51 -111 -91 q-63 -43 -128 -70q-64 -27 -141 -43q-151 -32 -302 0q-77 16 -141 43q-65 27 -128 70q-60 40 -111 91q-49 49 -91 111z" /> 124 <glyph unicode="" d="M1800 1200l-500 -400v299q-86 -2 -152.5 -9t-143.5 -26t-141 -50.5t-132.5 -85.5t-130.5 -128q22 269 199 421t501 173v306zM400 600h1100v200l200 160v-560h-1500v1100h943q-274 -48 -441 -200h-302v-700z" /> 125 <glyph unicode="" d="M1894 1554q-75 -112 -183 -190q1 -15 1 -47q0 -147 -43 -294.5t-131 -282.5t-210 -239t-293 -166t-366 -62q-304 0 -563 165q48 -5 88 -5q255 0 455 157q-119 2 -212.5 73t-129.5 182q39 -7 69 -7q47 0 96 13q-127 26 -210.5 127t-83.5 233v4q80 -43 166 -46 q-75 51 -119 131.5t-44 174.5q0 100 50 184q138 -169 334.5 -270.5t421.5 -112.5q-10 45 -10 84q0 151 107.5 258.5t259.5 107.5q160 0 268 -116q126 26 233 89q-43 -132 -162 -202q107 11 211 57z" /> 126 <glyph unicode="" d="M605 1800q-87 0 -148.5 -61.5t-61.5 -148.5v-908q0 -6 -1 -9q0 -209 117.5 -337.5t342.5 -134.5q2 0 7 -0.5t8 -0.5h521q86 0 148 62t62 149t-62 148.5t-148 61.5h-544q-30 0 -30 39v303h574q86 0 148 61.5t62 148.5t-62 149t-148 62h-574v206q0 87 -62 148.5t-149 61.5z " /> 127 <glyph unicode="" d="M1492 200h308q0 214 -57.5 418t-161 376.5t-251 318t-323 247.5t-383 158.5t-424.5 56.5v-302q210 0 407 -64.5t356 -182t278.5 -274t185 -351t65.5 -401.5zM948 200h308q0 211 -84 403.5t-225.5 332t-337 222t-409.5 82.5v-302q150 0 286 -56t243 -160 q106 -104 162.5 -239t56.5 -283zM413 202q88 0 150.5 61t62.5 148q0 86 -62.5 147.5t-150.5 61.5t-150.5 -61.5t-62.5 -147.5q0 -87 62 -148t151 -61z" /> 128 <glyph unicode="" d="M289 1800h1423q37 0 62.5 -25.5t25.5 -62.5v-1424q0 -36 -25.5 -62t-62.5 -26h-408v620h208l31 241h-239v154q0 59 25 88.5t95 29.5h128v216q-66 9 -186 9q-142 0 -226.5 -83.5t-84.5 -235.5v-178h-209v-241h209v-620h-766q-37 0 -63 26t-26 62v1424q0 37 26 62.5 t63 25.5z" /> 129 <glyph unicode="" d="M846 200h293v730h245l37 284h-282v182q0 69 29.5 103.5t111.5 34.5h151v255q-95 11 -219 11q-167 0 -266.5 -98.5t-99.5 -277.5v-210h-246v-284h246v-730z" /> 130 <glyph unicode="" d="M600 1500v200h-300v-200h300zM1800 500v1100h-900l-200 -200h-500v-900h1600zM1100 1300q124 0 212 -88t88 -212t-88 -212t-212 -88t-212 88t-88 212t88 212t212 88z" /> 131 <glyph unicode="" d="M803 1554q-7 -40 -4.5 -85.5t20.5 -92t42 -84t61 -61t78 -23.5q50 0 94 36t68 89t35.5 113t-1.5 108q-16 72 -72.5 117.5t-123.5 45.5q-68 0 -124 -45.5t-73 -117.5zM390 1464q-13 -55 4 -123t61.5 -119t101.5 -51t101.5 51t61.5 119t4 123q-14 61 -62 100t-105 39 t-105 -39t-62 -100zM1276 1464q-13 -55 4 -123t61.5 -119t100.5 -51q57 0 101.5 51t61.5 119t4 123q-14 61 -62 100t-105 39t-104.5 -39t-61.5 -100zM1217 321l125 430q37 126 6 215t-122 138t-226 49q-207 0 -304 -109t-40 -293l126 -430q17 -53 79.5 -87t138.5 -34 q75 0 137.5 34t79.5 87zM607 1084q-107 -147 -42 -359l112 -379q-53 -31 -120 -31q-65 0 -117.5 28.5t-67.5 74.5l-107 365q-48 156 34 248t258 92q41 0 79 -6q-11 -11 -29 -33zM1442 1123q176 0 258.5 -92t33.5 -248l-107 -365q-15 -46 -67.5 -74.5t-117.5 -28.5 q-67 0 -120 31l111 377q67 215 -42 361q-13 18 -28 33q38 6 79 6z" /> 132 <glyph unicode="" d="M1770 1368l141 -142l-347 -341l-142 142l84 82q-54 129 -151 231l-461 -659l-526 -470q-29 -29 -70.5 -29t-71.5 29l-120 121q-29 29 -29 70.5t29 70.5l1097 992q-231 145 -567 148q412 125 658 30q25 -10 50 -23.5t44.5 -25t45 -33t39.5 -32.5t40 -39t35.5 -37.5t37 -43 t33 -40t34.5 -44t32 -40.5z" /> 133 <glyph unicode="" d="M855 1694q20 -7 21 -22t-11 -35.5t-30 -44.5t-32 -51.5t-19.5 -54t9 -54.5t52.5 -51q23 -17 61 -5t75 37t82.5 63.5t83.5 74t78 69t65 47.5q39 22 84.5 30t95 0t96 -47t77.5 -106q33 -72 41 -182t-14.5 -239.5t-70 -255.5t-135 -242t-200.5 -187q-117 -74 -246.5 -106 t-252.5 -20t-233.5 58.5t-198.5 132.5t-139 201q-29 66 -39.5 141t-2.5 147.5t30 147.5t57.5 142.5t79 131t95 113.5t106.5 91t113 62t113.5 27.5t108.5 -13.5zM976 1049q30 -68 126 -56q91 12 173 84q96 86 93 187q-1 34 -13 65q-26 65 -124 33q-92 -29 -176 -112 q-94 -94 -87 -171q2 -16 8 -30z" /> 134 <glyph unicode="" d="M400 1400h600v200h-800v-1201h800v201h-600v800zM600 1200h600v300l600 -500l-600 -500v300h-600v400z" /> 135 <glyph unicode="" d="M376 299h1248q176 221 176 501q0 162 -63.5 310.5t-170.5 255.5t-255 170.5t-311 63.5t-311 -63.5t-255 -170.5t-170.5 -255.5t-63.5 -310.5q0 -280 176 -501zM900 1400q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71z M400 1200q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM852 860q37 37 200 124.5t307 156.5l144 69q-30 -64 -76.5 -160.5t-141 -275t-131.5 -215.5q-63 -63 -151 -63t-151 63q-62 62 -62 150.5t62 150.5zM300 700 q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM900 700q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71zM1500 700q0 41 29.5 70.5t70.5 29.5t70.5 -29.5t29.5 -70.5 q0 -42 -29.5 -71t-70.5 -29t-70.5 29t-29.5 71z" /> 136 <glyph unicode="" d="M1700 1200h100v-1100h-1600v1100h100v200q0 136 67 251t182 182t251 67q105 0 200 -42q95 42 200 42q136 0 251 -67t182 -182t67 -251v-200zM500 1400v-200h200v200q0 164 102 300h-2q-124 0 -212 -88t-88 -212zM1500 1200v200q0 124 -88 212t-212 88h-2 q102 -136 102 -300v-200h200zM1000 1622q-100 -90 -100 -222v-200h200v200q0 132 -100 222z" /> 137 <glyph unicode="" d="M446 1484l54 -230l-54 -229l201 -124l123 -201l230 54l230 -54l123 201l201 124l-54 229l54 230l-200 124l-124 201l-230 -55l-229 54l-125 -200zM1001 850q-167 0 -284 117t-117 284q0 165 117.5 282t283.5 117q165 0 282 -117t117 -282q0 -166 -117 -283.5t-282 -117.5 zM999 950q-124 0 -211.5 87.5t-87.5 212.5q0 124 87.5 212t211.5 88t212.5 -88t88.5 -212t-88 -212t-213 -88zM1383 840l-128 -224l-208 47l253 -583l140 220h250zM613 833l125 -225l213 51l-251 -579l-140 220h-250z" /> 138 <glyph unicode="" d="M200 1800h700v-700h-700v700zM1100 1800v-700h700v700h-700zM550 1550l150 150h-300zM1200 1200v500h500v-500h-500zM450 1450l-150 150v-300zM800 1600l-150 -150l150 -150v300zM550 1350l-150 -150h300zM900 200v700h-700v-700h700zM1800 200h-700v700h700v-700z M800 800v-500h-500v500h500zM1450 650l150 150h-300zM1200 400l150 150l-150 150v-300zM1550 550l150 -150v300zM1450 450l-150 -150h300z" /> 139 <glyph unicode="" d="M1500 1400v-200q82 0 141 -59t59 -141v-700q0 -82 -59 -141t-141 -59h-1000q-82 0 -141 59t-59 141v700q0 82 59 141t141 59v200q0 136 67 251t182 182t251 67t251 -67t182 -182t67 -251zM800 1400v-200h400v200q0 82 -59 141t-141 59t-141 -59t-59 -141zM1080 375v217 q54 24 87 73.5t33 109.5q0 83 -59 141.5t-141 58.5t-141 -58.5t-59 -141.5q0 -60 33 -109.5t87 -73.5v-217h160z" /> 140 <glyph unicode="" d="M1401 1600v-600h200v800h-1201v-800h201v600h800zM1201 1400v-600h300l-500 -600l-500 600h300v600h400z" /> 141 <glyph unicode="" d="M800 600v600h-300l500 600l500 -600h-300v-600h-400zM600 400v600h-200v-800h1201v800h-201v-600h-800z" /> 142 <glyph unicode="" d="M500 1300h1300v-1000h-1600v1300h700l200 -200h-700v-900h100v800z" /> 143 <glyph unicode="" d="M1900 1000q0 183 -71.5 349.5t-192 287t-287 192t-349.5 71.5t-349.5 -71.5t-287 -192t-192 -287t-71.5 -349.5t71.5 -349.5t192 -287t287 -192t349.5 -71.5t349.5 71.5t287 192t192 287t71.5 349.5zM800 990q-378 39 -548 229q74 240 271.5 396t453.5 167 q-33 -55 -56 -126t-32 -149t12 -154.5t73 -127.5q-35 -5 -69 6t-58.5 30t-51 40t-45.5 36t-43 17.5t-44 -14.5q-88 -69 -42 -150q50 -88 228 -144q62 -20 134 -33q97 -17 164.5 -40.5t106.5 -49.5t60 -62.5t27 -71t5 -84.5q-6 -298 -406 -470q2 86 -11.5 153t-38 109 t-55 73.5t-63.5 52t-62.5 37t-54 36.5t-35.5 43q10 42 18.5 67.5t27.5 61.5t52 66t82 56zM1649 1422q31 -48 54.5 -97.5t38.5 -92.5t23 -89t11.5 -81t1.5 -75.5t-4.5 -66t-10 -58.5t-11.5 -46.5t-12 -37.5l-7 -24q-21 51 -52 95.5t-60.5 74.5t-57.5 58t-50.5 60t-32.5 66 q-39 137 169 314z" /> 144 <glyph unicode="" d="M552 1800h743q41 0 70.5 -29.5t29.5 -70.5t-29.5 -70.5t-70.5 -29.5h-100v-1300q0 -41 -29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5v1200q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5v-1200q0 -41 -29.5 -70.5t-70.5 -29.5t-70.5 29.5t-29.5 70.5v596h-43 q-123 0 -227 60.5t-164.5 164.5t-60.5 227t60.5 227t164.5 164.5t227 60.5zM1400 600l500 400l-500 400v-800z" /> 145 <glyph unicode="" d="M1365 1712q145 -74 248 -198t149 -268.5t35 -305t-85 -305.5t-198 -247.5t-268 -149t-305 -35.5t-306 85q-138 71 -237 185t-149 255l164 103q34 -120 113.5 -218t194.5 -158q111 -57 234 -65.5t233 27t204.5 114.5t151.5 190t66 234t-27 233t-114.5 205t-189.5 152 t-234 65.5t-233 -27t-204.5 -114.5t-151.5 -190l188 -97l-495 -308l-39 582l178 -91q74 145 198.5 248t269 149t305 34.5t304.5 -84.5zM929 929q-29 29 -29 71q0 4 2 10t2 9h-1l97 481l97 -481l303 -319l-450 212l2 2q-13 7 -23 15z" /> 146 <glyph unicode="" d="M400 1500h-322q-30 0 -51.5 -23.5t-17.5 -60.5l156 -999q185 736 221 913q8 36 36.5 53t61.5 17h516q-70 208 -77 231q-19 69 -78 69h-331q-28 0 -50.5 -17t-29.5 -47zM888 1500h-400q2 4 5 11t12.5 24t19.5 30t23.5 24t26.5 11h213q21 0 46 -25t40 -50zM267 375 q-49 -75 -126 -75h1573q40 0 67.5 22t35.5 61l168 844q5 35 -15 54t-47 19h-323v147q0 15 -19.5 34t-46.5 19h-376q-23 0 -45 -14.5t-32 -29.5l-10 -14l-71 -142h-441q-25 0 -45 -13.5t-24 -36.5q-159 -670 -172 -733q-17 -92 -51 -142zM1538 1300h-438q2 4 6.5 11t17.5 24 t25.5 30t30.5 24t33 11h229q20 0 37 -10.5t27.5 -25t18 -29t10.5 -25.5z" /> 147 <glyph unicode="" d="M1100 1800h700v-700l-1000 -1000l-700 700zM1400 1200q82 0 141 59t59 141t-59 141t-141 59t-141 -59t-59 -141t59 -141t141 -59z" /> 148 <glyph unicode="" d="M2000 1000q0 203 -79.5 388t-213.5 319t-319 213.5t-388 79.5t-388.5 -79.5t-319.5 -213.5t-213 -319t-79 -388q0 -163 50.5 -315.5t143 -275.5t215.5 -215.5t275.5 -143t315.5 -50.5q203 0 388 79t319 213t213.5 319.5t79.5 388.5zM778 463l-341 915l117 8q24 3 32 31 t-3 54.5t-35 25.5q-145 -11 -237 -11q-37 0 -58 1q121 186 318.5 294t428.5 108q172 0 327.5 -61t277.5 -173q-58 9 -111.5 -33.5t-53.5 -124.5q0 -18 4.5 -37.5t8.5 -32.5t16 -36.5t17 -31.5t22.5 -37t21.5 -35q55 -96 55 -246q0 -66 -35 -191t-70 -217l-35 -92l-303 837 q24 1 44.5 5t29.5 8l8 4q24 2 32 33t-3 60.5t-35 28.5q-144 -12 -238 -12q-39 0 -97 3t-97 6l-39 3q-24 1 -35 -29t-3 -61t32 -32l92 -8l126 -341zM1741 1000q12 32 17.5 47t16.5 60.5t14.5 85t3.5 102t-9 130.5q105 -193 105 -425q0 -245 -119 -453.5t-321 -324.5 q247 661 292 778zM610 191q-226 109 -362.5 328t-136.5 481q0 196 72 359q336 -921 427 -1168zM1013 854l258 -698q-133 -45 -271 -45q-121 0 -229 33q28 83 112.5 329.5t129.5 380.5z" /> 149 <glyph unicode="" d="M1800 700h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200h-500v-200h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5 t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200h-500v-200h100q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 71.5v298q0 42 29.5 71.5t70.5 29.5h100v200q0 82 59 141t141 59h500v200h-100q-41 0 -70.5 29.5t-29.5 71.5 v298q0 42 29.5 71.5t70.5 29.5h400q41 0 70.5 -29.5t29.5 -71.5v-298q0 -42 -29.5 -71.5t-70.5 -29.5h-100v-200h500q82 0 141 -59t59 -141v-200z" /> 150 <glyph unicode="" d="M1100 1300h-151q-46 0 -89.5 -19.5t-69.5 -50.5l-90 270h-287l-239 -700h169l74 200h283v-400h-500q-82 0 -141 59t-59 141v700q0 82 59 141t141 59h700q82 0 141 -59t59 -141v-200zM651 1100h-202l100 293zM1000 1200h700q82 0 141 -59t59 -141v-700q0 -82 -59 -141 t-141 -59h-700q-82 0 -141 59t-59 141v700q0 82 59 141t141 59zM1725 700v108h-317v217h-116v-217h-317v-108h128q9 -66 42 -136t86 -126q-64 -26 -131.5 -44t-99.5 -18l5 -26q5 -26 10.5 -62t4.5 -58q62 0 154 32.5t174 82.5q83 -50 177 -82.5t157 -32.5q-1 14 1 33.5 t5 38.5t6 35.5t6 27.5l2 11q-33 0 -103 18.5t-135 44.5q51 56 83.5 126t41.5 135h136zM1344 507q-76 70 -101 193h209q-26 -124 -100 -193l-4 -3q-3 2 -4 3z" /> 151 <glyph unicode="" d="M1480 1812l334 -335q41 -44 40.5 -104t-37.5 -98l-986 -988l-686 -143l143 688q937 940 985 989q35 37 100 35t107 -44zM1143 1468l-688 -691l137 -137l682 697zM777 454l688 691l-132 132l-689 -689z" /> 152 <glyph unicode="" d="M700 1480q83 0 141.5 -58.5t58.5 -141.5q0 -52 -28 -100q-72 20 -172 20q-44 0 -87 -5t-64 -10l-21 -5q-28 48 -28 100q0 83 58.5 141.5t141.5 58.5zM1300 1480q83 0 141.5 -58.5t58.5 -141.5q0 -52 -28 -100q-72 20 -172 20q-44 0 -87 -5t-64 -10l-21 -5q-28 48 -28 100 q0 83 58.5 141.5t141.5 58.5zM1000 110q279 0 506 162t317 426l-132 46q-76 -222 -266.5 -358t-424.5 -136t-424.5 136t-266.5 358l-132 -46q90 -264 317 -426t506 -162z" /> 153 <glyph unicode="" d="M1500 1300v200h-1000v-200h1000zM1500 900v200h-1000v-200h1000zM1500 500v200h-1000v-200h1000z" /> 154 <glyph unicode="" d="M1600 1700h200v-1600h-1300q-124 0 -212 88t-88 212v1200q0 124 88 212t212 88h900v-1400h-900q-41 0 -70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5h1100v1400z" /> 155 <glyph unicode="" d="M500 300h1300v-200h-1300q-124 0 -212 88t-88 212v1200q0 124 88 212t212 88h1300v-1400h-1300q-41 0 -70.5 -29.5t-29.5 -70.5t29.5 -70.5t70.5 -29.5zM700 650v1100q0 21 -14.5 35.5t-35.5 14.5t-35.5 -14.5t-14.5 -35.5v-1100q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5 t14.5 35.5z" /> 156 <glyph unicode="" d="M1000 1800q12 -8 34.5 -21.5t96 -48t150.5 -61t192 -48t227 -21.5q0 -224 -38.5 -423t-100.5 -336.5t-136.5 -252.5t-149 -184.5t-136.5 -117.5t-101 -67l-38 -19q-9 4 -24.5 11.5t-63.5 38.5t-94 68.5t-109 103.5t-117.5 141.5t-109.5 185t-94 231t-63.5 282.5 t-24.5 338q112 0 225.5 20.5t195 50t147 59t98.5 50.5zM1000 1000h500q4 4 11 13t24 48t30 90t24 144t11 205q-20 4 -54.5 11.5t-126 30t-167 45t-150 54t-102.5 59.5v-700h-500q28 -112 90 -225.5t130 -195t132 -147t106 -98.5l42 -34v700z" /> 157 <glyph unicode="" d="M1600 1300v200h-1300v-200h1300zM1600 900v200h-1300v-200h1300zM1600 500v200h-1300v-200h1300z" /> 158 <glyph unicode="" d="M1000 1800q12 -8 34.5 -21.5t96 -48t150.5 -61t192 -48t227 -21.5q0 -224 -38.5 -423t-100.5 -336.5t-136.5 -252.5t-149 -184.5t-136.5 -117.5t-101 -67l-38 -19q-9 4 -24.5 11.5t-63.5 38.5t-94 68.5t-109 103.5t-117.5 141.5t-109.5 185t-94 231t-63.5 282.5 t-24.5 338q112 0 225.5 20.5t195 50t147 59t98.5 50.5z" /> 159 <glyph unicode="" d="M1495 1354l-354 -354l354 -354l-141 -141l-354 353l-353 -353l-142 142l353 353l-353 353l142 142l353 -353l354 353z" /> 160 <glyph unicode="" d="M1800 400h-1600v1200h1600v-1200zM705 1147q19 11 33 24q14 16 24 34q13 26 17 37q5 13 10 34l6 24q0 2 0.5 5t0.5 4q7 45 -4 90q-12 43 -46 72q-35 29 -86 29q-29 0 -56 -11q-26 -12 -41 -30q-17 -20 -27 -44t-12 -51q-1 -18 1 -55l2 -9q2 -11 6 -25q9 -30 10 -33 q6 -18 17 -37q13 -20 25 -33q15 -17 34 -25q19 -9 43 -9t43 9zM1700 1100v400h-500v-400h500zM662 1017l-138 88q-61 0 -114 -32q-53 -33 -81 -85q-29 -52 -29 -107v-125l20 -5q26 -8 55 -14q41 -10 80 -17q34 -7 100 -14q55 -6 107 -6q50 0 107 6q48 5 98 14q54 10 82 17 q16 3 34 8t20 5q13 4 21 6v125q0 55 -31 107q-32 53 -84 86q-53 33 -111 33zM1700 900v100h-500v-100h500zM1700 700v100h-500v-100h500zM1700 500v100h-1400v-100h1400z" /> 161 <glyph unicode="" d="M1800 200h-1600v1600h1600v-1600zM805 1247q19 11 33 24q14 16 24 34q13 26 17 37q5 13 10 34l6 24q0 2 0.5 5t0.5 4q7 45 -4 90q-12 43 -46 72q-35 29 -86 29q-29 0 -56 -11q-26 -12 -41 -30q-17 -20 -27 -44t-12 -51q-1 -18 1 -55l2 -9q2 -11 6 -25q9 -30 10 -33 q6 -18 17 -37q13 -20 25 -33q15 -17 34 -25q19 -9 43 -9t43 9zM1600 1500v100h-500v-100h500zM1600 1300v100h-500v-100h500zM762 1117l-138 88q-61 0 -114 -32q-53 -33 -81 -85q-29 -52 -29 -107v-125l20 -5q26 -8 55 -14q41 -10 80 -17q34 -7 100 -14q56 -6 107 -6 q50 0 107 6q48 5 98 14q54 10 82 17q16 3 34 8t20 5q13 4 21 6v125q0 55 -31 107q-32 53 -84 86q-53 33 -111 33zM1600 1100v100h-300v-100h300zM1600 900v100h-300v-100h300zM1600 600v100h-1200v-100h1200zM1600 400v100h-1200v-100h1200z" /> 162 <glyph unicode="" d="M730 1400l-3 19q-6 55 -3 108q3 56 25 104q22 50 52 86q33 39 83 60q52 23 113 23q103 0 171 -59q69 -60 91 -144q22 -85 9 -178l-3 -19q-1 -10 -11 -48q-7 -33 -20 -69q-13 -34 -34 -72q-18 -35 -47 -69q-25 -26 -67 -48q-39 -19 -86 -19q-46 0 -87 19q-42 21 -67 50 q-25 28 -49 66q-22 36 -34 73q-14 39 -21 67q-9 33 -12 50zM1650 776q50 -85 50 -214v-249q0 -4 -29 -13q-7 -2 -37 -10.5t-60 -16.5q-110 -24 -165 -34q-85 -15 -195 -27q-112 -12 -213 -12t-214 12q-90 8 -198 27q-44 8 -156 34q-43 10 -106 29l-27 11v249q0 134 46 215 q65 115 150 168q47 29 136 42t168 13l167 -167l-67 -133v-300l102 -108l98 108v300l-68 133l165 167q209 0 290 -52q96 -61 163 -172z" /> 163 <glyph unicode="" d="M1000 1900q153 0 282.5 -75.5t205 -204.5t75.5 -282q0 -52 -21 -118t-50.5 -123.5t-59.5 -107.5t-51 -79l-21 -30q-25 -33 -42.5 -86t-17.5 -94v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-400q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 -17.5 94t-42.5 86q-8 11 -21.5 30.5 t-48.5 77t-61.5 110.5t-48.5 120.5t-22 119.5q0 153 75 282t204.5 204.5t282.5 75.5zM700 313v87h600v-87q0 -53 -16 -83t-59 -30h-25q0 -46 -27.5 -73t-74.5 -27h-200q-46 0 -72 26.5t-26 73.5h-25q-43 0 -59 30t-16 83z" /> 164 <glyph unicode="" d="M1800 1100v-200h-1200l400 -400v-300l-800 800l800 800v-300l-400 -400h1200z" /> 165 <glyph unicode="" d="M1400 1500l-500 -500l500 -500v-300l-800 800l800 800v-300z" /> 166 <glyph unicode="" d="M1800 1000h-300l-400 400v-1200h-200v1200l-400 -400h-300l800 800z" /> 167 <glyph unicode="" d="M1500 600l-500 500l-500 -500h-300l800 800l800 -800h-300z" /> 168 <glyph unicode="" d="M1000 200v300l400 400h-1200v200h1200l-400 400v300l800 -800z" /> 169 <glyph unicode="" d="M600 500l500 500l-500 500v300l800 -800l-800 -800v300z" /> 170 <glyph unicode="" d="M1500 1000h300l-800 -800l-800 800h300l400 -400v1200h200v-1200z" /> 171 <glyph unicode="" d="M500 1400l500 -500l500 500h300l-800 -800l-800 800h300z" /> 172 <glyph unicode="" d="M1000 1800q163 0 311 -63.5t255 -170.5t170.5 -255t63.5 -311t-63.5 -311t-170.5 -255t-255 -170.5t-311 -63.5t-311 63.5t-255 170.5t-170.5 255t-63.5 311t63.5 311t170.5 255t255 170.5t311 63.5zM1100 1400q0 41 -29.5 70.5t-70.5 29.5t-70.5 -29.5t-29.5 -70.5 t29.5 -70.5t70.5 -29.5t70.5 29.5t29.5 70.5zM1100 500v600h-200v-600h200z" /> 173 <glyph horiz-adv-x="600" /> 174 </font> 175 </defs></svg> 176 No newline at end of file -
src/wp-admin/css/dashicons/dashicons.ttf
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
-
src/wp-admin/css/dashicons/dashicons.woff
Property changes on: src/wp-admin/css/dashicons/dashicons.ttf ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
-
src/wp-admin/css/dashicons.css
Property changes on: src/wp-admin/css/dashicons/dashicons.woff ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property
1 /* http://melchoyce.github.io/dashicons/ */ 2 /* https://github.com/melchoyce/dashicons */ 3 4 @font-face { 5 font-family: 'dashicons'; 6 src: url('../fonts/dashicons.eot'); 7 } 8 9 @font-face { 10 font-family: 'dashicons'; 11 src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), 12 url('../fonts/dashicons.ttf') format('truetype'), 13 url('../fonts/dashicons.svg#dashicons') format('svg'); 14 font-weight: normal; 15 font-style: normal; 16 } 17 No newline at end of file -
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 { 487 margin-left: 0;530 margin-left: left; 488 531 margin-right: 52px; 489 532 } 490 533 491 534 .auto-fold.wp-admin #wpfooter { 492 margin-left: 15px;535 margin-left: leftpx; 493 536 margin-right: 52px; 494 537 } 495 538 … … 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
61 61 62 62 #wpcontent, 63 63 #wpfooter { 64 margin-left: 1 65px;64 margin-left: 170px; 65 65 } 66 66 67 67 .folded #wpcontent, 68 68 .folded #wpfooter { 69 margin-left: 5 2px;69 margin-left: 56px; 70 70 } 71 71 72 72 #wpbody-content { 73 73 padding-bottom: 65px; 74 74 float: left; 75 75 width: 100%; 76 overflow: visible !important; 76 77 } 77 78 78 79 #adminmenuback, 79 80 #adminmenuwrap, 80 81 #adminmenu, 81 82 #adminmenu .wp-submenu { 82 width: 1 45px;83 width: 150px; 83 84 } 84 85 85 86 #adminmenuback { … … 91 92 92 93 #adminmenu { 93 94 clear: left; 94 margin: 0;95 margin: 12px 0 0; 95 96 padding: 0; 96 97 list-style: none; 97 98 } … … 100 101 .folded #adminmenuwrap, 101 102 .folded #adminmenu, 102 103 .folded #adminmenu li.menu-top { 103 width: 3 2px;104 width: 36px; 104 105 } 105 106 106 107 /* inner 2 column liquid layout */ … … 212 213 width: auto; 213 214 display: block; 214 215 font-size: 14px; 215 font-weight: bold;216 font-weight: 600; 216 217 padding: 15px 23px 14px; 217 218 background: #f1f1f1; 218 219 color: #21759b; … … 236 237 } 237 238 238 239 /* include margin and padding in the width calculation of input and textarea */ 240 input, 239 241 input[type="text"], 240 242 input[type="password"], 241 243 input[type="number"], … … 247 249 -webkit-box-sizing: border-box; 248 250 -ms-box-sizing: border-box; /* ie8 only */ 249 251 box-sizing: border-box; 252 -webkit-border-radius: 0; 253 border-radius: 0; 250 254 } 251 255 252 256 input[type="checkbox"], 253 257 input[type="radio"] { 254 vertical-align: text-top; 255 padding: 0; 256 margin: 1px 0 0; 258 border-width: 1px; 259 border-style: solid; 260 clear: none; 261 cursor: pointer; 262 display: inline-block; 263 line-height: 0; 264 height: 16px; 265 margin: -4px 4px 0 0; 266 outline: 0; 267 padding: 0 !important; 268 text-align: center; 269 vertical-align: middle; 270 width: 16px; 271 min-width: 16px; 272 -webkit-appearance: none; 273 -webkit-box-sizing: border-box; 274 box-sizing: border-box; 257 275 } 258 276 277 td > input[type="checkbox"], 278 .wp-admin p input[type=checkbox], 279 .wp-admin p input[type=radio] { 280 margin-top: 0; 281 } 282 283 .wp-admin p label input[type=checkbox] { 284 margin-top: -4px; 285 } 286 287 .wp-admin p label input[type=radio] { 288 margin-top: -2px; 289 } 290 291 input[type="checkbox"] { 292 border-radius: 0; 293 } 294 295 input[type=radio] { 296 border-radius: 50%; 297 margin-right: 4px; 298 line-height: 10px; 299 } 300 301 input[type=checkbox]:checked:before, 302 input[type=radio]:checked:before { 303 float: left; 304 display: inline-block; 305 vertical-align: middle; 306 width: 16px; 307 font: normal 21px/1 'dashicons'; 308 speak: none; 309 -webkit-font-smoothing: antialiased; 310 } 311 312 input[type=checkbox]:checked:before { 313 content: '\f147'; 314 margin: -3px 0 0 -4px; 315 } 316 317 input[type=radio]:checked:before { 318 content: '\2022'; 319 text-indent: -9999px; 320 border-radius: 50px; 321 font-size: 24px; 322 width: 6px; 323 height: 6px; 324 margin: 4px; 325 line-height: 16px; 326 } 327 328 @-moz-document url-prefix() { 329 input[type=checkbox], 330 input[type=radio], 331 .form-table input.tog { 332 margin-bottom: -1px; 333 } 334 } 335 336 /* Search */ 259 337 input[type="search"] { 260 338 -webkit-appearance: textfield; 261 339 } … … 273 351 } 274 352 275 353 body { 276 font-family: sans-serif;277 font-size: 1 2px;354 font-family: "Open Sans", sans-serif; 355 font-size: 13px; 278 356 line-height: 1.4em; 279 357 min-width: 600px; 280 358 } … … 309 387 line-height: inherit; 310 388 } 311 389 390 textarea { 391 overflow: auto; 392 } 393 394 textarea, 312 395 input, 313 396 select { 397 font-size: 14px; 398 padding: 3px 5px; 314 399 line-height: 15px; 315 400 } 316 401 402 textarea { 403 padding: 2px 6px; 404 line-height: 1.4; 405 } 406 317 407 a, 318 408 input[type="text"], 319 409 input[type="password"], … … 327 417 outline: 0; 328 418 } 329 419 420 .wp-admin input[type="file"] { 421 border: none; 422 background: none; 423 padding: 8px 0 0; 424 } 425 330 426 a:focus, 331 427 a:active { 332 428 outline: thin dotted; … … 351 447 content: none; 352 448 } 353 449 354 p { 450 p, 451 .wp_attachment_details label[for="content"] { 452 font-size: 13px; 453 line-height: 1.5; 355 454 margin: 1em 0; 356 455 } 357 456 … … 368 467 margin-bottom: 6px; 369 468 } 370 469 371 textarea,372 470 input, 373 471 select { 374 472 margin: 1px; 375 padding: 3px ;473 padding: 3px 5px; 376 474 } 377 475 378 476 h1, … … 382 480 h5, 383 481 h6 { 384 482 display: block; 385 font-weight: bold;483 font-weight: 600; 386 484 } 387 485 388 486 h1 { … … 396 494 } 397 495 398 496 h3 { 399 font-size: 1. 17em;497 font-size: 1.3em; 400 498 margin: 1em 0; 401 499 } 402 500 … … 458 556 font-family: Consolas, Monaco, monospace; 459 557 } 460 558 559 input.code { 560 padding-top: 6px; 561 } 562 563 textarea.code { 564 line-height: 1.4; 565 padding: 4px 6px 1px 6px; 566 } 567 461 568 kbd, 462 569 code { 463 padding: 1px 3px;570 padding: 3px 5px 2px 5px; 464 571 margin: 0 1px; 465 font-size: 1 1px;572 font-size: 13px; 466 573 } 467 574 468 575 .subsubsub { 469 576 list-style: none; 470 margin: 8px 0 5px;577 margin: 8px 0 0; 471 578 padding: 0; 472 font-size: 1 2px;579 font-size: 13px; 473 580 float: left; 474 581 } 475 582 … … 486 593 } 487 594 488 595 .subsubsub a.current { 489 font-weight: bold;596 font-weight: 600; 490 597 border: none; 491 598 } 492 599 … … 497 604 white-space: nowrap; 498 605 } 499 606 500 .widefat,501 div.updated,502 div.error,503 .wrap .add-new-h2,504 607 textarea, 505 608 input[type="text"], 506 609 input[type="password"], … … 511 614 input[type="tel"], 512 615 input[type="url"], 513 616 select, 514 .tablenav .tablenav-pages a,515 617 .tablenav-pages span.current, 516 618 #titlediv #title, 517 .postbox,518 619 #postcustomstuff table, 519 620 #postcustomstuff input, 520 621 #postcustomstuff textarea, 521 622 .imgedit-menu div, 522 623 .plugin-update-tr .update-message, 523 624 #poststuff .inside .the-tagcloud, 524 .login form,525 #login_error,526 .login .message,527 #menu-management .menu-edit,528 625 .nav-menus-php .list-container, 529 626 .menu-item-handle, 530 627 .link-to-original, 531 628 .nav-menus-php .major-publishing-actions .form-invalid, 532 .press-this #message,533 629 #TB_window, 534 630 .tbtitle, 535 631 .highlight, 536 .feature-filter,537 #widget-list .widget-top,538 632 .editwidget .widget-inside { 539 -webkit-border-radius: 3px;540 border-radius: 3px;541 633 border-width: 1px; 542 634 border-style: solid; 543 635 } … … 558 650 text-decoration: none; 559 651 } 560 652 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 653 .widefat td, 579 654 .widefat th { 580 border-width: 1px 0; 581 border-style: solid; 655 padding: 8px 10px; 582 656 } 583 657 .widefat tfoot th { 584 658 border-bottom: none; … … 589 663 } 590 664 591 665 .widefat td { 592 font-size: 12px;593 padding: 4px 7px 2px;594 666 vertical-align: top; 595 667 } 596 668 669 .widefat td, 597 670 .widefat td p, 598 671 .widefat td ol, 599 672 .widefat td ul { 600 font-size: 12px; 673 font-size: 13px; 674 line-height: 1.5em; 601 675 } 602 676 603 677 .widefat th { 604 padding: 7px 7px 8px;605 678 text-align: left; 606 679 line-height: 1.3em; 607 680 font-size: 14px; … … 619 692 vertical-align: top; 620 693 } 621 694 695 .widefat th input[type=checkbox] { 696 margin-top: -1px; 697 } 698 622 699 .widefat tbody th.check-column { 623 700 padding: 9px 0 22px; 624 701 } … … 627 704 padding-top: 8px; 628 705 } 629 706 630 .widefat thead .check-column, 631 .widefat tfoot .check-column { 632 padding: 10px 0 0; 707 .widefat thead th.check-column, 708 .widefat tbody th.check-column, 709 .widefat tfoot th.check-column { 710 padding: 11px 0 0 3px; 633 711 } 634 712 713 .widefat thead th.check-column { 714 padding-top: 10px; 715 } 716 717 #update-plugins-table tbody th.check-column, 718 .plugins tbody th.check-column, 719 .plugins tbody, 720 .plugins .inactive.update th.check-column { 721 padding: 8px 0 0 2px; 722 } 723 724 .plugins tbody th.check-column input[type=checkbox] { 725 margin-top: 4px; 726 } 727 728 #update-plugins-table tbody td p { 729 margin-top: 0; 730 } 731 732 #update-plugins-table tbody td p strong { 733 font-size: 14px; 734 } 735 736 .plugins thead th.check-column, 737 .plugins tfoot th.check-column, 738 .plugins .inactive th.check-column, 739 #update-plugins-table thead th.check-column, 740 #update-plugins-table tfoot th.check-column { 741 padding-left: 6px; 742 } 743 744 #update-plugins-table thead th.check-column, 745 #update-plugins-table tfoot th.check-column { 746 padding-top: 11px; 747 } 748 749 .update-php div.updated, 750 .update-php div.error { 751 margin-left: 0; 752 } 753 635 754 .no-js .widefat thead .check-column input, 636 755 .no-js .widefat tfoot .check-column input { 637 756 display: none; … … 649 768 } 650 769 651 770 .wrap { 652 margin: 4px 15px 0 0;771 margin: 10px 20px 0 2px; 653 772 } 654 773 655 774 div.updated, … … 670 789 margin: 5px 0 15px; 671 790 } 672 791 792 div.updated, 793 .login .message, 794 .press-this #message { 795 border: none; 796 padding: 1px 12px; 797 } 798 799 div.error, 800 .login #login_error { 801 border: none; 802 } 803 804 div.error { 805 padding: 1px 12px; 806 } 807 673 808 .wrap h2, 674 809 .subtitle { 675 810 font-weight: normal; 676 811 margin: 0; 677 text-shadow: #fff 0 1px 0;678 812 } 679 813 680 814 .wrap h2 { 681 815 font-size: 23px; 816 font-weight: 400; 682 817 padding: 9px 15px 4px 0; 683 818 line-height: 29px; 684 819 } … … 688 823 padding-left: 25px; 689 824 } 690 825 691 .wrap .add-new-h2 { 692 font-family: sans-serif; 826 .wrap .add-new-h2, 827 .wrap .add-new-h2:active, 828 #add-new-comment a { 829 font-family: "Open Sans", sans-serif; 693 830 margin-left: 4px; 694 padding: 3px 8px;831 padding: 4px 8px; 695 832 position: relative; 696 833 top: -3px; 697 834 text-decoration: none; 698 font-size: 12px; 699 border: 0 none; 835 border: none; 836 border-radius: 2px; 837 text-shadow: none; 838 font-weight: 600; 839 font-size: 13px; 700 840 } 701 841 702 842 .wrap h2.long-header { … … 778 918 .widefat th, 779 919 .quicktags, 780 920 .search { 781 font-family: Georgia, "Times New Roman", "Bitstream Charter", Times,serif;921 font-family: "Open Sans", sans-serif; 782 922 } 783 923 924 .widget .widget-top, 925 .postbox h3, 926 .stuffbox h3, 927 .control-section .accordion-section-title, 928 h3.dashboard-widget-title, 929 h3.dashboard-widget-title span, 930 h3.dashboard-widget-title small, 931 .sidebar-name, 932 #nav-menu-header, 933 #nav-menu-footer, 934 .menu-item-handle, 935 .checkbox, 936 .side-info, 937 #your-profile #rich_editing, 938 .widefat thead th, 939 .widefat tfoot th { 940 line-height: 1.4em; 941 } 942 784 943 h2 .nav-tab, 785 944 .wrap h2, 786 945 .subtitle, 787 946 .login form .input { 788 font-family: " HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;947 font-family: "Open Sans", sans-serif; 789 948 } 790 949 791 950 .quicktags, … … 794 953 } 795 954 796 955 .icon32 { 797 float: left; 798 height: 34px; 799 margin: 7px 8px 0 0; 800 width: 36px; 956 display: none; 801 957 } 802 958 803 959 .icon16 { … … 808 964 float: left; 809 965 } 810 966 967 /* New Menu icons */ 968 969 .icon16:before { 970 font: normal 20px/1 'dashicons' !important; 971 speak: none; 972 padding: 6px 0; 973 height: 34px; 974 width: 20px; 975 display: inline-block; 976 -webkit-font-smoothing: antialiased; 977 -webkit-transition: all .1s ease-in-out; 978 -moz-transition: all .1s ease-in-out; 979 transition: all .1s ease-in-out; 980 } 981 982 .icon16.icon-dashboard:before, 983 #adminmenu .menu-icon-dashboard div.wp-menu-image:before { 984 content: '\f226'; 985 } 986 987 .icon16.icon-post:before, 988 #adminmenu .menu-icon-post div.wp-menu-image:before { 989 content: '\f109'; 990 } 991 992 .icon16.icon-media:before, 993 #adminmenu .menu-icon-media div.wp-menu-image:before { 994 content: '\f104'; 995 } 996 997 .icon16.icon-links:before, 998 #adminmenu .menu-icon-links div.wp-menu-image:before { 999 content: '\f103'; 1000 } 1001 1002 .icon16.icon-page:before, 1003 #adminmenu .menu-icon-page div.wp-menu-image:before { 1004 content: '\f105'; 1005 } 1006 1007 .icon16.icon-comments:before, 1008 #adminmenu .menu-icon-comments div.wp-menu-image:before { 1009 content: '\f101'; 1010 margin-top: 1px; 1011 } 1012 1013 .icon16.icon-appearance:before, 1014 #adminmenu .menu-icon-appearance div.wp-menu-image:before { 1015 content: '\f100'; 1016 } 1017 1018 .icon16.icon-plugins:before, 1019 #adminmenu .menu-icon-plugins div.wp-menu-image:before { 1020 content: '\f106'; 1021 } 1022 1023 .icon16.icon-users:before, 1024 #adminmenu .menu-icon-users div.wp-menu-image:before { 1025 content: '\f110'; 1026 } 1027 1028 .icon16.icon-tools:before, 1029 #adminmenu .menu-icon-tools div.wp-menu-image:before { 1030 content: '\f107'; 1031 } 1032 1033 .icon16.icon-settings:before, 1034 #adminmenu .menu-icon-settings div.wp-menu-image:before { 1035 content: '\f108'; 1036 } 1037 1038 .icon16.icon-site:before, 1039 #adminmenu .menu-icon-site div.wp-menu-image:before { 1040 content: '\f112' 1041 } 1042 1043 .icon16.icon-generic:before, 1044 #adminmenu .menu-icon-generic div.wp-menu-image:before { 1045 content: '\f111'; 1046 } 1047 1048 /* hide background-image for icons above */ 1049 .icon16.icon-dashboard, 1050 .menu-icon-dashboard div.wp-menu-image, 1051 .icon16.icon-post, 1052 .menu-icon-post div.wp-menu-image, 1053 .icon16.icon-media, 1054 .menu-icon-media div.wp-menu-image, 1055 .icon16.icon-links, 1056 .menu-icon-links div.wp-menu-image, 1057 .icon16.icon-page, 1058 .menu-icon-page div.wp-menu-image, 1059 .icon16.icon-comments, 1060 .menu-icon-comments div.wp-menu-image, 1061 .icon16.icon-appearance, 1062 .menu-icon-appearance div.wp-menu-image, 1063 .icon16.icon-plugins, 1064 .menu-icon-plugins div.wp-menu-image, 1065 .icon16.icon-users, 1066 .menu-icon-users div.wp-menu-image, 1067 .icon16.icon-tools, 1068 .menu-icon-tools div.wp-menu-image, 1069 .icon16.icon-settings, 1070 .menu-icon-settings div.wp-menu-image, 1071 .icon16.icon-site, 1072 .menu-icon-site div.wp-menu-image, 1073 .icon16.icon-generic, 1074 .menu-icon-generic div.wp-menu-image { 1075 background-image: none !important; 1076 } 1077 811 1078 .key-labels label { 812 1079 line-height: 24px; 813 1080 } 814 1081 1082 strong, b { 1083 font-weight: 600; 1084 } 1085 815 1086 .pre { 816 1087 /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ 817 1088 white-space: pre-wrap; /* css-3 */ … … 821 1092 .howto { 822 1093 font-style: italic; 823 1094 display: block; 824 font-family: sans-serif;1095 font-family: "Open Sans", sans-serif; 825 1096 } 826 1097 827 1098 p.install-help { … … 840 1111 841 1112 .wp-admin select { 842 1113 padding: 2px; 843 height: 2em; 1114 line-height: 28px; 1115 height: 28px; 844 1116 } 845 1117 1118 .meta-box-sortables select { 1119 max-width: 100%; 1120 } 1121 846 1122 .wp-admin select[multiple] { 847 1123 height: auto; 848 1124 } … … 860 1136 text-decoration: none; 861 1137 } 862 1138 1139 p.submit { 1140 text-align: left; 1141 max-width: 100%; 1142 margin-top: 20px; 1143 padding-top: 10px; 1144 } 1145 1146 .textright p.submit { 1147 border: none; 1148 text-align: right; 1149 } 1150 1151 table.form-table + p.submit, 1152 table.form-table + input + p.submit, 1153 table.form-table + input + input + p.submit { 1154 border-top: none; 1155 padding-top: 0; 1156 } 1157 1158 table.widefat span.delete a:hover, 1159 table.widefat span.trash a:hover, 1160 table.widefat span.spam a:hover, 1161 #dashboard_recent_comments .delete a:hover, 1162 #dashboard_recent_comments .trash a:hover, 1163 #dashboard_recent_comments .spam a:hover, 1164 .plugins a.delete:hover, 1165 #all-plugins-table .plugins a.delete:hover, 1166 #search-plugins-table .plugins a.delete:hover, 1167 .submitbox .submitdelete:hover, 1168 #media-items a.delete:hover, 1169 #media-items a.delete-permanently:hover, 1170 #nav-menu-footer .menu-delete:hover { 1171 text-decoration: none; 1172 border: none; 1173 } 1174 863 1175 #minor-publishing-actions input, 864 1176 #major-publishing-actions input, 865 1177 #minor-publishing-actions .preview { … … 883 1195 884 1196 input.small-text { 885 1197 width: 50px; 1198 padding: 1px 6px; 886 1199 } 887 1200 888 1201 input[type="number"].small-text { 889 width: 6 0px;1202 width: 65px; 890 1203 } 891 1204 892 1205 #doaction, … … 924 1237 vertical-align: middle; 925 1238 } 926 1239 1240 fieldset label, 1241 #your-profile label + a { 1242 vertical-align: middle; 1243 } 1244 1245 .options-media-php label[for*="_size_"], 927 1246 #misc-publishing-actions label { 928 1247 vertical-align: baseline; 929 1248 } 930 1249 1250 #misc-publishing-actions label[for="post_status"]:before { 1251 content: '\f173'; 1252 display: inline-block; 1253 font: normal 20px/1 'dashicons'; 1254 speak: none; 1255 left: -1px; 1256 padding: 0 5px 0 0; 1257 position: relative; 1258 top: 0; 1259 text-decoration: none !important; 1260 vertical-align: top; 1261 1262 -webkit-font-smoothing: antialiased; 1263 } 1264 931 1265 #pass-strength-result { 932 1266 border-style: solid; 933 1267 border-width: 1px; … … 951 1285 #search-plugins input[name="s"], 952 1286 .tagsdiv .newtag { 953 1287 float: left; 954 height: 2 em;1288 height: 28px; 955 1289 margin: 0 4px 0 0; 956 1290 } 957 1291 … … 1002 1336 ------------------------------------------------------------------------------*/ 1003 1337 1004 1338 #major-publishing-actions { 1005 padding: 10px 10px 8px;1339 padding: 10px; 1006 1340 clear: both; 1007 border-top: 1px solid # f5f5f5;1008 margin-top: -2px;1341 border-top: 1px solid #dedede; 1342 background: #f5f5f5; 1009 1343 } 1010 1344 1011 1345 #delete-action { 1012 line-height: 2 5px;1346 line-height: 28px; 1013 1347 vertical-align: middle; 1014 1348 text-align: left; 1015 1349 float: left; … … 1031 1365 1032 1366 .misc-pub-section { 1033 1367 padding: 6px 10px 8px; 1034 border-width: 1px 0;1035 border-style: solid;1036 1368 } 1037 1369 1038 1370 .misc-pub-section:first-child { … … 1044 1376 } 1045 1377 1046 1378 #minor-publishing-actions { 1047 padding: 10px 10px 2px 8px;1379 padding: 10px 10px 0 10px; 1048 1380 text-align: right; 1049 1381 } 1050 1382 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 1383 #save-post { 1059 1384 float: left; 1060 1385 } … … 1110 1435 1111 1436 #update-nag, 1112 1437 .update-nag { 1438 display: inline-block; 1113 1439 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; 1440 padding: 11px 15px; 1441 font-size: 14px; 1442 text-align: left; 1443 margin: 25px 20px 0 2px; 1124 1444 } 1125 1445 1126 1446 .plugins .plugin-update { … … 1129 1449 1130 1450 .plugin-update .update-message { 1131 1451 margin: 0 10px 8px 31px; 1132 font-weight: bold;1452 font-weight: 600; 1133 1453 } 1134 1454 1135 1455 ul#dismissed-updates { … … 1163 1483 margin-left: 2em; 1164 1484 } 1165 1485 1486 /*------------------------------------------------------------------------------ 1487 5.0 - TinyMCE 1488 ------------------------------------------------------------------------------*/ 1166 1489 1490 /* nothing? */ 1491 1167 1492 /*------------------------------------------------------------------------------ 1168 1493 6.0 - Admin Header 1169 1494 ------------------------------------------------------------------------------*/ … … 1187 1512 1188 1513 #contextual-help-wrap { 1189 1514 overflow: auto; 1515 margin-left: 0 !important; 1190 1516 } 1191 1517 1192 1518 #screen-meta .screen-reader-text { … … 1194 1520 } 1195 1521 1196 1522 #screen-meta-links { 1197 margin: 0 2 4px 0 0;1523 margin: 0 20px 0 0; 1198 1524 } 1199 1525 1200 1526 #screen-meta-links a:focus { … … 1206 1532 /* screen options and help tabs revert */ 1207 1533 #screen-meta { 1208 1534 display: none; 1535 font-size: 14px; 1536 margin: 0 20px -1px 0px; 1209 1537 position: relative; 1210 margin: 0 15px 0 5px;1211 border-width: 0 1px 1px;1212 border-style: none solid solid;1213 1538 } 1214 1539 1215 1540 #screen-options-link-wrap, 1216 1541 #contextual-help-link-wrap { 1217 1542 float: right; 1218 1543 height: 23px; 1219 padding: 0;1544 padding: 3px 6px; 1220 1545 margin: 0 0 0 6px; 1221 font-family: sans-serif;1546 font-family: "Open Sans", sans-serif; 1222 1547 } 1223 1548 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 1549 #screen-meta-links .screen-meta-toggle { 1234 1550 position: relative; 1235 top: -1px;1551 top: 0; 1236 1552 } 1237 1553 1238 1554 #screen-meta-links a.show-settings { 1555 display: block; 1556 font-size: 13px; 1557 height: 22px; 1558 line-height: 22px; 1559 padding: 1px 0 0 10px; 1239 1560 text-decoration: none; 1240 1561 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 1562 } 1248 1563 1564 #screen-meta-links a:after { 1565 right: 0; 1566 content: '\f140'; 1567 font: normal 20px/1 'dashicons'; 1568 speak: none; 1569 display: inline-block; 1570 padding: 0 5px 0 0; 1571 bottom: 2px; 1572 position: relative; 1573 vertical-align: bottom; 1574 -webkit-font-smoothing: antialiased; 1575 text-decoration: none !important; 1576 } 1577 1578 #screen-meta-links a.screen-meta-active:after { 1579 content: '\f142'; 1580 } 1581 1249 1582 #screen-meta-links a.show-settings:hover { 1250 1583 text-decoration: none; 1251 1584 } … … 1273 1606 .metabox-prefs label { 1274 1607 display: inline-block; 1275 1608 padding-right: 15px; 1276 white-space: nowrap;1277 1609 line-height: 30px; 1278 1610 } 1279 1611 1612 .metabox-prefs label input[type=checkbox] { 1613 margin-top: -4px; 1614 margin-right: 6px; 1615 } 1616 1280 1617 .metabox-prefs label input { 1281 1618 margin: 0 5px 0 2px; 1282 1619 } … … 1295 1632 1296 1633 #contextual-help-wrap { 1297 1634 padding: 0; 1298 margin-left: -4px;1299 1635 } 1300 1636 1301 1637 #contextual-help-columns { … … 1334 1670 margin-bottom: 0; 1335 1671 list-style-type: none; 1336 1672 border-style: solid; 1337 border-width: 1px 0;1673 border-width: 0 0 0 2px; 1338 1674 border-color: transparent; 1339 1675 } 1340 1676 … … 1343 1679 padding: 5px 5px 5px 12px; 1344 1680 line-height: 18px; 1345 1681 text-decoration: none; 1682 border-style: solid; 1683 border-width: 1px 0 1px 0; 1684 border-color: transparent; 1346 1685 } 1347 1686 1348 1687 .contextual-help-tabs .active { 1349 1688 padding: 0; 1350 1689 margin: 0 -1px 0 0; 1351 border-width: 1px 0 1px 1px;1690 border-width: 0 0 0 2px; 1352 1691 border-style: solid; 1353 1692 } 1354 1693 … … 1384 1723 7.0 - Main Navigation (Left Menu) 1385 1724 ------------------------------------------------------------------------------*/ 1386 1725 1387 #adminmenuback,1388 1726 #adminmenuwrap { 1389 border-width: 0 1px 0 0;1390 border-style: solid;1391 }1392 1393 #adminmenuwrap {1394 1727 position: relative; 1395 1728 float: left; 1396 1729 } … … 1424 1757 } 1425 1758 1426 1759 #adminmenu li.menu-top { 1427 min-height: 28px; 1760 border: none; 1761 min-height: 34px; 1428 1762 position: relative; 1429 1763 } 1430 1764 1431 1765 #adminmenu .wp-submenu { 1432 1766 list-style: none; 1433 padding: 4px 0;1434 margin: 0;1435 1767 position: absolute; 1436 1768 top: -1000em; 1437 left: 146px; 1438 z-index: 1000; 1769 left: 150px; 1439 1770 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; 1771 word-wrap: break-word; 1446 1772 } 1447 1773 1774 #adminmenu .wp-submenu, 1775 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1776 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1777 padding: 7px 0 8px; 1778 z-index: 9999; 1779 } 1780 1448 1781 .js #adminmenu .sub-open, 1449 1782 .js #adminmenu .opensub .wp-submenu, 1450 1783 #adminmenu a.menu-top:focus + .wp-submenu, … … 1464 1797 right: auto; 1465 1798 bottom: auto; 1466 1799 border: 0 none; 1467 1800 margin-top: 0; 1468 1801 -webkit-box-shadow: none; 1469 1802 box-shadow: none; 1470 1803 } … … 1476 1809 .folded #adminmenu a.menu-top:focus + .wp-submenu, 1477 1810 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, 1478 1811 .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { 1479 top: -1px;1480 left: 3 2px;1812 top: 0; 1813 left: 36px; 1481 1814 } 1482 1815 1483 1816 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1484 1817 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1485 border-width: 1px;1486 border-style: solid;1487 1818 position: absolute; 1488 1819 top: -1000em; 1489 1820 } 1490 1821 1822 #adminmenu .wp-not-current-submenu .wp-submenu, 1823 .folded #adminmenu .wp-has-current-submenu .wp-submenu { 1824 min-width: 150px; 1825 width: auto; 1826 } 1827 1491 1828 #adminmenu .wp-submenu a { 1492 font-size: 1 2px;1493 line-height: 1 8px;1829 font-size: 13px; 1830 line-height: 1.2; 1494 1831 margin: 0; 1495 padding -left: 12px;1832 padding: 6px 0; 1496 1833 } 1497 1834 1498 #adminmenu .wp-not-current-submenu li > a { 1499 padding-left: 16px; 1835 #adminmenu .wp-not-current-submenu li > a, 1836 .folded #adminmenu .wp-has-current-submenu li > a { 1837 padding-right: 16px; 1838 padding-left: 14px; 1839 -moz-transition: all .1s ease-in-out; 1840 -webkit-transition: all .1s ease-in-out; 1841 transition: all .1s ease-in-out; 1500 1842 } 1501 1843 1502 1844 #adminmenu .wp-has-current-submenu ul > li > a, 1503 1845 .folded #adminmenu li.menu-top .wp-submenu > li > a { 1504 padding -left:12px;1846 padding: 6px 12px; 1505 1847 } 1506 1848 1507 1849 #adminmenu a.menu-top, 1508 1850 #adminmenu .wp-submenu-head { 1509 font-size: 1 3px;1510 font-weight: bold;1851 font-size: 14px; 1852 font-weight: 400; 1511 1853 line-height: 18px; 1512 1854 padding: 0; 1513 1855 } … … 1527 1869 overflow: hidden; 1528 1870 } 1529 1871 1530 #adminmenu a.menu-top {1531 border-width: 1px 0;1532 border-style: solid none;1533 }1534 1535 1872 #adminmenu .wp-menu-image img { 1536 padding: 7px 0 0 7px;1873 padding: 9px 0 0 0px; 1537 1874 opacity: 0.6; 1538 1875 filter: alpha(opacity=60); 1539 1876 } 1540 1877 1541 1878 #adminmenu div.wp-menu-name { 1542 padding: 5px;1879 padding: 8px 12px 8px 0; 1543 1880 } 1544 1881 1545 1882 #adminmenu div.wp-menu-image { 1546 1883 float: left; 1547 width: 28px; 1548 height: 28px; 1884 width: 34px; 1885 height: 30px; 1886 margin: 0; 1887 text-align: center; 1549 1888 } 1550 1889 1890 div.wp-menu-image:before { 1891 font: normal 20px/1 'dashicons' !important; 1892 speak: none; 1893 color: #999; 1894 padding: 8px 0; 1895 height: 34px; 1896 width: 20px; 1897 display: inline-block; 1898 -webkit-font-smoothing: antialiased; 1899 -moz-transition: all .1s ease-in-out; 1900 -webkit-transition: all .1s ease-in-out; 1901 transition: all .1s ease-in-out; 1902 } 1903 1551 1904 .folded #adminmenu div.wp-menu-image { 1552 width: 32px; 1905 width: 34px; 1906 height: 30px; 1553 1907 position: absolute; 1554 1908 z-index: 25; 1555 1909 } 1556 1910 1557 1911 .folded #adminmenu a.menu-top { 1558 height: 28px;1912 height: 34px; 1559 1913 } 1560 1914 1915 /* A new arrow */ 1916 1561 1917 .wp-menu-arrow { 1562 z-index: 25; 1563 position: absolute; 1564 right: 100%; 1565 margin: 0; 1566 height: 30px; 1567 width: 6px; 1918 display: none !important; 1919 } 1568 1920 1569 -moz-transform: translate( 146px ); 1570 -webkit-transform: translate( 146px ); 1571 -o-transform: translate( 146px ); 1572 -ms-transform: translate( 146px ); 1573 transform: translate( 146px ); 1921 ul#adminmenu a.wp-has-current-submenu { 1922 position: relative; 1574 1923 } 1575 1924 1576 #adminmenu .wp-menu-arrow div { 1577 display: none; 1925 ul#adminmenu a.wp-has-current-submenu:after, 1926 ul#adminmenu > li.current > a.current:after { 1927 right: 0; 1928 border: solid transparent; 1929 content: " "; 1930 height: 0; 1931 width: 0; 1578 1932 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 ); 1933 pointer-events: none; 1934 border-width: 8px; 1935 top: 50%; 1936 margin-top: -8px; 1589 1937 } 1590 1938 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; 1939 .folded ul#adminmenu li:hover a.wp-has-current-submenu:after { 1940 display: none; 1601 1941 } 1602 1942 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 ); 1943 .folded ul#adminmenu a.wp-has-current-submenu:after, 1944 .folded ul#adminmenu > li a.current:after { 1945 border-width: 4px; 1946 margin-top: -4px; 1609 1947 } 1610 1948 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; 1949 /* flyout menu arrow */ 1950 #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 1951 right: 0; 1952 border: solid transparent; 1953 content: " "; 1954 height: 0; 1955 width: 0; 1956 position: absolute; 1957 pointer-events: none; 1958 border-width: 8px; 1959 top: 10px; 1960 z-index: 10000; 1621 1961 } 1622 1962 1623 #adminmenu li.current .wp-menu-arrow, 1624 #adminmenu li.wp-menu-open .wp-menu-arrow { 1625 top: 0; 1963 .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 1964 border-width: 4px; 1965 margin-top: -4px; 1966 top: 18px; 1626 1967 } 1627 1968 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; 1969 /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ 1970 #adminmenu li.menu-top:hover, 1971 #adminmenu li.opensub > a.menu-top, 1972 #adminmenu li > a.menu-top:focus { 1973 position: relative; 1632 1974 } 1633 1975 1634 .ie8 #adminmenu li.menu-top:hover .wp-menu-arrow { 1635 display: none; 1976 .folded #adminmenu li.menu-top:hover, 1977 .folded #adminmenu li.opensub > a.menu-top, 1978 .folded #adminmenu li > a.menu-top:focus { 1979 z-index: 10000; 1636 1980 } 1637 1981 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 1982 #adminmenu li.menu-top:hover .wp-menu-image img, 1660 1983 #adminmenu li.wp-has-current-submenu .wp-menu-image img { 1661 1984 opacity: 1; … … 1665 1988 #adminmenu li.wp-menu-separator { 1666 1989 height: 3px; 1667 1990 padding: 0; 1668 margin: 0 ;1991 margin: 0 0 6px 0; 1669 1992 border-width: 1px 0; 1670 1993 border-style: solid; 1671 1994 cursor: inherit; … … 1679 2002 } 1680 2003 1681 2004 #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; 2005 font-weight: 400; 2006 font-size: 14px; 2007 padding: 8px 4px 8px 11px; 2008 margin: -7px 0px 4px; 1688 2009 } 1689 2010 1690 #adminmenu li.wp-menu-open {1691 border-width: 0 0 1px;1692 border-style: solid;1693 }1694 1695 2011 #adminmenu li.current, 1696 2012 .folded #adminmenu li.wp-menu-open { 1697 2013 border: 0 none; 1698 2014 } 1699 2015 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 2016 #adminmenu .awaiting-mod, 1709 2017 #adminmenu span.update-plugins, 1710 2018 #sidemenu li a span.update-plugins { 1711 2019 position: absolute; 1712 font-family: sans-serif;2020 font-family: "Open Sans", sans-serif; 1713 2021 font-size: 9px; 1714 2022 line-height: 17px; 1715 font-weight: bold;2023 font-weight: 600; 1716 2024 margin-top: 1px; 1717 2025 margin-left: 7px; 1718 2026 -webkit-border-radius: 10px; … … 1720 2028 z-index: 26; 1721 2029 } 1722 2030 2031 #adminmenu .wp-submenu .update-plugins { 2032 margin-top: 0; 2033 } 2034 1723 2035 #adminmenu li .awaiting-mod span, 1724 2036 #adminmenu li span.update-plugins span, 1725 2037 #sidemenu li a span.update-plugins span { … … 1732 2044 display: none; 1733 2045 } 1734 2046 1735 # collapse-menu {1736 font-size: 1 2px;2047 #adminmenu #collapse-menu { 2048 font-size: 13px; 1737 2049 line-height: 34px; 1738 border-width: 1px 0 0; 1739 border-style: solid; 2050 margin-top: 10px; 1740 2051 } 1741 2052 1742 2053 .folded #collapse-menu span { … … 1751 2062 1752 2063 #collapse-button { 1753 2064 float: left; 1754 margin: 8px 6px; 1755 border-width: 1px; 1756 border-style: solid; 2065 height: 15px; 2066 margin: 10px 8px 10px 11px; 2067 width: 15px; 2068 1757 2069 -webkit-border-radius: 10px; 1758 2070 border-radius: 10px; 1759 2071 } 1760 2072 2073 #wpwrap #collapse-button div { 2074 padding: 0; 2075 } 2076 2077 #collapse-button div:after { 2078 content: '\f148'; 2079 display: block; 2080 line-height: 15px; 2081 left: -3px; 2082 top: -3px; 2083 font: normal 20px/1 'dashicons' !important; 2084 speak: none; 2085 margin: 0 auto; 2086 padding: 0 !important; 2087 position: relative; 2088 text-align: center; 2089 width: 20px; 2090 -moz-transition: all .1s ease-in-out; 2091 -webkit-transition: all .1s ease-in-out; 2092 transition: all .1s ease-in-out; 2093 2094 -webkit-font-smoothing: antialiased; 2095 } 2096 2097 .folded #collapse-button div:after { 2098 -ms-transform: rotate(180deg); 2099 -webkit-transform: rotate(180deg); 2100 transform: rotate(180deg); 2101 } 2102 2103 1761 2104 /* Auto-folding of the admin menu */ 1762 2105 @media only screen and (max-width: 900px) { 1763 2106 .auto-fold #wpcontent, 1764 2107 .auto-fold #wpfooter { 1765 margin-left: 5 2px;2108 margin-left: 56px; 1766 2109 } 1767 2110 1768 2111 .auto-fold #adminmenuback, 1769 2112 .auto-fold #adminmenuwrap, 1770 2113 .auto-fold #adminmenu, 1771 2114 .auto-fold #adminmenu li.menu-top { 1772 width: 3 2px;2115 width: 36px; 1773 2116 } 1774 2117 1775 2118 .auto-fold #adminmenu .wp-submenu.sub-open, … … 1778 2121 .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 1779 2122 .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, 1780 2123 .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { 1781 top: -1px;1782 left: 3 2px;2124 top: 0px; 2125 left: 36px; 1783 2126 } 1784 2127 1785 2128 .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, 1786 2129 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 1787 border-width: 1px;1788 border-style: solid;1789 2130 position: absolute; 1790 2131 top: -1000em; 2132 margin-right: -1px; 2133 padding: 7px 0 8px; 2134 z-index: 9999; 1791 2135 } 1792 2136 2137 .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { 2138 min-width: 150px; 2139 width: auto; 2140 } 2141 2142 .auto-fold #adminmenu .wp-has-current-submenu li > a { 2143 padding-right: 16px; 2144 padding-left: 14px; 2145 } 2146 2147 1793 2148 .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { 1794 2149 padding-left: 12px; 1795 2150 } … … 1803 2158 } 1804 2159 1805 2160 .auto-fold #adminmenu div.wp-menu-image { 1806 width: 32px; 2161 height: 30px; 2162 width: 34px; 1807 2163 position: absolute; 1808 2164 z-index: 25; 1809 2165 } 1810 2166 1811 2167 .auto-fold #adminmenu a.menu-top { 1812 height: 28px;2168 height: 34px; 1813 2169 } 1814 2170 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 ); 2171 .auto-fold #adminmenu li.wp-menu-open { 2172 border: 0 none; 1821 2173 } 1822 2174 1823 .auto-fold #adminmenu li .wp-menu-arrow div{1824 display: none;2175 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 2176 margin-bottom: 0; 1825 2177 } 1826 2178 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; 2179 .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after { 2180 display: none; 1833 2181 } 1834 2182 1835 .auto-fold #adminmenu li.wp-menu-open { 1836 border: 0 none; 2183 .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after { 2184 border-width: 4px; 2185 margin-top: -4px; 2186 top: 16px; 1837 2187 } 1838 2188 1839 .auto-fold #adminmenu li.wp-has-current-submenu { 1840 margin-bottom: 1px; 2189 .auto-fold ul#adminmenu a.wp-has-current-submenu:after, 2190 .auto-fold ul#adminmenu > li a.current:after { 2191 border-width: 4px; 2192 margin-top: -4px; 1841 2193 } 1842 2194 1843 .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { 1844 margin-bottom: 0; 2195 .auto-fold #adminmenu li.menu-top:hover, 2196 .auto-fold #adminmenu li.opensub > a.menu-top, 2197 .auto-fold #adminmenu li > a.menu-top:focus { 2198 z-index: 10000; 1845 2199 } 1846 2200 1847 2201 .auto-fold #collapse-menu span { 1848 2202 display: none; 1849 2203 } 1850 2204 2205 .auto-fold #collapse-button div { 2206 background: none; 2207 } 2208 2209 .auto-fold #collapse-button div:after { 2210 -ms-transform: rotate(180deg); 2211 -webkit-transform: rotate(180deg); 2212 transform: rotate(180deg); 2213 } 1851 2214 } 1852 2215 1853 2216 /* List table styles */ 1854 2217 .post-com-count-wrapper { 1855 2218 min-width: 22px; 1856 font-family: sans-serif;2219 font-family: "Open Sans", sans-serif; 1857 2220 } 1858 2221 1859 2222 .post-com-count { 1860 background -image: url('../images/bubble_bg.gif');2223 background: none; 1861 2224 height: 1.3em; 1862 2225 line-height: 1.1em; 1863 2226 display: block; … … 1868 2231 background-repeat: no-repeat; 1869 2232 } 1870 2233 2234 .post-com-count:after { /* draw bubble connector using CSS! */ 2235 content: ""; 2236 display: block; 2237 width: 0; 2238 height: 0; 2239 margin-left: 8px; 2240 border-top: 5px solid #bbbbbb; 2241 border-right: 5px solid transparent; 2242 } 2243 1871 2244 .post-com-count span { 1872 2245 font-size: 11px; 1873 font-weight: bold;2246 font-weight: 600; 1874 2247 height: 1.4em; 1875 2248 line-height: 1.4em; 1876 2249 min-width: 0.7em; … … 1903 2276 } 1904 2277 1905 2278 th .comment-grey-bubble { 1906 background-image: url('../images/comment-grey-bubble.png'); 1907 background-repeat: no-repeat; 1908 height: 12px; 1909 width: 12px; 2279 height: 16px; 2280 width: 16px; 1910 2281 } 1911 2282 2283 th .comment-grey-bubble:before { 2284 content: '\f101'; 2285 font: normal 20px/.5 'dashicons'; 2286 speak: none; 2287 display: inline-block; 2288 padding: 0; 2289 top: 4px; 2290 left: -4px; 2291 position: relative; 2292 vertical-align: top; 2293 -webkit-font-smoothing: antialiased; 2294 text-decoration: none !important; 2295 } 2296 1912 2297 /*------------------------------------------------------------------------------ 1913 2298 8.0 - Layout Blocks 1914 2299 ------------------------------------------------------------------------------*/ 1915 2300 1916 2301 html.wp-toolbar { 1917 padding-top: 28px;2302 padding-top: 32px; 1918 2303 -webkit-box-sizing: border-box; 1919 2304 -moz-box-sizing: border-box; 1920 2305 box-sizing: border-box; … … 2006 2391 2007 2392 #poststuff { 2008 2393 padding-top: 10px; 2394 min-width: 763px; 2009 2395 } 2010 2396 2011 2397 #poststuff #post-body { … … 2014 2400 2015 2401 #post-body-content { 2016 2402 width: 100%; 2403 min-width: 463px; 2017 2404 float: left; 2018 2405 } 2019 2406 … … 2091 2478 } 2092 2479 2093 2480 /* one column on the post write/edit screen */ 2094 @media only screen and (max-width: 960px) { 2481 @media only screen and (max-width: 850px) { 2482 #poststuff { 2483 min-width: 0; 2484 } 2485 2095 2486 #wpbody-content #poststuff #post-body { 2096 2487 margin: 0; 2097 2488 } … … 2119 2510 } 2120 2511 } 2121 2512 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 2513 .js .postbox .hndle { 2130 2514 cursor: move; 2131 2515 } … … 2161 2545 .stuffbox { 2162 2546 margin-bottom: 20px; 2163 2547 padding: 0; 2164 border-width: 1px;2165 border-style: solid;2166 2548 line-height: 1; 2167 2549 } 2168 2550 … … 2170 2552 .postbox h3, 2171 2553 .stuffbox h3 { 2172 2554 margin-top: 1px; 2173 border-bottom-width: 1px;2174 border-bottom-style: solid;2175 2555 -webkit-user-select: none; 2176 2556 -moz-user-select: none; 2177 2557 user-select: none; … … 2184 2564 2185 2565 .postbox .inside, 2186 2566 .stuffbox .inside { 2187 padding: 0 12px 0 10px;2567 padding: 0 12px 12px; 2188 2568 line-height: 1.4em; 2569 font-size: 13px; 2189 2570 } 2190 2571 2191 2572 .postbox .inside { 2192 margin: 1 0px 0;2573 margin: 12px 0; 2193 2574 position: relative; 2194 2575 } 2195 2576 2577 #dashboard-widgets .postbox .inside { 2578 margin-bottom: 0; 2579 } 2580 2581 .postbox .inside > p:last-child, 2582 .rss-widget ul li:last-child { 2583 margin-bottom: 1px !important; 2584 } 2585 2196 2586 .postbox.closed h3 { 2197 2587 border: none; 2198 2588 -webkit-box-shadow: none; … … 2229 2619 } 2230 2620 2231 2621 #dashboard_recent_comments div.undo { 2232 border-top-style: solid; 2233 border-top-width: 1px; 2234 margin: 0 -10px; 2235 padding: 3px 8px; 2622 margin: 0 -12px; 2623 padding: 6px 12px; 2236 2624 font-size: 11px; 2237 2625 } 2238 2626 2627 #dashboard_recent_comments div.undo .avatar { 2628 float: left; 2629 } 2630 2631 #dashboard_recent_comments div.undo div { 2632 min-height: 20px; 2633 } 2634 2239 2635 #the-comment-list td.comment p.comment-author { 2240 2636 margin-top: 0; 2241 2637 margin-left: 0; … … 2262 2658 .welcome-panel { 2263 2659 position: relative; 2264 2660 overflow: auto; 2265 margin: 20px 0;2661 margin: 16px 0; 2266 2662 padding: 23px 10px 12px; 2267 border-width: 1px;2268 border-style: solid;2269 border-radius: 3px;2270 2663 font-size: 13px; 2271 2664 line-height: 2.1em; 2272 2665 } 2273 2666 2274 2667 .welcome-panel h3 { 2275 2668 margin: 0; 2276 font-family: " HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;2669 font-family: "Open Sans", sans-serif; 2277 2670 font-size: 21px; 2278 2671 font-weight: normal; 2279 2672 line-height: 1.2; 2280 2673 } 2674 2281 2675 .welcome-panel h4 { 2282 2676 margin: 1.33em 0 0; 2283 font-size: 1 3px;2677 font-size: 16px; 2284 2678 } 2285 2679 2680 .welcome-panel li { 2681 font-size: 14px; 2682 } 2683 2286 2684 .welcome-panel .about-description { 2287 2685 font-size: 16px; 2288 2686 margin: 0; … … 2298 2696 line-height: 1; 2299 2697 } 2300 2698 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; 2699 #welcome-panel.welcome-panel .welcome-panel-close::before, 2700 .tagchecklist span a:before, 2701 #bulk-titles div a:before, 2702 .wp-pointer-buttons a.close:before { 2703 content: '\f153'; 2704 display: block !important; 2705 font: normal 16px/1 'dashicons'; 2706 speak: none; 2707 height: 20px; 2708 margin: 2px 0; 2709 text-align: center; 2710 width: 20px; 2711 -webkit-font-smoothing: antialiased !important; 2308 2712 } 2309 2713 2310 .welcome-panel .welcome-panel-close:hover:before { 2311 background-position: 100% 17%; 2714 #welcome-panel.welcome-panel .welcome-panel-close::before { 2715 position: absolute; 2716 left: -18px; 2717 margin-top: -2px; 2718 -webkit-transition: all .1s ease-in-out; 2719 -moz-transition: all .1s ease-in-out; 2720 transition: all .1s ease-in-out; 2312 2721 } 2313 2722 2314 2723 .wp-core-ui .welcome-panel .button.button-hero { … … 2340 2749 width: 36%; 2341 2750 } 2342 2751 2752 .welcome-panel-column p.hide-if-no-customize { 2753 margin-top: 10px; 2754 } 2755 2343 2756 .welcome-panel-column p { 2344 2757 margin-top: 7px; 2345 2758 } 2346 2759 2347 2760 .welcome-panel .welcome-icon { 2348 2761 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; 2762 padding: 0 0 8px; 2763 background: transparent !important; 2353 2764 } 2354 2765 2355 .welcome-panel .welcome-add-page { 2356 background-position: 0 2px; 2766 .welcome-panel .welcome-icon:before { 2767 font: normal 20px/1 'dashicons'; 2768 speak: none; 2769 display: inline-block; 2770 padding: 0 10px 0 0; 2771 top: -1px; 2772 position: relative; 2773 -webkit-font-smoothing: antialiased; 2774 text-decoration: none !important; 2775 vertical-align: top; 2357 2776 } 2358 2777 2359 .welcome-panel .welcome-edit-page { 2360 background-position: 0 -90px; 2778 .welcome-panel .welcome-write-blog:before, 2779 .welcome-panel .welcome-edit-page:before { 2780 content:'\f119'; 2781 top: -3px; 2361 2782 } 2362 2783 2363 .welcome-panel .welcome- learn-more {2364 background-position: 0 -136px;2784 .welcome-panel .welcome-add-page:before { 2785 content:'\f132'; 2365 2786 } 2366 2787 2367 .welcome-panel .welcome-comments { 2368 background-position: 0 -182px; 2788 .welcome-panel .welcome-view-site:before { 2789 content:'\f115'; 2790 top: -2px; 2369 2791 } 2370 2792 2371 .welcome-panel .welcome-view-site { 2372 background-position: 0 -274px; 2793 .welcome-panel .welcome-widgets-menus:before { 2794 content:'\f116'; 2795 top: -2px; 2373 2796 } 2374 2797 2375 .welcome-panel .welcome- widgets-menus{2376 background-position: 1px -229px;2377 line-height: 14px;2798 .welcome-panel .welcome-comments:before { 2799 content:'\f117'; 2800 top: -1px; 2378 2801 } 2379 2802 2380 .welcome-panel .welcome-write-blog { 2381 background-position: 0 -44px; 2803 .welcome-panel .welcome-learn-more:before { 2804 content:'\f118'; 2805 top: -1px; 2382 2806 } 2383 2807 2808 .welcome-panel .welcome-widgets-menus { 2809 line-height: 16px; 2810 } 2811 2384 2812 .welcome-panel .welcome-panel-column ul { 2385 2813 margin: 0.8em 1em 1em 0; 2386 2814 } … … 2502 2930 #commentsdiv #add-new-comment { 2503 2931 border-width: 0 0 1px; 2504 2932 border-style: none none solid; 2933 margin-top: 6px; 2505 2934 } 2506 2935 2507 2936 #commentsdiv .comments-box { … … 2524 2953 2525 2954 .sorting-indicator { 2526 2955 display: none; 2527 width: 7px;2956 width: 10px; 2528 2957 height: 4px; 2529 2958 margin-top: 8px; 2530 2959 margin-left: 7px; 2531 background-image: url('../images/sort.gif');2532 background-repeat: no-repeat;2533 2960 } 2534 2961 2962 .sorting-indicator:before { 2963 background: none; 2964 content: '\f142'; 2965 font: normal 20px/1 'dashicons'; 2966 speak: none; 2967 display: inline-block; 2968 padding: 0; 2969 top: -4px; 2970 left: -8px; 2971 color: #444; 2972 line-height: 10px; 2973 position: relative; 2974 vertical-align: top; 2975 -webkit-font-smoothing: antialiased; 2976 text-decoration: none !important; 2977 } 2978 2979 .column-comments .sorting-indicator:before { 2980 top: 0; 2981 left: -10px; 2982 } 2983 2984 th.sorted.asc .sorting-indicator:before, 2985 th.desc:hover span.sorting-indicator:before { 2986 content: '\f142'; 2987 } 2988 2989 th.sorted.desc .sorting-indicator:before, 2990 th.asc:hover span.sorting-indicator:before { 2991 content: '\f140'; 2992 } 2993 2535 2994 tr.wp-locked .locked-indicator { 2536 2995 background: url('../images/lock.png') no-repeat; 2537 2996 margin: -2px 0 0 6px; … … 2552 3011 } 2553 3012 2554 3013 tr.wp-locked .locked-info { 3014 margin-top: 8px; 2555 3015 height: auto; 2556 3016 opacity: 1; 2557 3017 } 2558 3018 3019 .locked-text { 3020 vertical-align: top; 3021 } 3022 2559 3023 tr.locked-info, tr.wp-locked .locked-info { 2560 3024 -webkit-transition: height 1s, opacity 500ms; 2561 3025 -moz-transition: height 1s, opacity 500ms; … … 2609 3073 2610 3074 /* Bulk Actions */ 2611 3075 .tablenav-pages a { 2612 border-bottom-style: solid; 2613 border-bottom-width: 2px; 2614 font-weight: bold; 3076 font-weight: 600; 2615 3077 margin-right: 1px; 2616 3078 padding: 0 2px; 2617 3079 } 2618 3080 .tablenav-pages .current-page { 3081 padding-top: 0; 2619 3082 text-align: center; 2620 3083 } 2621 3084 .tablenav-pages .next-page { … … 2658 3121 padding: 3px 6px; 2659 3122 } 2660 3123 3124 .tablenav .tablenav-pages a { 3125 padding: 0 10px 3px; 3126 font-size: 16px; 3127 font-weight: normal; 3128 } 3129 2661 3130 .tablenav .tablenav-pages a.disabled:hover , 2662 3131 .tablenav .tablenav-pages a.disabled:active { 2663 3132 cursor: default; 2664 3133 } 2665 3134 2666 3135 .tablenav .displaying-num { 2667 margin-right: 10px;3136 margin-right: 2px; 2668 3137 font-size: 12px; 2669 3138 font-style: italic; 2670 3139 } … … 2680 3149 2681 3150 .view-switch { 2682 3151 float: right; 2683 margin: 6px 8px 0;3152 margin: 5px 16px 0 8px; 2684 3153 } 2685 3154 3155 .view-switch img { 3156 display: none; 3157 } 3158 2686 3159 .view-switch a { 2687 3160 text-decoration: none; 2688 3161 } 2689 3162 3163 .view-switch > a { 3164 display: inline-block; 3165 width: 18px; 3166 height: 18px; 3167 } 3168 3169 .view-switch > a:before { 3170 content: '\f163'; 3171 display: inline-block; 3172 float: left; 3173 font: normal 20px/1 'dashicons'; 3174 speak: none; 3175 vertical-align: middle; 3176 margin-left: 0; 3177 -webkit-font-smoothing: antialiased; 3178 } 3179 3180 .view-switch > a + a:before { 3181 margin-left: 5px; 3182 content: '\f164'; 3183 } 3184 2690 3185 .filter { 2691 3186 float: left; 2692 3187 margin: -5px 0 0 10px; … … 2942 3437 2943 3438 .inline-edit-row fieldset ul.cat-checklist label, 2944 3439 .inline-edit-row #bulk-titles div { 2945 font-family: sans-serif;3440 font-family: "Open Sans", sans-serif; 2946 3441 font-style: normal; 2947 3442 font-size: 11px; 2948 3443 } … … 2970 3465 cursor: pointer; 2971 3466 display: block; 2972 3467 float: left; 2973 height: 1 0px;2974 margin: 3px3px 0 -2px;3468 height: 18px; 3469 margin: 0 3px 0 -2px; 2975 3470 overflow: hidden; 2976 3471 position: relative; 2977 text-indent: -9999px; 2978 width: 10px; 3472 width: 20px; 2979 3473 } 2980 3474 3475 #bulk-titles div a:before { 3476 position: relative; 3477 top: -3px; 3478 } 2981 3479 3480 2982 3481 /*------------------------------------------------------------------------------ 2983 3482 11.0 - Write/Edit Post Screen 2984 3483 ------------------------------------------------------------------------------*/ … … 3006 3505 3007 3506 #titlediv { 3008 3507 position: relative; 3009 margin-bottom: 5px;3508 margin-bottom: 10px; 3010 3509 } 3011 3510 3012 3511 #titlediv label { … … 3073 3572 line-height: 24px; 3074 3573 min-height: 25px; /* Yes, line-height + 1 */ 3075 3574 margin-top: 5px; 3076 padding -right: 6px;3575 padding: 0 10px; 3077 3576 } 3078 3577 3079 3578 #edit-slug-box .cancel { … … 3104 3603 padding: 1px 2px; 3105 3604 } 3106 3605 3107 .submitbox .submitdelete,3108 3606 .submitbox .submit a:hover { 3109 border-bottom-width: 1px; 3110 border-bottom-style: solid; 3607 text-decoration: underline; 3111 3608 } 3112 3609 3113 3610 .submitbox .submit input { … … 3172 3669 } 3173 3670 3174 3671 .category-tabs { 3175 margin: 8px 0 3px;3672 margin: 8px 0 5px; 3176 3673 } 3177 3674 3178 3675 #category-adder h4 { … … 3219 3716 border-width: 1px 1px 0; 3220 3717 } 3221 3718 3719 ul.add-menu-item-tabs li.tabs { 3720 padding-bottom: 3px; 3721 } 3722 3222 3723 #post-body .add-menu-item-tabs li.tabs { 3223 3724 border-style: solid none solid solid; 3224 3725 border-width: 1px 0 1px 1px; … … 3229 3730 ul.add-menu-item-tabs li, 3230 3731 ul.wp-tab-bar li { 3231 3732 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 3733 } 3237 3734 3238 /* positioning etc. */ 3735 #postimagediv .inside img { 3736 max-width: 100%; 3737 height: auto; 3738 } 3739 3239 3740 form#tags-filter { 3240 3741 position: relative; 3241 3742 } … … 3245 3746 td.plugin-title strong { 3246 3747 display: block; 3247 3748 margin-bottom: .2em; 3749 font-size: 14px; 3248 3750 } 3249 3751 3250 3752 td.post-title p, … … 3276 3778 } 3277 3779 3278 3780 #post-status-info { 3279 border-width: 0 1px 1px;3280 border-style: none solid solid;3281 3781 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 3782 } 3287 3783 3288 3784 #post-status-info td { … … 3298 3794 border: none; 3299 3795 } 3300 3796 3797 #content-resize-handle, 3301 3798 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3302 display: block;3303 3799 background: transparent url('../images/resize.gif') no-repeat scroll right bottom; 3304 3800 width: 12px; 3305 3801 cursor: se-resize; 3802 } 3803 3804 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3805 display: block; 3306 3806 margin: 0 1px; 3307 3807 position: relative; 3308 3808 top: -2px; 3309 3809 } 3310 3810 3311 3811 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { 3312 top: 2 0px;3812 top: 22px; 3313 3813 } 3314 3814 3315 3815 #content-resize-handle { 3316 background: transparent url('../images/resize.gif') no-repeat scroll right bottom;3317 width: 12px;3318 cursor: se-resize;3319 3816 position: absolute; 3320 3817 right: 2px; 3321 3818 height: 19px; … … 3355 3852 } 3356 3853 3357 3854 .curtime #timestamp { 3358 background-repeat: no-repeat;3359 background-position: left center;3360 padding: 2px 0 1px 20px;3855 padding: 2px 0 1px 0; 3856 display: inline !important; 3857 height: auto !important; 3361 3858 } 3362 3859 3860 #post-body #visibility:before, 3861 .curtime #timestamp:before { 3862 font: normal 20px/1 'dashicons'; 3863 speak: none; 3864 display: inline-block; 3865 padding: 0 2px 0 0; 3866 top: 0; 3867 left: -1px; 3868 position: relative; 3869 vertical-align: top; 3870 -webkit-font-smoothing: antialiased; 3871 text-decoration: none !important; 3872 } 3873 3874 #post-body #visibility:before { 3875 content: '\f177'; 3876 } 3877 3878 .curtime #timestamp:before { 3879 content: '\f145'; 3880 top: -1px; 3881 } 3882 3363 3883 #timestampdiv { 3364 3884 padding-top: 5px; 3365 3885 line-height: 23px; … … 3531 4051 .revisions.pinned .revisions-controls { 3532 4052 position: fixed; 3533 4053 top: 0; 3534 padding-bottom: 10px;4054 height: 82px; 3535 4055 } 3536 4056 3537 4057 .revisions-tickmarks { 3538 4058 position: relative; 3539 4059 margin: 0 auto; 3540 height: 0. 8em;4060 height: 0.7em; 3541 4061 top: 7px; 3542 4062 max-width: 70%; 3543 4063 -moz-box-sizing: border-box; … … 3563 4083 height: 140px; 3564 4084 } 3565 4085 4086 .comparing-two-revisions.pinned .revisions-controls { 4087 height: 124px; 4088 } 4089 3566 4090 .revisions .diff-error { 3567 4091 position: absolute; 3568 4092 text-align: center; … … 3623 4147 } 3624 4148 3625 4149 .revisions-meta { 3626 margin-top: 15px;4150 margin-top: 20px; 3627 4151 } 3628 4152 3629 4153 .revision-toggle-compare-mode { … … 3654 4178 display: block; 3655 4179 } 3656 4180 4181 .revisions.pinned .revisions-buttons { 4182 padding: 0 11px; 4183 } 4184 3657 4185 .revisions-previous, 3658 4186 .revisions-next { 3659 4187 position: relative; … … 3674 4202 top: -3px; 3675 4203 } 3676 4204 4205 .revisions-diff { 4206 padding: 15px; 4207 } 4208 4209 .revisions-diff h3:first-child { 4210 margin-top: 0; 4211 } 4212 3677 4213 /* Revision meta box */ 3678 4214 .post-revisions li img, 3679 4215 #revisions-meta-restored img { 3680 4216 vertical-align: middle; 3681 4217 } 3682 4218 4219 table.diff tbody tr td:nth-child(2) { 4220 width: 4%; 4221 } 4222 3683 4223 table.diff { 3684 table-layout: fixed;3685 4224 width: 100%; 3686 4225 white-space: pre-wrap; 3687 word-wrap: break-word;3688 4226 } 3689 4227 3690 4228 table.diff col.content { … … 3709 4247 3710 4248 table.diff td, 3711 4249 table.diff th { 4250 font-family: Consolas, Monaco, monospace; 4251 font-size: 14px; 4252 line-heighit: 1.618; 3712 4253 padding: .5em; 3713 font-family: Consolas, Monaco, monospace;3714 4254 } 3715 4255 4256 table.diff td h1, 4257 table.diff td h2, 4258 table.diff td h3, 4259 table.diff td h4, 4260 table.diff td h5, 4261 table.diff td h6 { 4262 margin: 0; 4263 } 4264 3716 4265 table.diff .diff-deletedline del, 3717 4266 table.diff .diff-addedline ins { 3718 4267 text-decoration: none; … … 3734 4283 margin-right: 5px; 3735 4284 } 3736 4285 4286 .revisions-controls .author-card .author-info { 4287 font-size: 12px; 4288 line-height: 16px; 4289 } 4290 3737 4291 .revisions-controls .author-card .avatar, 3738 4292 .revisions-controls .author-card .author-info { 3739 4293 float: left; … … 3816 4370 width: 25px; 3817 4371 height: 25px; 3818 4372 -webkit-transform: rotate(45deg); 3819 -moz-transform: rotate(45deg);3820 -ms-transform: rotate(45deg);3821 -o-transform: rotate(45deg);3822 transform: rotate(45deg);4373 -moz-transform: rotate(45deg); 4374 -ms-transform: rotate(45deg); 4375 -o-transform: rotate(45deg); 4376 transform: rotate(45deg); 3823 4377 } 3824 4378 3825 4379 .revisions-tooltip.flipped .revisions-tooltip-arrow > span { … … 3843 4397 border-style: solid; 3844 4398 } 3845 4399 4400 4401 4402 4403 .revisions-tooltip { 4404 display: none; 4405 } 4406 4407 .arrow { 4408 width: 70px; 4409 height: 16px; 4410 overflow: hidden; 4411 position: absolute; 4412 left: 0; 4413 margin-left: -35px; 4414 bottom: 90px; 4415 z-index: 10000; 4416 } 4417 4418 .arrow::after { 4419 z-index: 9999; 4420 } 4421 4422 .arrow.top { 4423 top: -16px; 4424 bottom: auto; 4425 } 4426 4427 .arrow.left { 4428 left: 20%; 4429 } 4430 4431 .arrow:after { 4432 content: ""; 4433 position: absolute; 4434 left: 20px; 4435 top: -20px; 4436 width: 25px; 4437 height: 25px; 4438 -webkit-transform: rotate(45deg); 4439 -moz-transform: rotate(45deg); 4440 -ms-transform: rotate(45deg); 4441 -o-transform: rotate(45deg); 4442 transform: rotate(45deg); 4443 } 4444 4445 .revisions-tooltip, 4446 .revisions-tooltip-arrow:after { 4447 border-width: 1px; 4448 border-style: solid; 4449 } 4450 3846 4451 div.revisions-controls > .wp-slider > .ui-slider-handle { 3847 4452 margin-left: -10px; 3848 4453 } … … 3852 4457 position: relative; 3853 4458 border-width: 1px; 3854 4459 border-style: solid; 3855 border-radius: 3px;3856 4460 text-align: left; 3857 4461 cursor: pointer; 3858 4462 } 3859 4463 3860 4464 .wp-slider .ui-slider-handle { 4465 border-radius: 50%; 4466 height: 20px; 4467 margin-top: -2px; 4468 outline: none; 3861 4469 position: absolute; 4470 width: 20px; 3862 4471 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 4472 } 3870 4473 3871 4474 .wp-slider .ui-slider-handle:before { 3872 content: "";4475 background: none; 3873 4476 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; 4477 margin-top: 1px; 4478 margin-left: 1px; 4479 top: 0; 4480 left: 0; 4481 content: "\f229"; 4482 font: normal 18px/1 'dashicons'; 4483 speak: none; 4484 -webkit-font-smoothing:antialiased; 3879 4485 } 3880 4486 3881 4487 .wp-slider .ui-slider-handle.from-handle:before, 3882 4488 .wp-slider .ui-slider-handle.to-handle:before { 4489 font-size: 20px !important; 3883 4490 height: 8px; 3884 4491 width: 7px; 4492 margin-left: 0; 3885 4493 } 3886 4494 3887 4495 .wp-slider .ui-slider-handle.from-handle:before { 3888 background-position: -5px -84px; 3889 left: 7px; 4496 content: '\f139'; 3890 4497 } 3891 4498 3892 4499 .wp-slider .ui-slider-handle.to-handle:before { 3893 background-position: -4px -65px;3894 left: 5px; 4500 content: '\f141'; 4501 3895 4502 } 3896 4503 3897 4504 .wp-slider .ui-slider-range { … … 3904 4511 } 3905 4512 3906 4513 .wp-slider.ui-slider-horizontal { 3907 height: . 8em;4514 height: .7em; 3908 4515 } 3909 4516 3910 4517 .wp-slider.ui-slider-horizontal .ui-slider-handle { … … 3963 4570 11.4 - Post formats 3964 4571 ------------------------------------------------------------------------------*/ 3965 4572 3966 a.post-state-format {4573 .post-state-format { 3967 4574 overflow: hidden; 3968 4575 display: inline-block; 3969 4576 vertical-align: middle; 3970 height: 16px;3971 width: 16px;4577 height: 20px; 4578 width: 20px; 3972 4579 margin-right: 5px; 3973 background-repeat: no-repeat; 3974 text-indent: -999em; 4580 margin-top: -4px; 3975 4581 } 3976 4582 4583 .post-state-format:before { 4584 display: block; 4585 height: 20px; 4586 width: 20px; 4587 font: normal 20px/1 'dashicons' !important; 4588 speak: none; 4589 -webkit-font-smoothing: antialiased; 4590 } 4591 3977 4592 #post-formats-select { 3978 4593 line-height: 2em; 3979 4594 } 3980 4595 4596 #post-formats-select .post-format-icon:before { 4597 top: 5px; 4598 } 4599 4600 input.post-format { 4601 margin-top: 1px; 4602 } 4603 3981 4604 label.post-format-icon { 3982 margin-left: 5px;3983 padding: 2px 0 2px 21px;4605 margin-left: 0px; 4606 padding: 2px 0 2px 0px; 3984 4607 } 3985 4608 3986 .post-format-icon.post-format-standard { 3987 background-position: 0 0; 4609 .post-format-icon:before { 4610 position: relative; 4611 display: inline-block; 4612 margin-right: 7px; 4613 font: normal 20px/1 'dashicons'; 4614 speak: none; 4615 -webkit-font-smoothing: antialiased; 3988 4616 } 3989 4617 3990 .post-format-icon.post-format-image { 3991 background-position: 0 -32px; 4618 .post-state-format.post-format-standard:before, 4619 .post-format-icon.post-format-standard:before, 4620 a.post-state-format.format-standard:before { 4621 content: '\f109'; 3992 4622 } 3993 4623 3994 .post-format-icon.post-format-gallery { 3995 background-position: 0 -64px; 4624 .post-state-format.post-format-image:before, 4625 .post-format-icon.post-format-image:before, 4626 a.post-state-format.format-image:before { 4627 content: '\f128'; 3996 4628 } 3997 4629 3998 .post-format-icon.post-format-audio { 3999 background-position: 0 -96px; 4630 .post-state-format.post-format-gallery:before, 4631 .post-format-icon.post-format-gallery:before, 4632 a.post-state-format.format-gallery:before { 4633 content: '\f161'; 4000 4634 } 4001 4635 4002 .post-format-icon.post-format-video { 4003 background-position: 0 -128px; 4636 .post-state-format.post-format-audio:before, 4637 .post-format-icon.post-format-audio:before, 4638 a.post-state-format.format-audio:before { 4639 content: '\f127'; 4004 4640 } 4005 4641 4006 .post-format-icon.post-format-chat { 4007 background-position: 0 -160px; 4642 .post-state-format.post-format-video:before, 4643 .post-format-icon.post-format-video:before, 4644 a.post-state-format.format-video:before { 4645 content: '\f126'; 4008 4646 } 4009 4647 4010 .post-format-icon.post-format-status { 4011 background-position: 0 -192px; 4648 .post-state-format.post-format-chat:before, 4649 .post-format-icon.post-format-chat:before, 4650 a.post-state-format.format-chat:before { 4651 content: '\f125'; 4012 4652 } 4013 4653 4014 .post-format-icon.post-format-aside { 4015 background-position: 0 -224px; 4654 .post-state-format.post-format-status:before, 4655 .post-format-icon.post-format-status:before, 4656 a.post-state-format.format-status:before { 4657 content: '\f130'; 4016 4658 } 4017 4659 4018 .post-format-icon.post-format-quote { 4019 background-position: 0 -256px; 4660 .post-state-format.post-format-aside:before, 4661 .post-format-icon.post-format-aside:before, 4662 a.post-state-format.format-aside:before { 4663 content: '\f123'; 4020 4664 } 4021 4665 4022 .post-format-icon.post-format-link { 4023 background-position: 0 -288px; 4666 .post-state-format.post-format-quote:before, 4667 .post-format-icon.post-format-quote:before, 4668 a.post-state-format.format-quote:before { 4669 content: '\f122'; 4024 4670 } 4025 4671 4672 .post-state-format.post-format-link:before, 4673 .post-format-icon.post-format-link:before, 4674 a.post-state-format.format-link:before { 4675 content: '\f103'; 4676 } 4026 4677 4027 4678 /*------------------------------------------------------------------------------ 4028 4679 12.0 - Categories … … 4050 4701 padding: 0; 4051 4702 } 4052 4703 4053 #post-bodyul.add-menu-item-tabs li {4054 padding: 8px;4704 ul.add-menu-item-tabs li { 4705 padding: 3px 5px 3px 8px; 4055 4706 } 4056 4707 4057 4708 #post-body ul.add-menu-item-tabs li.tabs { … … 4096 4747 ul.categorychecklist li { 4097 4748 margin: 0; 4098 4749 padding: 0; 4099 line-height: 19px;4750 line-height: 22px; 4100 4751 word-wrap: break-word; 4101 4752 } 4102 4753 … … 4135 4786 p.description, 4136 4787 span.description, 4137 4788 .form-wrap p { 4138 font-size: 1 2px;4789 font-size: 13px; 4139 4790 font-style: italic; 4140 font-family: sans-serif;4791 font-family: "Open Sans", sans-serif; 4141 4792 } 4142 4793 4143 4794 .form-wrap .form-field { … … 4163 4814 13.0 - Tags 4164 4815 ------------------------------------------------------------------------------*/ 4165 4816 4817 .tagsdiv { 4818 margin-top: -8px; 4819 } 4820 4166 4821 #poststuff .taghint { 4167 4822 color: #aaa; 4168 4823 margin: 15px 0 -24px 12px; 4169 4824 } 4170 4825 4171 4826 #poststuff .tagsdiv .howto { 4172 margin: 0 0 6px 8px;4827 margin: 0 0 6px 0; 4173 4828 } 4174 4829 4175 4830 .ajaxtag .newtag { … … 4193 4848 } 4194 4849 4195 4850 p.popular-tags { 4196 -webkit-border-radius: 8px; 4197 border-radius: 8px; 4198 border-width: 1px; 4199 border-style: solid; 4851 border: none; 4200 4852 line-height: 2em; 4201 4853 max-width: 1000px; 4202 4854 padding: 8px 12px 12px; … … 4345 4997 display: inline; 4346 4998 padding: 0 0 0 23px; 4347 4999 margin: 0 1em 0 3px; 4348 font-weight: bold;5000 font-weight: 600; 4349 5001 } 4350 5002 4351 5003 .media-upload-form tr.image-size label { 4352 5004 margin: 0 0 0 5px; 4353 font-weight: bold;5005 font-weight: 600; 4354 5006 } 4355 5007 4356 5008 .media-upload-form th.label label { 4357 font-weight: bold;5009 font-weight: 600; 4358 5010 margin: 0.5em; 4359 5011 font-size: 13px; 4360 5012 } … … 4488 5140 position: relative; 4489 5141 width: 200px; 4490 5142 padding: 0 8px; 4491 text-shadow: 0 1px 0 rgba(255,255,255,0.4);4492 5143 color: rgba(0,0,0,0.6); 4493 5144 } 4494 5145 … … 4537 5188 4538 5189 .find-box-head { 4539 5190 cursor: move; 4540 font-weight: bold;5191 font-weight: 600; 4541 5192 height: 2em; 4542 5193 line-height: 2em; 4543 5194 padding: 1px 12px; … … 4683 5334 14.2 - Image Editor 4684 5335 ------------------------------------------------------------------------------*/ 4685 5336 5337 .wp_attachment_details #attachment_caption { 5338 height: 4em; 5339 } 5340 4686 5341 .describe .image-editor { 4687 5342 vertical-align: top; 4688 5343 } … … 4721 5376 .imgedit-wait { 4722 5377 position: absolute; 4723 5378 top: 0; 4724 background: #fff url( ../images/wpspin_light.gif) no-repeat scroll 22px 10px;4725 background-size: 16px 16px;5379 background: #fff url('../images/spinner.gif') no-repeat scroll 22px 10px; 5380 background-size: 20px 20px; 4726 5381 opacity: 0.7; 4727 5382 filter: alpha(opacity=70); 4728 5383 width: 100%; … … 4731 5386 } 4732 5387 4733 5388 .spinner { 4734 background: url( ../images/wpspin_light.gif) no-repeat;4735 background-size: 16px 16px;5389 background: url('../images/spinner.gif') no-repeat; 5390 background-size: 20px 20px; 4736 5391 display: none; 4737 5392 float: right; 4738 5393 opacity: 0.7; 4739 5394 filter: alpha(opacity=70); 4740 width: 16px;4741 height: 16px;4742 margin: 5px 5px 0;5395 width: 20px; 5396 height: 20px; 5397 margin: 2px 5px 0; 4743 5398 } 4744 5399 4745 5400 .no-float { … … 4768 5423 .wp_attachment_image .spinner, 4769 5424 .A1B1 .spinner { 4770 5425 float: left; 4771 padding: 0 4px 4px;5426 padding: 0 0 4px 0; 4772 5427 vertical-align: bottom; 4773 5428 } 4774 5429 … … 4780 5435 .imgedit-menu div { 4781 5436 float: left; 4782 5437 width: 32px; 5438 background: none; 5439 margin: 0 8px 0 0; 4783 5440 height: 32px; 5441 -webkit-font-smoothing: antialiased; 5442 text-align: center; 5443 line-height: 28px; 4784 5444 } 4785 5445 4786 .imgedit-crop-wrap { 4787 position: relative; 5446 .imgedit-menu div:before { 5447 font: normal 20px/1 'dashicons'; 5448 speak: none; 5449 vertical-align: middle; 4788 5450 } 4789 5451 4790 .imgedit-crop { 4791 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px; 4792 margin: 0 8px 0 0; 5452 .imgedit-crop:before { 5453 content:'\f165'; 4793 5454 } 4794 5455 4795 .imgedit- crop.disabled:hover{4796 background-position: -9px -31px;5456 .imgedit-rleft:before { 5457 content:'\f166'; 4797 5458 } 4798 5459 4799 .imgedit- crop:hover{4800 background-position: -9px -1px;5460 .imgedit-rright:before { 5461 content:'\f167'; 4801 5462 } 4802 5463 4803 .imgedit-rleft { 4804 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px; 4805 margin: 0 3px; 5464 .imgedit-flipv:before { 5465 content:'\f168'; 4806 5466 } 4807 5467 4808 .imgedit- rleft.disabled:hover{4809 background-position: -46px -31px;5468 .imgedit-fliph:before { 5469 content:'\f169'; 4810 5470 } 4811 5471 4812 .imgedit- rleft:hover{4813 background-position: -46px -1px;5472 .imgedit-undo:before { 5473 content:'\f171'; 4814 5474 } 4815 5475 4816 .imgedit-rright { 4817 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px; 4818 margin: 0 8px 0 3px; 5476 .imgedit-redo:before { 5477 content:'\f172'; 4819 5478 } 4820 5479 4821 .imgedit- rright.disabled:hover{4822 background-position: -77px -31px;5480 .imgedit-crop-wrap { 5481 position: relative; 4823 5482 } 4824 5483 4825 .imgedit- rright:hover{4826 background-position: -77px -1px;5484 .imgedit-crop { 5485 margin: 0 8px 0 0; 4827 5486 } 4828 5487 4829 .imgedit-flipv { 4830 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px; 5488 .imgedit-rleft { 4831 5489 margin: 0 3px; 4832 5490 } 4833 5491 4834 .imgedit- flipv.disabled:hover{4835 background-position: -115px -31px;5492 .imgedit-rright { 5493 margin: 0 8px 0 3px; 4836 5494 } 4837 5495 4838 .imgedit-flipv :hover{4839 background-position: -115px -1px;5496 .imgedit-flipv { 5497 margin: 0 3px; 4840 5498 } 4841 5499 4842 5500 .imgedit-fliph { 4843 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;4844 5501 margin: 0 8px 0 3px; 4845 5502 } 4846 5503 4847 .imgedit-fliph.disabled:hover {4848 background-position: -147px -31px;4849 }4850 4851 .imgedit-fliph:hover {4852 background-position: -147px -1px;4853 }4854 4855 5504 .imgedit-undo { 4856 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;4857 5505 margin: 0 3px; 4858 5506 } 4859 5507 4860 .imgedit-undo.disabled:hover {4861 background-position: -184px -31px;4862 }4863 4864 .imgedit-undo:hover {4865 background-position: -184px -1px;4866 }4867 4868 5508 .imgedit-redo { 4869 background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;4870 5509 margin: 0 8px 0 3px; 4871 5510 } 4872 5511 4873 .imgedit-redo.disabled:hover {4874 background-position: -215px -31px;4875 }4876 4877 .imgedit-redo:hover {4878 background-position: -215px -1px;4879 }4880 4881 5512 .imgedit-applyto img { 4882 5513 margin: 0 8px 0 0; 4883 5514 } … … 4940 5571 4941 5572 .form-table { 4942 5573 border-collapse: collapse; 5574 font-size: 14px; 4943 5575 margin-top: 0.5em; 4944 5576 width: 100%; 4945 margin-bottom: -8px;4946 5577 clear: both; 4947 5578 } 4948 5579 4949 5580 .form-table td { 4950 5581 margin-bottom: 9px; 4951 padding: 8px 10px; 4952 line-height: 20px; 4953 font-size: 12px; 5582 padding: 18px 10px; 5583 line-height: 1.3; 5584 font-size: 14px; 5585 vertical-align: middle; 4954 5586 } 4955 5587 4956 5588 .form-table th, 4957 5589 .form-wrap label { 4958 5590 font-weight: normal; 4959 text-shadow: #fff 0 1px 0; 5591 text-shadow: none; 5592 font-size: 14px; 5593 vertical-align: baseline; 4960 5594 } 4961 5595 4962 5596 .form-table th { 4963 5597 vertical-align: top; 4964 5598 text-align: left; 4965 padding: 10px;5599 padding: 20px 10px 20px 0; 4966 5600 width: 200px; 5601 line-height: 1.3; 5602 font-weight: 600; 4967 5603 } 4968 5604 4969 5605 .form-table th.th-full { … … 4984 5620 4985 5621 .form-table td p { 4986 5622 margin-top: 4px; 5623 margin-bottom: 0; 4987 5624 } 4988 5625 4989 5626 .form-table table.color-palette { … … 5000 5637 width: 10px; 5001 5638 } 5002 5639 5640 5641 .form-table td fieldset label { 5642 margin: 0.25em 0 0.5em !important; 5643 display: inline-block; 5644 } 5645 5646 .form-table td fieldset label, 5647 .form-table td fieldset p, 5648 .form-table td fieldset li { 5649 line-height: 1.4em; 5650 } 5651 5652 .form-table input.tog, 5653 .form-table input[type=radio] { 5654 margin-top: -4px; 5655 margin-right: 4px; 5656 float: none; 5657 } 5658 5003 5659 .commentlist li { 5004 5660 padding: 1em 1em .2em; 5005 5661 margin: 0; … … 5087 5743 5088 5744 .comment-ays { 5089 5745 margin-bottom: 0; 5090 border- style: solid;5091 border- width: 1px;5746 border-bottom-style: solid; 5747 border-bottom-width: 1px; 5092 5748 } 5093 5749 5094 .comment-ays th { 5095 border-right-style: solid; 5096 border-right-width: 1px; 5750 .comment-ays .alt { 5751 background-color: transparent; 5097 5752 } 5098 5753 5099 5754 .trash-undo-inside, … … 5131 5786 vertical-align: text-top; 5132 5787 } 5133 5788 5789 #the-comment-list .unapproved th.check-column input { 5790 margin-left: 4px; 5791 } 5134 5792 5135 5793 /*------------------------------------------------------------------------------ 5136 5794 16.0 - Themes … … 5307 5965 margin-right: 10px; 5308 5966 text-transform: uppercase; 5309 5967 font-size: 11px; 5310 line-height: 18px;5968 line-height: 22px; 5311 5969 color: #999; 5312 5970 } 5313 5971 … … 5392 6050 #post-body ul.add-menu-item-tabs li.tabs a, 5393 6051 #TB_window #TB_title a.tb-theme-preview-link, 5394 6052 #TB_window #TB_title a.tb-theme-preview-link:visited { 5395 font-weight: bold;6053 font-weight: 600; 5396 6054 text-decoration: none; 5397 6055 } 5398 6056 … … 5470 6128 .nav-tab { 5471 6129 border-style: solid; 5472 6130 border-width: 1px 1px 0; 5473 color: #aaa;5474 text-shadow: #fff 0 1px 0;5475 6131 font-size: 12px; 5476 6132 line-height: 16px; 5477 6133 display: inline-block; 5478 6134 padding: 4px 14px 6px; 5479 6135 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; 6136 margin: -4px 4px -1px 0; 5485 6137 } 5486 6138 5487 6139 .nav-tab-active { 5488 6140 border-width: 1px; 5489 color: #464646;5490 6141 } 5491 6142 5492 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 6143 .nav-tab-active, 6144 .nav-tab-active:hover { 5493 6145 border-bottom-width: 1px; 5494 6146 border-bottom-style: solid; 6147 } 6148 6149 h2.nav-tab-wrapper, 6150 h3.nav-tab-wrapper { 6151 border-bottom-width: 1px; 6152 border-bottom-style: solid; 5495 6153 padding-bottom: 0; 6154 padding-left: 10px; 5496 6155 } 5497 6156 5498 6157 h2 .nav-tab { 5499 padding: 4px 10px 6px;5500 font-weight: 200;5501 font-size: 20px;6158 padding: 6px 10px; 6159 font-weight: bold; 6160 font-size: 15px; 5502 6161 line-height: 24px; 5503 6162 5504 6163 } … … 5521 6180 #ed_reply_toolbar #ed_reply_strong, 5522 6181 .item-controls .item-order a, 5523 6182 .feature-filter .feature-name { 5524 font-weight: bold;6183 font-weight: 600; 5525 6184 } 5526 6185 5527 6186 .plugins p { … … 5546 6205 list-style-type: disc; 5547 6206 } 5548 6207 5549 .plugins .row-actions { 6208 .plugins .row-actions-visible { 6209 font-size: 13px; 5550 6210 padding: 0; 5551 6211 } 5552 6212 5553 .plugins tbody th.check-column {5554 padding: 7px 0;5555 }5556 5557 6213 .plugins .inactive td, 5558 6214 .plugins .inactive th, 5559 6215 .plugins .active td, 5560 6216 .plugins .active th { 5561 border-top-style: solid; 5562 border-top-width: 1px; 5563 padding: 5px 7px 0; 6217 padding: 10px 9px; 5564 6218 } 5565 6219 5566 6220 .plugins .update th, … … 5577 6231 white-space:nowrap; 5578 6232 } 5579 6233 6234 .plugins .inactive .plugin-title strong { 6235 font-weight: 400; 6236 } 6237 5580 6238 .plugins .second, 5581 .plugins .row-actions {6239 .plugins .row-actions-visible { 5582 6240 padding: 0 0 5px; 5583 6241 } 5584 6242 5585 6243 .plugins .update .second, 5586 .plugins .update .row-actions {6244 .plugins .update .row-actions-visible { 5587 6245 padding-bottom: 0; 5588 6246 } 5589 6247 … … 5594 6252 } 5595 6253 5596 6254 .plugin-update-tr .update-message { 5597 margin: 5px; 5598 padding: 3px 5px; 6255 border: none; 6256 font-size: 13px; 6257 font-weight: normal; 6258 margin: 6px 12px 12px; 6259 padding: 6px 12px; 5599 6260 } 5600 6261 6262 .plugin-update-tr .update-message:before { 6263 content: '\f113'; 6264 display: inline-block; 6265 font: normal 20px/1 'dashicons'; 6266 speak: none; 6267 margin: 0 8px 0 -2px; 6268 -webkit-font-smoothing: antialiased; 6269 vertical-align: top; 6270 } 6271 5601 6272 .plugin-install-php h4 { 5602 6273 margin: 2.5em 0 8px; 5603 6274 } … … 5620 6291 font-size: 22px; 5621 6292 } 5622 6293 5623 #your-profile #rich_editing {5624 border: none;5625 }5626 5627 6294 #display_name { 5628 6295 width: 15em; 5629 6296 } … … 5636 6303 19.0 - Tools 5637 6304 ------------------------------------------------------------------------------*/ 5638 6305 6306 body.press-this { 6307 color: #333; 6308 margin: 0; 6309 padding: 0; 6310 min-width: 708px; 6311 min-height: 400px; 6312 } 6313 5639 6314 .pressthis { 5640 6315 margin: 20px 0; 5641 6316 } … … 5649 6324 cursor: move; 5650 6325 color: #333; 5651 6326 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 6327 -webkit-border-radius: 5px; 5658 6328 border-radius: 5px; 5659 6329 border: 1px solid #b4b4b4; … … 5661 6331 line-height: 16px; 5662 6332 font-size: 14px; 5663 6333 text-decoration: none; 5664 text-shadow: 0 1px 0px #fff;5665 6334 } 5666 6335 5667 6336 .pressthis a:active { … … 5677 6346 } 5678 6347 5679 6348 .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 6349 display: inline-block; 6350 margin: 0px 0 0; 6351 padding: 0px 12px 8px 9px; 5685 6352 } 5686 6353 6354 .pressthis a span:before { 6355 font: normal 20px/1 'dashicons'; 6356 content:'\f157'; 6357 position: relative; 6358 display: inline-block; 6359 top: 4px; 6360 margin-right: 4px; 6361 } 6362 5687 6363 .pressthis a:after { 5688 6364 content: ''; 5689 6365 width: 70%; … … 5708 6384 #utc-time, #local-time { 5709 6385 padding-left: 25px; 5710 6386 font-style: italic; 5711 font-family: sans-serif;6387 font-family: "Open Sans", sans-serif; 5712 6388 } 5713 6389 5714 6390 .defaultavatarpicker .avatar { … … 5737 6413 } 5738 6414 5739 6415 #wpfooter p { 6416 font-size: 13px; 5740 6417 margin: 0; 5741 6418 line-height: 20px; 5742 6419 } 5743 6420 6421 #footer-thankyou { 6422 font-style: italic; 6423 } 6424 5744 6425 #wpfooter a { 5745 6426 text-decoration: none; 5746 6427 } … … 5792 6473 .about-text, 5793 6474 .about-description, 5794 6475 .about-wrap li.wp-person a.web { 5795 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;5796 6476 font-weight: normal; 5797 6477 line-height: 1.6em; 5798 6478 font-size: 20px; … … 5826 6506 margin-top: 0.6em; 5827 6507 } 5828 6508 5829 .about-wrap code { 6509 .about-wrap code, 6510 .about-wrap ol li p { 5830 6511 font-size: 14px; 5831 6512 } 5832 6513 6514 5833 6515 /* Point Releases */ 5834 6516 5835 6517 .about-wrap .point-releases { … … 5847 6529 /* WordPress Version Badge */ 5848 6530 5849 6531 .wp-badge { 5850 padding-top: 142px; 5851 height: 50px; 5852 width: 173px; 5853 font-weight: bold; 6532 background: url('../images/wordpress-logo.svg?ver=20131107') #000 no-repeat; 6533 background-position: center 30px; 6534 background-size: 110px 110px; 5854 6535 font-size: 14px; 5855 6536 text-align: center; 5856 margin: 0 -5px; 5857 background: url('../images/wp-badge.png?ver=20111120') no-repeat; 6537 font-weight: 600; 6538 margin: 5px 0 0; 6539 padding-top: 155px; 6540 height: 45px; 6541 display: inline-block; 6542 width: 165px; 6543 text-rendering: optimizeLegibility; 5858 6544 } 5859 6545 6546 5860 6547 .about-wrap .wp-badge { 5861 6548 position: absolute; 5862 6549 top: 0; … … 5870 6557 } 5871 6558 5872 6559 .about-wrap h2 .nav-tab { 5873 padding: 4px 1 0px 6px;6560 padding: 4px 15px 6px; 5874 6561 margin: 0 3px -1px 0; 5875 6562 font-size: 18px; 5876 6563 vertical-align: top; 6564 border-width: 1px; 5877 6565 } 5878 6566 5879 6567 .about-wrap h2 .nav-tab-active { 5880 6568 font-weight: bold; 5881 padding-top: 3px;5882 6569 } 5883 6570 5884 6571 /* Changelog / Update screen */ … … 5898 6585 } 5899 6586 5900 6587 .about-wrap .feature-section.two-col div { 6588 position: relative; 5901 6589 width: 47%; 5902 6590 margin-right: 4.999999999%; 5903 6591 float: left; 5904 6592 } 5905 6593 5906 6594 .about-wrap .feature-section.three-col div { 6595 position: relative; 5907 6596 width: 30%; 5908 6597 margin-right: 4.999999999%; 5909 6598 float: left; … … 5911 6600 5912 6601 .about-wrap .three-col.about-updates .col-1, 5913 6602 .about-wrap .three-col.about-updates .col-3 { 5914 width: 37%;6603 width: 50%; 5915 6604 margin: 0; 6605 -moz-box-sizing: border-box; 6606 box-sizing: border-box; 5916 6607 } 5917 6608 6609 .about-wrap .three-col.about-updates .col-1 { 6610 z-index: 1; 6611 padding-right: 100px; 6612 } 6613 5918 6614 .about-wrap .three-col.about-updates .col-2 { 5919 width: 16%; 5920 margin: 0 5%; 6615 position: absolute; 6616 width: 100%; 6617 text-align: center; 5921 6618 } 5922 6619 6620 .about-wrap .three-col.about-updates .col-3 { 6621 padding-left: 100px; 6622 } 6623 5923 6624 .about-wrap .feature-section.col .last-feature { 5924 6625 margin-right: 0; 5925 6626 } … … 5935 6636 .about-wrap .about-passwords { 5936 6637 margin: 20px 0; 5937 6638 padding: 1px 20px 10px; 5938 background-color: #f 9f9f9;6639 background-color: #fff; 5939 6640 } 5940 6641 5941 6642 .about-wrap .about-auto-update { … … 5980 6681 margin-left: 3em; 5981 6682 } 5982 6683 6684 /* Icons to replace images. */ 5983 6685 6686 .about-wrap .feature-section .col-2 img, 6687 .about-wrap .feature-section.two-col p img { 6688 display: none; 6689 } 6690 6691 .about-wrap .feature-section .col-2:before, 6692 .about-wrap .feature-section .col-2:after, 6693 .about-wrap .feature-section.two-col p:before { 6694 display: inline-block; 6695 position: relative; 6696 font: normal 50px/125px 'dashicons'; 6697 speak: none; 6698 content: '\f147'; 6699 -webkit-font-smoothing: antialiased; 6700 } 6701 6702 .about-wrap .feature-section .col-2:before { 6703 width: 100%; 6704 } 6705 6706 .about-wrap .feature-section .col-2:after { 6707 position: absolute; 6708 top: 0; 6709 left: 0; 6710 width: 100%; 6711 font-size: 170px; 6712 line-height: 125px; 6713 content: '\f113'; 6714 } 6715 6716 .about-wrap .feature-section.two-col p:before { 6717 float: right; 6718 top: -25px; 6719 font-size: 130px; 6720 line-height: 1; 6721 content: '\f179'; 6722 } 6723 6724 .about-wrap .feature-section.two-col .last-feature p:before { 6725 top: -15px; 6726 font-size: 110px; 6727 content: '\f319'; 6728 } 6729 6730 .about-wrap .about-passwords .feature-section.two-col p:before { 6731 content: ''; 6732 } 6733 5984 6734 /* Return to Dashboard Home link */ 5985 6735 5986 6736 .about-wrap .return-to-dashboard { … … 6082 6832 } 6083 6833 6084 6834 .wp-full-overlay { 6085 background: #fff;6835 background: transparent; 6086 6836 z-index: 500000; 6087 6837 position: fixed; 6088 6838 overflow: visible; … … 6096 6846 6097 6847 .wp-full-overlay-sidebar { 6098 6848 -webkit-box-sizing: border-box; 6099 -moz-box-sizing: border-box; 6100 box-sizing: border-box; 6101 6849 -moz-box-sizing: border-box; 6850 box-sizing: border-box; 6102 6851 position: fixed; 6103 6852 width: 300px; 6104 6853 height: 100%; … … 6109 6858 margin: 0; 6110 6859 z-index: 10; 6111 6860 overflow: auto; 6112 background: #f5f5f5;6113 border-right: 1px solid rgba( 0, 0, 0, 0.2 );6861 background: transparent; 6862 border-right: none; 6114 6863 } 6115 6864 6116 6865 .wp-full-overlay.collapsed .wp-full-overlay-sidebar { … … 6138 6887 bottom: 0; 6139 6888 right: 0; 6140 6889 width: 3px; 6141 box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;6142 6890 z-index: 1000; 6143 6891 } 6144 6892 … … 6160 6908 line-height: 45px; 6161 6909 z-index: 10; 6162 6910 margin: 0; 6911 border-top: none; 6912 -webkit-box-shadow: none; 6913 box-shadow: none; 6163 6914 } 6164 6915 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; 6916 .wp-full-overlay-sidebar .wp-full-overlay-header a.back { 6917 margin-top: 10px; 6169 6918 } 6170 6919 6171 6920 .wp-full-overlay-sidebar .wp-full-overlay-footer { 6172 6921 bottom: 0; 6173 border-bottom: 0; 6174 border-top: 1px solid #dfdfdf; 6175 box-shadow: inset 0 1px 0 0px #fff; 6922 border-bottom: none; 6923 border-top: none; 6924 -webkit-box-shadow: none; 6925 box-shadow: none; 6176 6926 } 6177 6927 6178 6928 .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { … … 6184 6934 overflow: auto; 6185 6935 } 6186 6936 6187 .wp-full-overlay-sidebar-content .accordion-section:first-child {6188 border-top: 1px solid #fff;6189 }6190 6191 6937 /* Close Link */ 6192 6938 .wp-full-overlay .close-full-overlay { 6193 6939 text-decoration: none; … … 6214 6960 } 6215 6961 6216 6962 .wp-full-overlay .collapse-sidebar-arrow { 6217 position: absolute;6218 margin-top: 2px;6219 margin-left: 2px;6963 position: static; 6964 margin-top: 0; 6965 margin-left: 0; 6220 6966 display: block; 6221 width: 15px;6222 height: 15px;6223 background: transparent url('../images/arrows.png') no-repeat -1px -73px;6967 width: auto; 6968 height: auto; 6969 background: none; 6224 6970 } 6225 6971 6972 .wp-full-overlay .collapse-sidebar-arrow:before { 6973 float: left; 6974 content: "\f148"; 6975 font: normal 20px/1 'dashicons'; 6976 speak: none; 6977 display: block; 6978 padding: 0; 6979 text-indent: 0; 6980 text-align: center; 6981 position: relative; 6982 -webkit-font-smoothing: antialiased; 6983 text-decoration: none !important; 6984 } 6985 6226 6986 .wp-full-overlay.collapsed .collapse-sidebar-arrow { 6227 6987 background-position: -1px -109px; 6228 6988 } … … 6230 6990 .wp-full-overlay .collapse-sidebar-label { 6231 6991 position: absolute; 6232 6992 left: 100%; 6233 color: #808080;6234 6993 line-height: 20px; 6235 6994 margin-left: 10px; 6236 6995 } … … 6238 6997 .wp-full-overlay.collapsed .collapse-sidebar-label { 6239 6998 display: none; 6240 6999 } 6241 6242 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {6243 color: #666;6244 }6245 6246 7000 /* Animations */ 6247 7001 .wp-full-overlay, 6248 7002 .wp-full-overlay-sidebar, … … 6253 7007 -ms-transition-property: left, right, top, bottom, width, margin; 6254 7008 -o-transition-property: left, right, top, bottom, width, margin; 6255 7009 transition-property: left, right, top, bottom, width, margin; 6256 6257 7010 -webkit-transition-duration: 0.2s; 6258 7011 -moz-transition-duration: 0.2s; 6259 7012 -ms-transition-duration: 0.2s; … … 6261 7014 transition-duration: 0.2s; 6262 7015 } 6263 7016 6264 6265 7017 /*------------------------------------------------------------------------------ 6266 7018 24.0 - Customize Loader 6267 7019 ------------------------------------------------------------------------------*/ … … 6297 7049 } 6298 7050 6299 7051 .customize-loading #customize-container { 6300 background: #fff url( "../images/wpspin_light.gif") no-repeat fixed center center;6301 background-size: 16px 16px;7052 background: #fff url('../images/spinner.gif') no-repeat fixed center center; 7053 background-size: 20px 20px; 6302 7054 } 6303 7055 6304 7056 #customize-container iframe, … … 6318 7070 bottom: 16px; 6319 7071 } 6320 7072 7073 #customize-controls { 7074 margin-top: 0; 7075 } 7076 6321 7077 #theme-installer { 6322 7078 display: none; 6323 7079 } … … 6397 7153 } 6398 7154 6399 7155 .pagenav span { 6400 font-weight: bold;7156 font-weight: 600; 6401 7157 margin: 0 6px; 6402 7158 } 6403 7159 6404 7160 .row-title { 6405 font-size: 1 3px !important;6406 font-weight: bold;7161 font-size: 14px !important; 7162 font-weight: 600; 6407 7163 } 6408 7164 6409 7165 .column-author img, .column-username img { … … 6413 7169 } 6414 7170 6415 7171 .row-actions { 7172 font-size: 13px; 6416 7173 visibility: hidden; 6417 7174 padding: 2px 0 0; 6418 7175 } 6419 7176 7177 .mobile .row-actions { 7178 visibility: visible; 7179 } 7180 6420 7181 tr:hover .row-actions, 6421 .mobile .row-actions,6422 .row-actions.visible,6423 7182 div.comment-item:hover .row-actions { 6424 7183 visibility: visible; 6425 7184 } 6426 7185 6427 /* deprecated */6428 7186 .row-actions-visible { 6429 7187 padding: 2px 0 0; 6430 7188 } … … 6443 7201 font-size: 12px; 6444 7202 overflow: auto; 6445 7203 } 7204 .tagchecklist br { 7205 display: none; 7206 } 6446 7207 .tagchecklist strong { 6447 7208 margin-left: -8px; 6448 7209 position: absolute; … … 6451 7212 margin-right: 25px; 6452 7213 display: block; 6453 7214 float: left; 6454 font-size: 1 1px;7215 font-size: 13px; 6455 7216 line-height: 1.8em; 6456 7217 white-space: nowrap; 6457 7218 cursor: default; 6458 7219 } 7220 6459 7221 .tagchecklist span a { 6460 margin: 4px 0 0 -10px;7222 margin: 1px 0 0 -17px; 6461 7223 cursor: pointer; 6462 width: 10px;6463 height: 10px;7224 width: 20px; 7225 height: 20px; 6464 7226 display: block; 6465 7227 float: left; 6466 text-indent: -9999px;7228 text-indent: 0; 6467 7229 overflow: hidden; 6468 7230 position: absolute; 6469 7231 } … … 6478 7240 6479 7241 #poststuff h3, 6480 7242 .metabox-holder h3 { 6481 font-size: 15px; 6482 font-weight: normal; 6483 padding: 7px 10px; 7243 font-size: 14px; 7244 padding: 7px 12px; 6484 7245 margin: 0; 6485 line-height: 1 ;7246 line-height: 1.4; 6486 7247 } 6487 7248 6488 7249 #poststuff .inside { 6489 margin: 6px 0 8px;7250 margin: 6px 0 0 0; 6490 7251 } 6491 7252 6492 7253 #poststuff .inside #parent_id, … … 6590 7351 6591 7352 .error-message { 6592 7353 color: red; 6593 font-weight: bold;7354 font-weight: 600; 6594 7355 } 6595 7356 6596 7357 /* Scrollbar fix for bulk upgrade iframe */ … … 6636 7397 width: auto; 6637 7398 } 6638 7399 7400 #post-body #post-body-content #namediv h3 { 7401 margin-top: 0; 7402 } 7403 7404 #namediv h3 label { 7405 vertical-align: baseline; 7406 } 7407 6639 7408 #namediv table { 6640 7409 width: 100%; 6641 7410 } … … 6745 7514 } 6746 7515 6747 7516 .js #dashboard-widgets h3 .postbox-title-action { 6748 right: 3 0px;7517 right: 33px; 6749 7518 } 6750 7519 6751 7520 #dashboard-widgets h4 { 6752 7521 font-weight: normal; 6753 font-size: 1 3px;7522 font-size: 14px; 6754 7523 margin: 0 0 .2em; 6755 7524 padding: 0; 6756 7525 } 6757 7526 7527 #dashboard_plugins h5 { 7528 font-size: 14px; 7529 } 7530 6758 7531 /* Right Now */ 6759 7532 #dashboard_right_now p.sub, 6760 7533 #dashboard_right_now .table, #dashboard_right_now .versions { … … 6762 7535 } 6763 7536 6764 7537 #dashboard_right_now .inside { 6765 font-size: 1 2px;7538 font-size: 13px; 6766 7539 padding-top: 20px; 6767 7540 } 6768 7541 6769 7542 #dashboard_right_now p.sub { 6770 7543 padding: 5px 0 15px; 6771 color: #8f8f8f; 6772 font-size: 14px; 7544 font-size: 11px; 7545 font-weight: 600; 7546 left: 14px; 7547 letter-spacing: 1px; 6773 7548 position: absolute; 7549 text-transform: uppercase; 6774 7550 top: -17px; 6775 left: 15px;6776 7551 } 6777 7552 6778 7553 #dashboard_right_now .table { … … 6783 7558 6784 7559 #dashboard_right_now .table_content { 6785 7560 float: left; 6786 border-top-width: 1px; 6787 border-top-style: solid; 6788 width: 45%; 7561 width: 48%; 6789 7562 } 6790 7563 6791 7564 #dashboard_right_now .table_discussion { 6792 7565 float: right; 6793 border-top-width: 1px;6794 border-top-style: solid;6795 7566 width: 45%; 6796 7567 } 6797 7568 … … 6820 7591 } 6821 7592 6822 7593 #dashboard_right_now .t { 6823 font-size: 12px;6824 7594 padding-right: 12px; 6825 padding-top: 6px;6826 color: #777;6827 7595 } 6828 7596 7597 #dashboard_right_now .t, 7598 #dashboard_right_now .b { 7599 font-size: 14px; 7600 padding-top: 4px; 7601 } 7602 6829 7603 #dashboard_right_now .t a { 6830 7604 white-space: nowrap; 6831 7605 } … … 6864 7638 } 6865 7639 6866 7640 #dashboard_recent_comments .comment-meta .approve { 6867 font-style: italic; 6868 font-family: sans-serif; 6869 font-size: 10px; 7641 font-family: "Open Sans", sans-serif; 7642 font-size: 13px; 7643 line-height: 1; 7644 margin: 0 10px; 6870 7645 } 6871 7646 6872 7647 #dashboard_recent_comments .subsubsub { … … 6879 7654 } 6880 7655 6881 7656 #the-comment-list .comment-item { 6882 padding: 1em 1 0px;7657 padding: 1em 12px; 6883 7658 border-top: 1px solid; 6884 7659 } 6885 7660 6886 7661 #the-comment-list .pingback { 6887 padding-left: 9px !important;7662 padding-left: 12px !important; 6888 7663 } 6889 7664 6890 7665 #the-comment-list .comment-item, 6891 7666 #the-comment-list #replyrow { 6892 margin: 0 -1 0px;7667 margin: 0 -12px; 6893 7668 } 6894 7669 6895 7670 #the-comment-list .comment-item:first-child { … … 6902 7677 } 6903 7678 6904 7679 #the-comment-list .comment-item h4 { 6905 line-height: 1. 7em;6906 margin-top: -0.4em;6907 color: # 777;7680 line-height: 1.5em; 7681 margin-top: 0; 7682 color: #999; 6908 7683 } 6909 7684 6910 7685 #the-comment-list .comment-item h4 cite { … … 6927 7702 #the-comment-list .comment-item p.row-actions { 6928 7703 margin: 3px 0 0; 6929 7704 padding: 0; 6930 font-size: 1 2px;7705 font-size: 13px; 6931 7706 } 6932 7707 6933 7708 /* QuickPress */ 7709 #header-logo { 7710 display: none; 7711 } 7712 7713 #site-heading:before { 7714 top: 3px; 7715 position: relative; 7716 display: inline-block; 7717 font: normal 18px/1 'dashicons'; 7718 speak: none; 7719 color: #727272; 7720 content: '\f120'; 7721 -webkit-font-smoothing: antialiased; 7722 } 6934 7723 .no-js #dashboard_quick_press { 6935 7724 display: none; 6936 7725 } … … 6967 7756 6968 7757 #tags-input-wrap #tags-input { 6969 7758 outline: none; 7759 padding: 3px 6px; 6970 7760 } 6971 7761 6972 7762 #title-wrap #title-prompt-text { … … 6976 7766 6977 7767 #tags-input-wrap #tags-input-prompt-text { 6978 7768 font-size: 1em; 6979 padding: 4px 8px;7769 padding: 5px 8px; 6980 7770 } 6981 7771 6982 7772 #dashboard_quick_press .input-text-wrap, 6983 7773 #dashboard_quick_press .textarea-wrap { 6984 margin: 0 0 1em 0;7774 margin: 0 0 .7em 0; 6985 7775 } 6986 7776 7777 #dashboard_quick_press .input-text-wrap { 7778 margin-right: 1px; 7779 } 7780 7781 #dashboard_quick_press .textarea-wrap { 7782 margin-left: 1px; 7783 } 7784 6987 7785 #dashboard_quick_press .wp-media-buttons { 6988 margin: 0 0 .2em1px;7786 margin: 0 0 2px 1px; 6989 7787 padding: 0; 6990 7788 } 6991 7789 6992 7790 #dashboard_quick_press .wp-media-buttons a { 6993 7791 color: #777; 7792 margin-bottom: 0; 6994 7793 } 6995 7794 6996 7795 #dashboard-widgets #dashboard_quick_press form p.submit input { … … 7033 7832 7034 7833 #dashboard_recent_drafts h4 abbr { 7035 7834 font-weight: normal; 7036 font-family: sans-serif;7835 font-family: "Open Sans", sans-serif; 7037 7836 font-size: 12px; 7038 7837 color: #999; 7039 7838 margin-left: 3px; … … 7047 7846 } 7048 7847 7049 7848 a.rsswidget { 7050 font-size: 13px; 7849 font-size: 14px; 7850 font-weight: 600; 7051 7851 line-height: 1.7em; 7052 7852 } 7053 7853 … … 7058 7858 7059 7859 .rss-widget span.rss-date { 7060 7860 color: #999; 7061 font-size: 1 2px;7861 font-size: 13px; 7062 7862 margin-left: 3px; 7063 7863 } 7064 7864 … … 7108 7908 /* Browser Nag */ 7109 7909 #dashboard_browser_nag a.update-browser-link { 7110 7910 font-size: 1.2em; 7111 font-weight: bold;7911 font-weight: 600; 7112 7912 } 7113 7913 7114 7914 #dashboard_browser_nag a { … … 7144 7944 7145 7945 #dashboard_browser_nag.postbox h3 { 7146 7946 border-bottom-color: #f6e2ac; 7147 text-shadow: none;7148 7947 background: transparent none; 7149 7948 color: #fff; 7150 7949 -webkit-box-shadow: none; … … 7155 7954 color: #fff; 7156 7955 } 7157 7956 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; 7957 /* Make the browser nags easier to read with Open Sans */ 7958 7959 #dashboard_browser_nag h3.hndle { 7960 border: none; 7961 font-weight: 600; 7962 font-size: 20px; 7963 padding-top: 10px; 7161 7964 } 7162 7965 7163 #dashboard_browser_nag a.browse-happy-link, 7164 #dashboard_browser_nag a.update-browser-link { 7165 text-shadow: #d29a04 0 1px 0; 7966 .postbox#dashboard_browser_nag p a.dismiss { 7967 font-size: 14px; 7166 7968 } 7167 7969 7970 .postbox#dashboard_browser_nag p, 7971 .postbox#dashboard_browser_nag a, 7972 .postbox#dashboard_browser_nag p.browser-update-nag { 7973 font-size: 16px; 7974 } 7168 7975 7976 7169 7977 /* login */ 7170 7978 7979 #loginform p.submit, 7980 .login-action-lostpassword p.submit { 7981 border: none; 7982 margin: -10px 0 20px; /* May want to revisit this */ 7983 } 7984 7171 7985 .login * { 7172 7986 margin: 0; 7173 7987 padding: 0; 7174 7988 } 7175 7989 7176 7990 .login form { 7177 margin-left: 8px; 7991 margin-top: 20px; 7992 margin-left: 0; 7178 7993 padding: 26px 24px 46px; 7179 7994 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; 7995 overflow: hidden; 7184 7996 } 7185 7997 7186 7998 .login form .forgetmenot { … … 7198 8010 } 7199 8011 7200 8012 #login form p.submit { 8013 margin: 0; 7201 8014 padding: 0; 7202 8015 } 7203 8016 … … 7211 8024 line-height: 19px; 7212 8025 } 7213 8026 8027 .login h1 { 8028 text-align: center; 8029 } 8030 7214 8031 .login h1 a { 7215 background-image: url('../images/wordpress-logo. png?ver=20120216');7216 background-size: 274px 63px;7217 background-position: top center;8032 background-image: url('../images/wordpress-logo.svg?ver=20131107'); 8033 background-size: 80px 80px; 8034 background-position: center top; 7218 8035 background-repeat: no-repeat; 7219 width: 326px; 7220 height: 67px; 8036 color: #999; 8037 height: 80px; 8038 font-size: 20px; 8039 font-weight: normal; 8040 line-height: 1.3em; 8041 margin: 0 auto 25px; 8042 padding: 0; 8043 text-decoration: none; 8044 width: 80px; 7221 8045 text-indent: -9999px; 7222 8046 outline: none; 7223 8047 overflow: hidden; 7224 padding-bottom: 15px;7225 8048 display: block; 7226 8049 } 7227 8050 … … 7233 8056 7234 8057 #login_error, 7235 8058 .login .message { 7236 margin : 0 0 16px 8px;8059 margin-left: 0; 7237 8060 padding: 12px; 7238 8061 } 7239 8062 7240 8063 .login #nav, 7241 8064 .login #backtoblog { 7242 text-shadow: #fff 0 1px 0; 7243 margin: 0 0 0 16px; 7244 padding: 16px 16px 0; 8065 font-size: 13px; 8066 padding: 0 24px 0; 7245 8067 } 7246 8068 8069 .login #nav { 8070 margin: 24px 0 0 0; 8071 } 8072 7247 8073 #backtoblog { 7248 padding: 12px 16px0;8074 margin: 16px 0 0 0; 7249 8075 } 7250 8076 7251 8077 .login form .input, … … 7268 8094 7269 8095 .login #pass-strength-result { 7270 8096 width: 250px; 7271 font-weight: bold;8097 font-weight: 600; 7272 8098 border-style: solid; 7273 8099 border-width: 1px; 7274 8100 margin: 12px 0 6px; … … 7320 8146 /* ms */ 7321 8147 /* Dashboard: MS Specific Data */ 7322 8148 #dashboard_right_now p.musub { 7323 margin-top: 12px; 8149 margin: 20px -2px 0; 8150 padding: 15px 5px 10px; 7324 8151 border-top: 1px solid #ececec; 7325 padding-left: 16px;7326 8152 position: static; 7327 8153 } 7328 8154 … … 7339 8165 border-top: none; 7340 8166 } 7341 8167 7342 #dashboard_right_now div.musubtable .t { 8168 #dashboard_right_now div.musubtable .t, 8169 #dashboard_right_now div.musubtable .b { 8170 vertical-align: top; 8171 padding: 0; 7343 8172 white-space: normal; 7344 8173 } 7345 8174 8175 #dashboard_right_now div.musubtable .b { 8176 padding-right: 3px; 8177 } 8178 7346 8179 /* Background Color for Site Status */ 7347 8180 .wp-list-table .site-deleted { 7348 8181 background: #ff8573; … … 7363 8196 display: block; 7364 8197 } 7365 8198 7366 #nav-menu-meta ul.outer-border {7367 -webkit-border-radius: 3px;7368 border-radius: 3px;7369 }7370 7371 8199 .accordion-section ul.category-tabs, 7372 8200 .accordion-section ul.add-menu-item-tabs, 7373 8201 .accordion-section ul.wp-tab-bar { … … 7391 8219 margin-top: 23px; 7392 8220 } 7393 8221 8222 #nav-menus-frame .accordion-section-content .inside { 8223 font-size: 14px; 8224 } 8225 7394 8226 #wpbody-content #menu-settings-column { 7395 8227 display:inline; 7396 8228 width:281px; … … 7406 8238 } 7407 8239 7408 8240 .metabox-holder-disabled .postbox, 7409 .metabox-holder-disabled .accordion-section-content { 8241 .metabox-holder-disabled .accordion-section-content, 8242 .metabox-holder-disabled .accordion-section-title { 7410 8243 opacity: 0.5; 7411 8244 filter: alpha(opacity=50); 7412 8245 } … … 7440 8273 margin-top: 23px; 7441 8274 padding: 10px; 7442 8275 overflow: hidden; 7443 -webkit-border-radius: 3px;7444 border-radius: 3px;7445 8276 } 7446 8277 7447 8278 .manage-menus select { … … 7467 8298 margin: 0 0 10px; 7468 8299 } 7469 8300 8301 #post-body #post-body-content h3 { 8302 margin-top: 1em; 8303 } 8304 7470 8305 .menu-settings { 8306 border-top-width: 1px; 8307 border-top-style: solid; 7471 8308 margin-top: 2em; 7472 overflow: hidden;7473 8309 } 7474 8310 7475 8311 .menu-settings dl { 7476 8312 margin: 0 0 10px; 7477 8313 overflow: hidden; 7478 position: relative;7479 8314 } 7480 8315 7481 8316 .menu-settings dd { … … 7484 8319 width: 60%; 7485 8320 } 7486 8321 8322 .menu-settings dt { 8323 float: left; 8324 clear: both; 8325 width: 18%; 8326 padding: 3px 1px 0; 8327 } 8328 8329 .menu-settings label { 8330 vertical-align: baseline; 8331 } 8332 7487 8333 .menu-edit .checkbox-input { 7488 8334 margin-top: 4px; 7489 8335 } … … 7523 8369 7524 8370 #nav-menu-header { 7525 8371 border-bottom: 1px solid; 7526 margin-bottom: 13px;8372 margin-bottom: 0; 7527 8373 } 7528 8374 7529 8375 #nav-menu-header .menu-name-label { 7530 margin-top: 2px;8376 margin-top: 4px; 7531 8377 } 7532 8378 7533 #nav-menu-footer {7534 border-top: 1px solid;7535 }7536 7537 8379 .nav-menus-php #post-body div.updated, 7538 8380 .nav-menus-php #post-body div.error { 7539 8381 margin: 0; … … 7545 8387 } 7546 8388 7547 8389 #menu-management .menu-add-new abbr { 7548 font-weight: bold;8390 font-weight:600; 7549 8391 } 7550 8392 7551 8393 #select-nav-menu-container { … … 7624 8466 margin: 0; 7625 8467 } 7626 8468 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 8469 .customlinkdiv .howto input { 7652 8470 width: 180px; 7653 8471 } … … 7685 8503 .nav-menus-php .submitcancel { 7686 8504 display: block; 7687 8505 float: left; 7688 margin: 4px 0;8506 margin: 6px 0; 7689 8507 line-height: 15px; 7690 8508 } 7691 8509 … … 7763 8581 } 7764 8582 7765 8583 .nav-menus-php .howto span { 7766 margin-top: 4px;8584 margin-top: 6px; 7767 8585 display: block; 7768 8586 float: left; 7769 8587 } … … 7806 8624 margin-top: -3px; 7807 8625 } 7808 8626 8627 .menu-item-title input[type=checkbox] { 8628 display: inline-block; 8629 margin-top: -4px; 8630 } 8631 7809 8632 /* Nav Menu */ 7810 8633 #menu-container .inside { 7811 8634 padding-bottom: 10px; … … 7836 8659 margin: 9px 0 0; 7837 8660 } 7838 8661 7839 .menu-item- handle {8662 .menu-item-bar .menu-item-handle { 7840 8663 border: 1px solid #dfdfdf; 7841 8664 position: relative; 7842 8665 padding-left: 10px; 8666 padding-right: 2px; 7843 8667 height: auto; 7844 8668 width: 400px; 7845 8669 line-height: 35px; 7846 text-shadow: 0 1px 0 #FFFFFF;7847 8670 overflow: hidden; 7848 8671 word-wrap: break-word; 7849 8672 } … … 7862 8685 -webkit-border-bottom-left-radius: 0; 7863 8686 border-bottom-right-radius: 0; 7864 8687 border-bottom-left-radius: 0; 8688 border-bottom: none; 7865 8689 } 7866 8690 7867 8691 .no-js .menu-item-edit-active .item-edit { … … 7874 8698 7875 8699 .menu li.deleting .menu-item-handle { 7876 8700 background-image: none; 7877 text-shadow: 0 0 0;7878 8701 } 7879 8702 7880 8703 .menu-item-handle .item-title { 7881 font-size: 1 2px;7882 font-weight: bold;7883 padding: 7px 0;8704 font-size: 13px; 8705 font-weight: 600; 8706 padding: 5px 0; 7884 8707 line-height: 20px; 7885 min-height: 20px;7886 8708 display: block; 7887 8709 margin-right: 13em; 7888 8710 } … … 7945 8767 /* Menu item controls */ 7946 8768 .item-type { 7947 8769 font-size: 12px; 7948 padding-right: 10px; 8770 padding: 7px 10px; 8771 line-height: 22px; 8772 display: block; 7949 8773 } 7950 8774 7951 8775 .item-controls { … … 7970 8794 .nav-menus-php .item-edit { 7971 8795 position: absolute; 7972 8796 right: -20px; 7973 top: 0;8797 top: -24px; 7974 8798 display: block; 7975 width: 30px;8799 width: 40px; 7976 8800 height: 36px; 7977 overflow: hidden;7978 8801 text-indent:-999em; 7979 border-bottom: 1px solid; 7980 -webkit-border-bottom-left-radius: 3px; 7981 border-bottom-left-radius: 3px; 8802 margin-right: 0 !important; 7982 8803 } 7983 8804 7984 8805 /* Menu editing */ … … 7988 8809 7989 8810 .menu-item-settings { 7990 8811 display: block; 7991 width: 40 0px;8812 width: 402px; 7992 8813 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 8814 } 8000 8815 8001 8816 .menu-item-settings .field-move a { … … 8005 8820 8006 8821 .menu-item-edit-active .menu-item-settings { 8007 8822 display: block; 8823 border-top: none; 8008 8824 } 8009 8825 8010 8826 .menu-item-edit-inactive .menu-item-settings { 8011 8827 display: none; 8828 border-top: none; 8012 8829 } 8013 8830 8014 8831 .add-menu-item-pagelinks { … … 8059 8876 /* Major/minor publishing actions (classes) */ 8060 8877 .nav-menus-php .major-publishing-actions { 8061 8878 clear: both; 8062 padding: 3px 0 5px;8879 padding: 3px 0 6px; 8063 8880 } 8064 8881 8065 8882 .nav-menus-php .major-publishing-actions .publishing-action { 8066 8883 text-align: right; 8067 8884 float: right; 8068 8885 line-height: 23px; 8069 margin: 2px 0 1px;8886 margin: 4px 0 1px; 8070 8887 } 8071 8888 8072 8889 .nav-menus-php .blank-slate .menu-settings { … … 8137 8954 #plugin-information-header { 8138 8955 margin: 0; 8139 8956 padding: 0 5px; 8140 font-weight: bold;8957 font-weight: 600; 8141 8958 position: relative; 8142 8959 border-bottom-width: 1px; 8143 8960 border-bottom-style: solid; … … 8152 8969 } 8153 8970 8154 8971 /* Install sidemenu */ 8972 #plugin-information { 8973 height: auto; 8974 } 8975 8155 8976 #plugin-information p.action-button { 8156 8977 width: 100%; 8157 8978 padding-bottom: 0; … … 8165 8986 8166 8987 #plugin-information .action-button a { 8167 8988 text-align: center; 8168 font-weight: bold;8989 font-weight: 600; 8169 8990 text-decoration: none; 8170 8991 display: block; 8171 8992 line-height: 2em; … … 8243 9064 #plugin-information pre { 8244 9065 padding: 7px; 8245 9066 overflow: auto; 9067 border-width: 1px; 9068 border-style: solid; 8246 9069 } 8247 9070 8248 /* press-this */ 8249 body.press-this { 8250 color: #333; 8251 margin: 0; 8252 padding: 0; 8253 min-width: 675px; 8254 min-height: 400px; 9071 .plugin-version-author-uri { 9072 font-size: 13px; 8255 9073 } 8256 9074 8257 9075 img { … … 8259 9077 } 8260 9078 8261 9079 /* Header */ 9080 #wphead { 9081 border-bottom-width: 1px; 9082 border-bottom-style: solid; 9083 } 9084 8262 9085 .press-this #wphead { 8263 9086 height: 32px; 8264 9087 margin-left: 0; … … 8294 9117 margin: 10px 0; 8295 9118 } 8296 9119 9120 .press-this .posting { 9121 margin-right: 252px; 9122 } 9123 8297 9124 .press-this-sidebar { 8298 9125 float: right; 8299 width: 2 00px;9126 width: 240px; 8300 9127 padding-top: 10px; 8301 9128 } 8302 9129 … … 8309 9136 box-sizing: border-box; 8310 9137 } 8311 9138 8312 .press-this .tagchecklist span a{8313 background: transparent url(../images/xit.gif) no-repeat 0 0;9139 .press-this .tagchecklist { 9140 margin-top: 8px; 8314 9141 } 8315 9142 8316 9143 .press-this #titlediv { … … 8319 9146 8320 9147 .press-this .wp-media-buttons { 8321 9148 cursor: default; 8322 padding: 8px 8px 0;9149 padding: 8px 8px 6px; 8323 9150 } 8324 9151 8325 9152 .press-this .howto { … … 8330 9157 display: block; 8331 9158 } 8332 9159 9160 .press-this #wp-content-editor-container { 9161 clear: none; 9162 } 9163 9164 .press-this #poststuff .inside { 9165 margin-top: 18px; 9166 } 9167 9168 .press-this .category-tabs { 9169 margin-bottom: 3px; 9170 } 9171 8333 9172 /* Editor/Main Column */ 8334 9173 .press-this #poststuff { 8335 9174 margin: 0 10px 10px; … … 8395 9234 } 8396 9235 8397 9236 h3.tb { 8398 text-shadow: 0 1px 0 #fff; 8399 font-weight: bold; 9237 font-weight: 600; 8400 9238 font-size: 12px; 8401 9239 margin-left: 5px; 8402 9240 } … … 8411 9249 min-width: 0; 8412 9250 } 8413 9251 8414 .js .postbox:hover .handlediv, 8415 .js .stuffbox:hover .handlediv { 8416 background: transparent url(../images/arrows.png) no-repeat 6px 7px; 9252 .js .meta-box-sortables .postbox:hover .handlediv { 9253 margin-right: 0 !important; 8417 9254 } 8418 9255 9256 /* Metabox collapse arrow indicators */ 9257 .js .sidebar-name .sidebar-name-arrow:before, 9258 .js .meta-box-sortables .postbox .handlediv:before { 9259 right: 12px; 9260 font: normal 20px/1 'dashicons'; 9261 speak: none; 9262 display: inline-block; 9263 padding: 8px 10px; 9264 top: 0; 9265 position: relative; 9266 -webkit-font-smoothing: antialiased; 9267 text-decoration: none !important; 9268 } 9269 9270 /* Make the tiny arrow visible on the widgets page at all times */ 9271 .js .widgets-holder-wrap .sidebar-name .sidebar-name-arrow:before { 9272 color: rgba(136,136,136,.4); 9273 } 9274 .js .widgets-holder-wrap .sidebar-name .sidebar-name-arrow:before { 9275 content: '\f142'; 9276 } 9277 .js .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow:before { 9278 content: '\f140'; 9279 } 9280 9281 /* Show the arrow only on hover */ 9282 .js .sidebar-name:hover .sidebar-name-arrow:before, 9283 .js .meta-box-sortables .postbox:hover .handlediv:before { 9284 content: '\f142'; 9285 color: #888; 9286 } 9287 9288 .js .widgets-holder-wrap.closed:hover .sidebar-name-arrow:before, 9289 .js .meta-box-sortables .postbox.closed:hover .handlediv:before { 9290 content: '\f140'; 9291 } 9292 8419 9293 .press-this #submitdiv:hover .handlediv { 8420 9294 background: none; 8421 9295 } … … 8591 9465 visibility: hidden; 8592 9466 } 8593 9467 9468 /* TinyMCE */ 9469 #mce_fullscreen_container { 9470 background: #fff; 9471 } 9472 8594 9473 #photo-add-url-div input[type="text"] { 8595 9474 width: 300px; 8596 9475 } 8597 9476 8598 /* theme-editor */9477 /* Theme/Plugin Editor */ 8599 9478 .alignleft h3 { 8600 9479 margin: 0; 8601 9480 } 8602 9481 8603 h3 span {8604 font-weight: normal;8605 }8606 8607 9482 #template textarea { 8608 9483 font-family: Consolas, Monaco, monospace; 8609 font-size: 1 2px;9484 font-size: 13px; 8610 9485 width: 97%; 8611 9486 background: #f9f9f9; 8612 9487 outline: none; … … 8633 9508 8634 9509 #templateside ol, 8635 9510 #templateside ul { 8636 margin: .5em ;9511 margin: .5em 0; 8637 9512 padding: 0; 8638 9513 } 8639 9514 … … 8641 9516 margin: 4px 0; 8642 9517 } 8643 9518 8644 #templateside ul li a span.highlight { 8645 display:block; 9519 #templateside a, 9520 .theme-editor-php .highlight { 9521 display: block; 9522 padding: 3px 3px 3px 12px; 9523 text-decoration: none; 8646 9524 } 8647 9525 9526 .theme-editor-php .highlight { 9527 margin: -3px 3px -3px -12px; 9528 } 9529 9530 #templateside .highlight { 9531 border: none; 9532 font-weight: bold; 9533 } 9534 8648 9535 .nonessential { 8649 9536 font-size: 11px; 8650 9537 font-style: italic; 8651 9538 padding-left: 12px; 8652 9539 } 8653 9540 8654 .highlight {8655 padding: 3px 3px 3px 12px;8656 margin-left: -12px;8657 font-weight: bold;8658 border: 0 none;8659 }8660 8661 9541 #documentation { 8662 9542 margin-top: 10px; 8663 9543 } 9544 8664 9545 #documentation label { 8665 9546 line-height: 22px; 8666 vertical-align: top;8667 font-weight: bold;9547 vertical-align: baseline; 9548 font-weight: 600; 8668 9549 } 8669 9550 8670 9551 .fileedit-sub { … … 8725 9606 width: 300px; 8726 9607 } 8727 9608 9609 .widget-liquid-right .widget { 9610 position: relative; 9611 } 9612 8728 9613 .widget-liquid-right .widget, 8729 9614 .inactive-sidebar .widget, 8730 9615 .widget-liquid-right .sidebar-description { 8731 9616 width: 250px; 8732 9617 margin: 0 auto 20px; 9618 } 9619 9620 .widget-liquid-right .widget, 9621 .widget-liquid-right .sidebar-description { 8733 9622 overflow: hidden; 8734 9623 } 8735 9624 … … 8753 9642 8754 9643 div.sidebar-name { 8755 9644 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; 9645 border-bottom-width: 1px; 9646 border-bottom-style: solid; 8762 9647 } 8763 9648 8764 9649 .js .sidebar-name { … … 8783 9668 } 8784 9669 8785 9670 .js .closed .widgets-sortables, 8786 .js .closed .widget-holder { 9671 .js .closed .widget-holder, 9672 .js .closed br.clear { 8787 9673 display: none; 8788 9674 } 8789 9675 … … 8795 9681 padding: 7px 5px 0; 8796 9682 } 8797 9683 8798 #available-widgets .widget {8799 -webkit-box-shadow: none;8800 box-shadow: none;8801 }8802 8803 9684 .inactive-sidebar { 8804 9685 padding: 5px 5px 0; 8805 9686 } … … 8848 9729 } 8849 9730 8850 9731 .widget .widget-top { 8851 margin-bottom: -1px;8852 9732 font-size: 12px; 8853 font-weight: bold;9733 font-weight: 600; 8854 9734 height: 26px; 8855 overflow: hidden;8856 9735 } 8857 9736 9737 .widget .widget-top, 9738 .menu-item-handle { 9739 margin-top: 0; 9740 padding: 4px; 9741 } 9742 8858 9743 .widget-top .widget-title { 8859 9744 padding: 7px 9px; 8860 9745 } … … 8867 9752 display: block; 8868 9753 width: 24px; 8869 9754 height: 26px; 9755 text-decoration: none; 8870 9756 } 8871 9757 8872 9758 #available-widgets a.widget-action { 8873 9759 display: none; 8874 9760 } 8875 9761 8876 .widget-top a.widget-action { 8877 background: transparent url(../images/arrows.png) no-repeat 4px 6px; 9762 .widget-top a.widget-action, 9763 .widget-top a.widget-action:hover { 9764 background: none !important; 9765 border: none !important; 9766 width: 30px; 9767 margin-right: 0 !important; 9768 margin-top: 3px; 9769 text-decoration: none; 8878 9770 } 8879 9771 8880 .widget-top a.widget-action:hover { 8881 background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px; 9772 .nav-menus-php .item-edit:after, 9773 .widget-top a.widget-action:after, 9774 .control-section .accordion-section-title::after, 9775 .accordion-section-title::after { 9776 right: 0; 9777 content: '\f141'; 9778 border: none; 9779 background: none; 9780 font: normal 20px/1 'dashicons'; 9781 speak: none; 9782 display: block; 9783 padding: 0; 9784 text-indent: 0; 9785 text-align: center; 9786 position: relative; 9787 -webkit-font-smoothing: antialiased; 9788 text-decoration: none !important; 8882 9789 } 8883 9790 9791 .control-section .accordion-section-title::after, 9792 .accordion-section-title::after { 9793 float: right; 9794 right: 20px; 9795 top: -2px; 9796 } 9797 9798 .widget-top a.widget-action:after { 9799 content: '\f140'; 9800 } 9801 9802 .control-section.open .accordion-section-title::after, 9803 #customize-info.open .accordion-section-title::after, 9804 .nav-menus-php .menu-item-edit-active .item-edit:after { 9805 content: '\f140'; 9806 } 9807 9808 .nav-menus-php .item-controls .item-type { 9809 padding: 11px; 9810 margin-right: 10px; 9811 } 9812 8884 9813 .widget .widget-inside, 8885 9814 .widget .widget-description { 8886 9815 padding: 12px 12px 10px; … … 8908 9837 line-height: 1; 8909 9838 overflow: hidden; 8910 9839 white-space: nowrap; 9840 text-overflow: ellipsis; 8911 9841 } 8912 9842 8913 9843 .widgets-sortables { … … 9060 9990 /* Accordion */ 9061 9991 9062 9992 .accordion-section { 9063 border-top: 1px solid #fff;9064 9993 border-bottom: 1px solid #dfdfdf; 9065 9994 margin: 0; 9066 9995 } 9067 9996 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 9997 .accordion-section.open .accordion-section-content, 9077 9998 .no-js .accordion-section .accordion-section-content { 9078 9999 display: block; … … 9086 10007 display: none; 9087 10008 padding: 10px 20px 15px; 9088 10009 overflow: hidden; 9089 background: #f dfdfd;10010 background: #fff; 9090 10011 border-left: 1px solid #dfdfdf; 9091 10012 border-right: 1px solid #dfdfdf; 9092 10013 } … … 9108 10029 } 9109 10030 9110 10031 .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 10032 position: absolute; 9118 top: 25px;9119 right: 20px;10033 top: 12px; 10034 right: 10px; 9120 10035 z-index: 1; 9121 10036 } 9122 10037 … … 9138 10053 } 9139 10054 9140 10055 .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; 10056 border-left: none; 10057 border-right: none; 10058 padding: 10px 10px 11px 14px; 10059 line-height: 21px; 9147 10060 background: #f5f5f5; 9148 10061 background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5)); 9149 10062 background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5); … … 9153 10066 } 9154 10067 9155 10068 .control-section .accordion-section-title:after { 9156 top: 1 5px;10069 top: 11px; 9157 10070 } 9158 10071 9159 10072 .js .control-section:hover .accordion-section-title, 9160 10073 .js .control-section .accordion-section-title:hover, 9161 10074 .js .control-section.open .accordion-section-title, 9162 10075 .js .control-section .accordion-section-title:focus { 9163 color: # 000;10076 color: #fff; 9164 10077 background: #f9f9f9; 9165 10078 background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9)); 9166 10079 background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9); … … 9170 10083 } 9171 10084 9172 10085 .control-section.open .accordion-section-title { 10086 /* When expanded */ 9173 10087 border-bottom: 1px solid #dfdfdf; 9174 10088 } 9175 10089 10090 .sticky-menu #TB_window .updated { 10091 margin: 16px 0 0; 10092 } 10093 9176 10094 /* =Media Queries 9177 10095 -------------------------------------------------------------- */ 9178 10096 … … 9256 10174 (-webkit-min-device-pixel-ratio: 1.25), 9257 10175 (min-resolution: 120dpi) { 9258 10176 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 10177 tr.wp-locked .locked-indicator { 9282 10178 background-image: url('../images/lock-2x.png'); 9283 10179 background-size: 16px 16px; 9284 10180 } 9285 10181 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 10182 #content-resize-handle, 9297 10183 #post-body .wp_themeSkin .mceStatusbar a.mceResize { 9298 10184 background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom; … … 9309 10195 background-size: 21px 37px; 9310 10196 } 9311 10197 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 10198 .wp-full-overlay .collapse-sidebar-arrow { 9332 10199 background-image: url('../images/arrows-2x.png'); 9333 10200 background-size: 15px 123px; 9334 }9335 9336 .pressthis a span {9337 background-image: url(../images/press-this-2x.png?v=20121105);9338 10201 } 9339 10202 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 10203 .spinner, 9352 10204 .imgedit-wait, 9353 .customize-loading #customize-container { 9354 background-image: url(../images/wpspin_light-2x.gif); 10205 .customize-loading #customize-container, 10206 .revision-tick.completed-false { 10207 background-image: url('../images/spinner-2x.gif'); 9355 10208 } 9356 10209 9357 .wp-slider .ui-slider-handle:before {9358 background-image: url(../images/arrows-pr-2x.png);9359 background-size: 16px 102px;9360 }9361 9362 10210 } 9363 10211 9364 10212 /* =Localized CSS … … 9432 10280 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap { 9433 10281 margin-left: 8em; 9434 10282 } 10283 10284 10285 /* Thickbox styles */ 10286 10287 .tb-close-icon { 10288 background: none; 10289 height: 16px; 10290 margin: -2px -3px 0 0; 10291 width: 16px; 10292 } 10293 10294 .tb-close-icon:before { 10295 content: '\f158'; 10296 color: #ccc; 10297 font: normal 20px/1 'dashicons'; 10298 speak: none; 10299 vertical-align: middle; 10300 -webkit-font-smoothing: antialiased; 10301 } 10302 10303 .tb-close-icon:hover:before { 10304 color: #fff; 10305 } 10306 10307 #TB_closeAjaxWindow a { 10308 text-decoration: none; 10309 } 10310 No newline at end of file -
src/wp-admin/images/wordpress-logo.svg
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="32px" height="32.002px" viewBox="-319.5 568.499 32 32.002" enable-background="new -319.5 568.499 32 32.002" xml:space="preserve"><style>.style0{fill: #FFFFFF;}</style><g><g><path d="M-317.226 584.499c0 5.4 3.2 10.1 7.7 12.353l-6.547-17.938 C-316.799 580.62-317.226 582.509-317.226 584.499z" class="style0"/><path d="M-294.234 583.807c0-1.697-0.609-2.871-1.132-3.785c-0.695-1.132-1.348-2.089-1.348-3.22 c0-1.262 0.956-2.436 2.305-2.436c0.061 0 0.1 0 0.2 0.011c-2.442-2.237-5.695-3.604-9.269-3.604 c-4.796 0-9.014 2.46-11.468 6.187c0.322 0 0.6 0 0.9 0.017c1.436 0 3.658-0.175 3.658-0.175 c0.739-0.043 0.8 1 0.1 1.131c0 0-0.744 0.087-1.57 0.131l4.997 14.866l3.005-9.007l-2.139-5.859 c-0.739-0.044-1.439-0.131-1.439-0.131c-0.74-0.043-0.653-1.174 0.087-1.131c0 0 2.3 0.2 3.6 0.2 c1.435 0 3.658-0.175 3.658-0.175c0.739-0.043 0.8 1 0.1 1.131c0 0-0.744 0.087-1.57 0.131l4.96 14.753l1.369-4.574 C-294.687 586.344-294.234 584.981-294.234 583.807z" class="style0"/><path d="M-303.259 585.699l-4.119 11.967c1.23 0.4 2.5 0.6 3.9 0.559c1.599 0 3.131-0.275 4.558-0.777 c-0.036-0.061-0.07-0.123-0.099-0.189L-303.259 585.699z" class="style0"/><path d="M-291.456 577.914c0.059 0.4 0.1 0.9 0.1 1.411c0 1.393-0.261 2.958-1.044 4.916l-4.192 12.1 c4.08-2.379 6.824-6.799 6.824-11.862C-289.775 582.112-290.385 579.869-291.456 577.914z" class="style0"/><path d="M-303.5 568.499c-8.822 0-16 7.178-16 16c0 8.8 7.2 16 16 15.999s16-7.178 16-15.999 C-287.5 575.677-294.678 568.499-303.5 568.499z M-303.5 599.766c-8.418 0-15.267-6.85-15.267-15.267 c0-8.418 6.849-15.266 15.267-15.266c8.417 0 15.3 6.8 15.3 15.266C-288.234 592.916-295.083 599.766-303.5 599.766z" class="style0"/></g></g></svg> 2 No newline at end of file -
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; 84 -webkit-font-smoothing: subpixel-antialiased; 68 85 } 69 86 70 87 #wpadminbar .ab-sub-wrapper, … … 80 97 z-index: 99999; 81 98 } 82 99 83 #wpadminbar .quicklinks{84 border-left: 1px solid transparent;100 #wpadminbar ul#wp-admin-bar-root-default>li { 101 margin: 0 8px 0 0; 85 102 } 86 103 87 104 #wpadminbar .quicklinks ul { … … 96 113 outline: none; 97 114 } 98 115 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 116 #wpadminbar .quicklinks .ab-top-secondary > li { 109 border-left: 1px solid #333;110 border-right: 0;111 117 float: right; 112 118 } 113 119 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 120 #wpadminbar .quicklinks a, 121 121 #wpadminbar .quicklinks .ab-empty-item, 122 122 #wpadminbar .shortlink-input { 123 height: 28px;123 height: 32px; 124 124 display: block; 125 padding: 0 1 2px;125 padding: 0 10px; 126 126 margin: 0; 127 127 } 128 128 129 129 #wpadminbar .menupop .ab-sub-wrapper, 130 130 #wpadminbar .shortlink-input { 131 margin: 0 0 0 -1px;131 margin: 0; 132 132 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;133 -webkit-box-shadow: 1px 2px 2px rgba(0,0,0,0.2); 134 box-shadow: 1px 2px 2px rgba(0,0,0,0.2); 135 background: #333; 136 136 display: none; 137 137 position: absolute; 138 138 float: none; 139 border-width: 0 1px 1px 1px;140 border-style: solid;141 border-color: #dfdfdf;142 139 } 143 140 144 141 #wpadminbar.ie7 .menupop .ab-sub-wrapper, 145 142 #wpadminbar.ie7 .shortlink-input { 146 top: 28px;143 top: 32px; 147 144 left: 0; 148 145 } 149 146 150 #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {151 min-width: 100%;152 }153 154 147 #wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper { 155 148 right: 0; 156 149 left: auto; 157 margin: 0 -1px 0 0;158 150 } 159 151 160 #wpadminbar .ab-sub-wrapper > .ab-submenu:first-child {161 border-top: none;162 }163 164 152 #wpadminbar .ab-submenu { 165 153 padding: 6px 0; 166 border-top: 1px solid #dfdfdf;167 154 } 168 155 169 156 #wpadminbar .selected .shortlink-input { … … 185 172 #wpadminbar .shortlink-input { 186 173 line-height: 26px; 187 174 height: 26px; 188 text-shadow: none;189 175 white-space: nowrap; 190 176 min-width: 140px; 191 177 } … … 202 188 #wpadminbar .menupop li:hover > .ab-sub-wrapper, 203 189 #wpadminbar .menupop li.hover > .ab-sub-wrapper { 204 190 margin-left: 100%; 205 margin-top: -33px; 206 border-width: 1px; 191 margin-top: -32px; 207 192 } 208 193 209 194 #wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper, … … 217 202 #wpadminbar .ab-top-menu > li.hover > .ab-item, 218 203 #wpadminbar .ab-top-menu > li > .ab-item:focus, 219 204 #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); 205 color: #fff; 227 206 } 228 207 229 208 #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, 230 209 #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; 210 background: #333; 211 color: #2ea2cc; 236 212 } 237 213 238 #wpadminbar .hover .ab-label, 239 #wpadminbar.nojq .ab-item:focus .ab-label { 240 color: #fafafa; 214 #wpadminbar .ab-icon, 215 #wpadminbar .ab-item:before { 216 position: relative; 217 float: left; 218 font: normal 20px/1 'dashicons' !important; 219 speak: none; 220 padding: 4px 0; 221 -webkit-font-smoothing: antialiased; 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 } 269 267 270 #wpadminbar .menupop .menupop > .ab-item { 268 271 display: block; 269 background-image: url(../images/admin-bar-sprite.png?d=20120830);270 background-position: 95% -20px;271 background-repeat: no-repeat;272 272 padding-right: 2em; 273 273 } 274 274 275 #wpadminbar .menupop .menupop > .ab-item:before { 276 top: 0px; 277 right: 4px; 278 content: '\f139'; 279 } 280 275 281 #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 282 padding-left: 2em; 280 283 padding-right: 1em; 281 284 } 282 285 286 #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before { 287 top: 5px; 288 left: 3px; 289 content: '\f141'; 290 } 291 283 292 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary { 284 293 display: block; 285 294 position: relative; 286 295 right: auto; 287 296 margin: 0; 288 background: # eee;297 background: #4b4b4b; 289 298 -webkit-box-shadow: none; 290 299 box-shadow: none; 291 300 } 292 301 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;302 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li:hover > a, 303 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li.hover > a, 304 #wpadminbar .quicklinks .menupop .ab-sub-secondary > li .ab-item:focus a { 305 color: #2ea2cc; 297 306 } 298 307 299 308 #wpadminbar .quicklinks a span#ab-updates { 300 309 background: #eee; 301 310 color: #333; 302 text-shadow: none;303 311 display: inline; 304 312 padding: 2px 5px; 305 313 font-size: 10px; … … 315 323 316 324 #wpadminbar .ab-top-secondary { 317 325 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 326 } 325 327 326 328 #wpadminbar ul li:last-child, 327 329 #wpadminbar ul li:last-child .ab-item { 328 border-right: 0;329 330 -webkit-box-shadow: none; 330 331 box-shadow: none; 331 332 } … … 346 347 margin-right: 16px; 347 348 } 348 349 350 #wpadminbar #wp-admin-bar-user-actions.ab-submenu { 351 padding: 6px 0 12px; 352 } 353 349 354 #wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li { 350 355 margin-left: 88px; 351 356 } 352 357 353 #wp-admin-bar-user-actions > li > .ab-item {354 padding-left: 8px;355 }356 357 358 #wpadminbar #wp-admin-bar-user-info { 358 359 margin-top: 6px; 359 360 margin-bottom: 15px; … … 382 383 383 384 #wpadminbar #wp-admin-bar-user-info .display-name, 384 385 #wpadminbar #wp-admin-bar-user-info .username { 385 text-shadow: none;386 386 display: block; 387 387 } 388 388 389 389 #wpadminbar #wp-admin-bar-user-info .display-name { 390 color: # 333;390 color: #999; 391 391 } 392 392 393 393 #wpadminbar #wp-admin-bar-user-info .username { … … 398 398 #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { 399 399 width: 16px; 400 400 height: 16px; 401 border: 1px solid #999;402 401 padding: 0; 402 border: 1px solid #888; 403 403 background: #eee; 404 404 line-height: 24px; 405 405 vertical-align: middle; 406 margin: - 3px 0 0 6px;406 margin: -4px 0 0 6px; 407 407 float: none; 408 408 display: inline; 409 409 } 410 410 411 /** 412 * WP Logo 413 */ 414 #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon { 415 width: 20px; 416 height: 20px; 417 margin-right: 0; 418 padding: 6px 0 5px; 419 } 420 421 #wpadminbar #wp-admin-bar-wp-logo > .ab-item { 422 padding: 0 8px 0 8px; 423 } 424 425 #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before { 426 content: '\f120'; 427 } 428 411 429 /* 412 * My Sites 430 * My Sites & Site Title 413 431 */ 414 432 #wpadminbar .quicklinks li .blavatar { 415 vertical-align: middle; 416 margin: -3px 4px 0 0; 417 padding: 0; 433 float: left; 434 font: normal 16px/1 'dashicons' !important; 435 speak: none; 436 -webkit-font-smoothing: antialiased; 437 color: #eee; 418 438 } 419 439 420 #wpadminbar .quicklinks li div.blavatar { 421 background: url('../images/wpmini-blue.png') no-repeat; 440 #wpadminbar .quicklinks li a:hover .blavatar { 441 color: #2ea2cc; 442 } 443 444 #wpadminbar .quicklinks li .blavatar:before { 445 content: '\f120'; 422 446 height: 16px; 423 447 width: 16px; 424 448 display: inline-block; 449 margin: 8px 8px 0 -2px; 425 450 } 426 451 452 #wpadminbar #wp-admin-bar-appearance { 453 margin-top: -12px; 454 } 455 456 #wpadminbar #wp-admin-bar-my-sites > .ab-item:before, 457 #wpadminbar #wp-admin-bar-site-name > .ab-item:before { 458 content: '\f112'; 459 top: 2px; 460 } 461 462 #wpadminbar #wp-admin-bar-site-name > .ab-item:before { 463 content: '\f319'; 464 } 465 466 467 427 468 /** 469 * Comments 470 */ 471 #wpadminbar #wp-admin-bar-comments .ab-icon { 472 margin-right: 6px; 473 } 474 475 #wpadminbar #wp-admin-bar-comments .ab-icon:before { 476 content: '\f101'; 477 top: 3px; 478 } 479 480 #wpadminbar #wp-admin-bar-comments .count-0 { 481 opacity: .5; 482 } 483 484 /** 485 * New Content 486 */ 487 #wpadminbar #wp-admin-bar-new-content .ab-icon:before { 488 content: '\f132'; 489 top: 4px; 490 } 491 492 /** 493 * Updates 494 */ 495 #wpadminbar #wp-admin-bar-updates .ab-icon:before { 496 content: '\f113'; 497 top: 2px; 498 } 499 500 /** 428 501 * Search 429 502 */ 430 503 #wpadminbar #wp-admin-bar-search .ab-item { 431 504 padding: 0; 432 }433 434 #wpadminbar #wp-admin-bar-search .ab-item {435 /* default background */436 505 background: transparent; 437 506 } 438 507 439 508 #wpadminbar #adminbarsearch { 440 height: 28px; 509 position: relative; 510 height: 32px; 441 511 padding: 0 2px; 442 512 } 443 513 444 #wpadminbar #adminbarsearch .adminbar-input { 445 font: 13px/24px sans-serif; 514 #wpadminbar #adminbarsearch:before { 515 position: absolute; 516 top: 6px; 517 left: 5px; 518 z-index: 20; 519 font: normal 20px/1 'dashicons' !important; 520 content: '\f179'; 521 color: #999; 522 speak: none; 523 -webkit-font-smoothing: antialiased; 524 } 525 526 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 527 position: relative; 528 z-index: 30; 529 font: 13px/24px "Open Sans", sans-serif; 446 530 height: 24px; 447 531 width: 24px; 448 border: none; 449 padding: 0 3px 0 23px; 532 padding: 0 3px 0 24px; 450 533 margin: 0; 451 534 color: #ccc; 452 text-shadow: #444 0px -1px 0px;453 535 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; 536 border: none; 457 537 outline: none; 458 538 cursor: pointer; 459 539 460 -webkit-border-radius: 3px;461 border-radius: 3px;462 463 540 -webkit-box-shadow: none; 464 541 box-shadow: none; 465 542 … … 479 556 -o-transition-timing-function: ease; 480 557 } 481 558 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; 559 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 560 z-index: 10; 561 color: #000; 490 562 width: 200px; 491 563 background-color: rgba( 255, 255, 255, 0.9 ); 492 564 cursor: text; 565 border: 0; 493 566 } 494 567 495 #wpadminbar.ie8 #adminbarsearch .adminbar-input { 568 #wpadminbar.ie7 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 569 margin-top: 3px; 570 width: 120px; 571 } 572 573 #wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input { 574 margin-top: 4px; 496 575 background-color: #464646; 497 576 } 498 577 499 #wpadminbar.ie8 #adminbarsearch.adminbar-input:focus {578 #wpadminbar.ie8 > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 500 579 background-color: #fff; 501 580 } 502 581 503 /* Two rules to ensure browser recognition */504 582 #wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder { 505 color: # ddd;583 color: #999; 506 584 } 507 508 585 #wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder { 509 color: # ddd;586 color: #999; 510 587 } 511 512 #wpadminbar #adminbarsearch .adminbar-button { 513 display: none; 588 #wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder { 589 color: #999; 514 590 } 515 516 /** 517 * Site Menu 518 */ 519 #wpadminbar #wp-admin-bar-appearance { 520 border-top: none; 521 margin-top: -12px; 591 #wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder { 592 color: #999; 522 593 } 523 594 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 { 595 #wpadminbar #adminbarsearch .adminbar-button { 583 596 display: none; 584 597 } 585 598 586 599 /** 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 600 * Customize support classes 605 601 */ 606 602 .no-customize-support .hide-if-no-customize, … … 612 608 display: none; 613 609 } 614 610 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 611 /* Skip link */ 640 612 #wpadminbar .screen-reader-text, 641 613 #wpadminbar .screen-reader-text span { … … 662 634 font-weight: bold; 663 635 padding: 15px 23px 14px; 664 636 background: #f1f1f1; 665 color: #21759b; 666 text-shadow: none; 667 border-radius: 3px; 637 color: #fff; 668 638 z-index: 100000; 669 639 line-height: normal; 640 text-decoration: none; 670 641 -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 671 642 box-shadow: 0 0 2px 2px rgba(0,0,0,.6); 672 text-decoration: none;673 643 } 674 644 675 645 /** -
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/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; 174 231 } 175 232 233 .mceAction { 234 line-height:16px; 235 } 236 176 237 /* Button */ 177 238 .wp_themeSkin .mceButton { 178 239 display: block; … … 354 415 border-top-right-radius: 2px; 355 416 } 356 417 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 418 /* ColorSplitButton */ 396 419 .wp_themeSkin div.mceColorSplitMenu table { 397 420 background-color: #ebebeb; … … 418 441 width: 100%; 419 442 height: auto; 420 443 text-align: center; 421 font-family: Tahoma,Verdana,Arial,Helvetica;444 font-family: "Open Sans", sans-serif; 422 445 font-size: 11px; 423 446 line-height: 20px; 424 447 border-color: #fff; … … 474 497 .wp_themeSkin .mceMenu .mceText { 475 498 position: relative; 476 499 display: block; 477 font-family: Tahoma,Verdana,Arial,Helvetica;500 font-family: "Open Sans", sans-serif; 478 501 cursor: default; 479 502 margin: 0; 480 503 padding: 0 25px; … … 591 614 592 615 .wp_themeSkin .mce_h2 span.mceText { 593 616 font-weight: bolder; 594 font-size: 1 6px;617 font-size: 14px; 595 618 } 596 619 597 620 .wp_themeSkin .mce_h3 span.mceText { 598 621 font-weight: bolder; 599 font-size: 1 4px;622 font-size: 12px; 600 623 } 601 624 602 625 .wp_themeSkin .mce_h4 span.mceText { 603 626 font-weight: bolder; 604 font-size: 1 2px;627 font-size: 11px; 605 628 } 606 629 607 630 .wp_themeSkin .mce_h5 span.mceText { … … 614 637 font-size: 10px; 615 638 } 616 639 640 span.mce_bold:before { 641 content:'\f200'; 642 } 643 span.mce_italic:before { 644 content:'\f201'; 645 } 646 647 span.mce_bullist:before { 648 content:'\f203'; 649 } 650 651 span.mce_numlist:before { 652 content:'\f204'; 653 } 654 655 span.mce_blockquote:before { 656 content:'\f205'; 657 } 658 span.mce_justifyleft:before { 659 content:'\f206'; 660 } 661 span.mce_justifycenter:before { 662 content:'\f207'; 663 } 664 span.mce_justifyright:before { 665 content:'\f208'; 666 } 667 span.mce_link:before { 668 content:'\f103'; 669 } 670 span.mce_unlink:before { 671 content:'\f225'; 672 } 673 span.mce_wp_more:before { 674 content:'\f209'; 675 } 676 span.mce_strikethrough:before { 677 content:'\f224'; 678 } 679 680 span.mce_spellchecker { 681 font-size:20px; 682 background:none !important; 683 margin-top: 2px; 684 } 685 span.mce_spellchecker:before { 686 content:'\f210'; 687 } 688 span.mce_fullscreen:before, 689 span.mce_wp_fullscreen:before { 690 content:'\f211'; 691 } 692 693 span.mce_wp_adv:before { 694 content:'\f212'; 695 } 696 span.mce_underline:before { 697 content:'\f213'; 698 } 699 700 span.mce_justifyfull:before { 701 content:'\f214'; 702 } 703 704 span.mce_forecolor { 705 background:none !important; 706 } 707 span.mce_forecolor:before { 708 content:'\f215'; 709 } 710 span.mce_pastetext:before { 711 content:'\f217'; 712 } 713 span.mce_pasteword:before { 714 content:'\f216'; 715 } 716 span.mce_removeformat:before { 717 content:'\f218'; 718 } 719 span.mce_charmap:before { 720 content:'\f220'; 721 } 722 span.mce_outdent:before { 723 content:'\f221'; 724 } 725 span.mce_indent:before { 726 content:'\f222'; 727 } 728 span.mce_undo:before { 729 content:'\f171'; 730 } 731 span.mce_redo:before { 732 content:'\f172'; 733 } 734 span.mce_wp_help:before { 735 content:'\f223'; 736 } 737 span.mce_image:before { 738 content: '\f104'; 739 } 740 span.mce_ltr:before { 741 content: '\f320'; 742 } 743 744 617 745 /* Theme */ 618 746 .wp_themeSkin span.mce_undo {background-position:-500px -20px} 619 747 .wp_themeSkin .mceButtonEnabled:hover span.mce_undo, … … 944 1072 945 1073 #mceModalBlocker { 946 1074 background: #000; 1075 opacity: 0.7; 1076 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; 1077 filter: alpha(opacity=70); 947 1078 } 948 1079 949 1080 /* WP specific */ … … 951 1082 position: relative; 952 1083 } 953 1084 1085 #wp-content-editor-tools { 1086 position: relative; 1087 z-index: 1; 1088 } 1089 1090 #wp-content-editor-container { 1091 clear: both; 1092 position: relative; 1093 top: -1px; 1094 } 1095 954 1096 .wp-editor-area { 955 1097 font-family: Consolas, Monaco, monospace; 1098 font-size: 13px; 956 1099 padding: 10px; 957 1100 margin: 1px 0 0; 958 1101 line-height: 150%; … … 966 1109 } 967 1110 968 1111 .wp-editor-tools { 969 height: 30px; 970 padding: 0 10px 0 0; 1112 padding: 0; 971 1113 } 972 1114 973 1115 .rtl .wp-editor-tools { 974 1116 padding: 0 0 0 10px; 975 1117 } 976 1118 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 1119 .wp-editor-container textarea.wp-editor-area { 988 1120 width: 100%; 989 1121 margin: 0; … … 993 1125 994 1126 .quicktags-toolbar, 995 1127 .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); 1128 border-bottom: 1px solid #dedede; 1129 background: #f5f5f5; 1003 1130 } 1004 1131 1005 1132 .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;1133 background: #ebebeb; 1134 border: 1px solid #dedede; 1135 color: #777; 1136 cursor: pointer; 1010 1137 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; 1138 font: 13px/19px "Open Sans", sans-serif; 1139 height: 19px; 1140 margin: 5px 0 0 5px; 1141 padding: 3px 8px 4px; 1021 1142 } 1022 1143 1023 1144 html[dir="rtl"] .wp-switch-editor { … … 1030 1151 1031 1152 .wp-switch-editor:hover { 1032 1153 text-decoration: none !important; 1154 background: #fff; 1033 1155 } 1034 1156 1035 1157 .js .tmce-active .wp-editor-area { … … 1042 1164 1043 1165 .tmce-active .switch-tmce, 1044 1166 .html-active .switch-html { 1045 border-color: #ccc #ccc #f4f4f4; 1046 background-color: #f4f4f4; 1167 background: #f5f5f5; 1047 1168 color: #555; 1169 height: 20px; 1170 border-bottom: none; 1048 1171 } 1049 1172 1050 1173 .wp-media-buttons .button { 1051 1174 margin-right: 5px; 1175 margin-bottom: 4px; 1176 padding-left: 7px; 1177 padding-right: 7px; 1052 1178 } 1053 1179 1180 .wp-media-buttons .button:active { 1181 position: relative; 1182 top: 1px; 1183 margin-top: -1px; 1184 margin-bottom: 1px; 1185 } 1186 1054 1187 .rtl .wp-media-buttons .button { 1055 1188 margin-right: 0; 1056 1189 margin-left: 5px; 1057 1190 } 1058 1191 1059 1192 .wp-media-buttons .insert-media { 1060 padding-left: 0.4em;1193 padding-left: 5px; 1061 1194 } 1062 1195 1063 1196 .rtl .wp-media-buttons .insert-media { 1064 padding-left: 10px;1065 padding-right: 0.4em;1197 padding-left: 7px; 1198 padding-right: 5px; 1066 1199 } 1067 1200 1068 1201 .wp-media-buttons a { … … 1078 1211 1079 1212 .wp-media-buttons span.wp-media-buttons-icon { 1080 1213 display: inline-block; 1081 width: 1 6px;1082 height: 1 6px;1214 width: 18px; 1215 height: 18px; 1083 1216 vertical-align: text-top; 1084 1217 margin: 0 2px; 1085 1218 } 1086 1219 1087 1220 .wp-media-buttons .add_media span.wp-media-buttons-icon { 1088 background: url('../../wp-admin/images/media-button.png') no-repeat top left;1221 background: none; 1089 1222 } 1090 1223 1224 .wp-media-buttons .add_media span.wp-media-buttons-icon:before { 1225 font: normal 18px/1 'dashicons'; 1226 speak: none; 1227 -webkit-font-smoothing: antialiased; 1228 } 1229 1230 .wp-media-buttons .add_media span.wp-media-buttons-icon:before { 1231 content: '\f104'; 1232 } 1233 1234 .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before { 1235 content: '\f175'; 1236 } 1237 1091 1238 .quicktags-toolbar { 1092 1239 border-bottom-style: solid; 1093 1240 border-bottom-width: 1px; … … 1109 1256 display: inline-block; 1110 1257 min-width: 26px; 1111 1258 padding: 2px 4px; 1112 font: 12px/18px Arial, Helvetica, sans-serif normal;1259 font: 12px/18px "Open Sans", sans-serif; 1113 1260 color: #464646; 1114 1261 border: 1px solid #c3c3c3; 1115 1262 -webkit-border-radius: 3px; … … 1222 1369 } 1223 1370 1224 1371 #wp-link .toggle-arrow { 1225 background: transparent url( '../images/toggle-arrow.png') top left no-repeat;1372 background: transparent url("../images/toggle-arrow.png") top left no-repeat; 1226 1373 height: 23px; 1227 1374 line-height: 23px; 1228 1375 } … … 1749 1896 direction: rtl; 1750 1897 } 1751 1898 1752 .clearlooks2 .mceFocus .mceTop .mceLeft { 1899 /* TinyMCE modal */ 1900 .clearlooks2 .mceTop { 1901 border-bottom: 1px solid #ccc; 1902 } 1903 1904 .clearlooks2 .mceTop span { 1905 font: 13px/24px "Open Sans", sans-serif; 1906 color: #e5e5e5; 1907 } 1908 1909 .clearlooks2 .mceTop .mceLeft { 1753 1910 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; 1911 border-color: transparent; 1758 1912 } 1759 1913 1760 .clearlooks2 .mce Focus .mceTop .mceRight {1914 .clearlooks2 .mceTop .mceRight { 1761 1915 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; 1916 border-color: transparent; 1766 1917 } 1767 1918 1919 .clearlooks2 .mceMiddle { 1920 clip: rect(24px auto auto auto); 1921 } 1922 1768 1923 .clearlooks2 .mceMiddle .mceLeft { 1769 1924 background: #f1f1f1; 1770 border- left: 1px solid #999;1925 border-color: transparent; 1771 1926 } 1772 1927 1773 1928 .clearlooks2 .mceMiddle .mceRight { 1774 1929 background: #f1f1f1; 1775 border- right: 1px solid #999;1930 border-color: transparent; 1776 1931 } 1777 1932 1778 1933 .clearlooks2 .mceBottom { 1779 1934 background: #f1f1f1; 1780 border- bottom: 1px solid #999;1935 border-color: transparent; 1781 1936 } 1782 1937 1783 1938 .clearlooks2 .mceBottom .mceLeft { 1784 1939 background: #f1f1f1; 1785 border-bottom: 1px solid #999; 1786 border-left: 1px solid #999; 1940 border-color: transparent; 1787 1941 } 1788 1942 1789 1943 .clearlooks2 .mceBottom .mceCenter { 1790 1944 background: #f1f1f1; 1791 border- bottom: 1px solid #999;1945 border-color: transparent; 1792 1946 } 1793 1947 1794 1948 .clearlooks2 .mceBottom .mceRight { 1795 1949 background: #f1f1f1; 1796 border-bottom: 1px solid #999; 1797 border-right: 1px solid #999; 1950 border-color: transparent; 1798 1951 } 1799 1952 1800 .clearlooks2 .mceFocus .mceTop span { 1801 color: #e5e5e5; 1953 .clearlooks2 .mceClose, 1954 .clearlooks2 .mceFocus .mceClose, 1955 .clearlooks2 .mceFocus .mceClose:hover { 1956 background-image: none; 1802 1957 } 1958 .clearlooks2 .mceClose:before { 1959 content: '\f158'; 1960 font: normal 20px/1 'dashicons'; 1961 speak: none; 1962 -webkit-font-smoothing: antialiased; 1963 color: #666; 1964 padding-left: 12px; 1965 } 1803 1966 1804 1805 1967 /* Distraction Free Writing mode 1806 1968 * =Overlay Styles 1807 1969 -------------------------------------------------------------- */ … … 1903 2065 /* =Top bar 1904 2066 -------------------------------------------------------------- */ 1905 2067 #fullscreen-topbar { 2068 background: #f5f5f5; 2069 border-bottom: 1px solid #fff; 2070 height: 40px; 2071 left: 0; 2072 min-width: 800px; 1906 2073 position: fixed; 1907 2074 top: 0; 1908 left: 0;2075 width: 100%; 1909 2076 z-index: 150050; 1910 border-bottom-style: solid;1911 border-bottom-width: 1px;1912 min-width: 800px;1913 width: 100%;1914 height: 40px;1915 2077 } 1916 2078 1917 2079 #wp-fullscreen-toolbar { … … 2035 2197 display: none; 2036 2198 } 2037 2199 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 2200 /* =Thickbox Adjustments 2044 2201 -------------------------------------------------------------- */ 2045 2202 .fullscreen-active #TB_overlay { … … 2074 2231 border-color: #ccc; 2075 2232 } 2076 2233 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 2234 /* =CSS 3 transitions 2094 2235 -------------------------------------------------------------- */ 2095 2236 … … 2227 2368 (-o-min-device-pixel-ratio: 5/4), 2228 2369 (-webkit-min-device-pixel-ratio: 1.25), 2229 2370 (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 2371 .wp-media-buttons .add_media span.wp-media-buttons-icon, 2270 2372 #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; 2373 background: none; 2273 2374 } 2274 2375 2275 2376 .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 color: #666; 138 } 139 140 .media-modal-close:hover .media-modal-icon:before { 141 color: #2ea2cc; 142 } 143 131 144 .media-modal-close:active { 132 145 outline: 0; 133 146 } … … 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 … … 282 296 283 297 .media-sidebar .setting input, 284 298 .media-sidebar .setting textarea { 299 margin: 1px; 285 300 width: 65%; 286 301 float: right; 287 302 } … … 336 351 337 352 .compat-item .field { 338 353 float: right; 339 width: 65%; 340 padding-right: 1px; 354 width: 66%; 341 355 } 342 356 343 357 .compat-item .field input { … … 357 371 bottom: 0; 358 372 margin: 0; 359 373 padding: 16px 0; 360 border-right : 1px solid #d9d9d9;361 bo x-shadow: inset -6px 0 6px -6px rgba( 0, 0, 0, 0.2 );374 border-right-width: 1px; 375 border-right-style: solid; 362 376 -webkit-user-select: none; 363 377 -moz-user-select: none; 364 378 -ms-user-select: none; … … 368 382 .media-menu > a { 369 383 display: block; 370 384 position: relative; 371 padding: 4px 20px;385 padding: 8px 20px; 372 386 margin: 0; 373 387 line-height: 18px; 374 388 font-size: 14px; 375 389 color: #21759B; 376 text-shadow: 0 1px 0 #fff;377 390 text-decoration: none; 378 391 } 379 392 … … 417 430 .media-router > a { 418 431 position: relative; 419 432 float: left; 420 padding: 2px 10px;433 padding: 8px 10px 9px; 421 434 margin: 0; 422 435 height: 18px; 423 436 line-height: 18px; 424 437 font-size: 14px; 425 border-right: 1px solid #dfdfdf;426 438 text-shadow: 0 1px 0 #fff; 427 439 text-decoration: none; 428 440 } … … 441 453 color: #333; 442 454 } 443 455 456 .media-router .active, 457 .media-router > a.active:last-child { 458 margin: -1px -1px 0; 459 } 460 444 461 .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 ); 462 display: none; 459 463 } 460 464 461 465 /** … … 484 488 top: 0; 485 489 left: 200px; 486 490 right: 0; 487 height: 45px;491 height: 56px; 488 492 z-index: 200; 489 493 } 490 494 491 495 .media-frame-router { 492 496 position: absolute; 493 top: 45px;497 top: 56px; 494 498 left: 200px; 495 499 right: 0; 496 height: 3 0px;500 height: 36px; 497 501 z-index: 200; 498 border-bottom: 1px solid #dfdfdf;499 box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );500 502 } 501 503 502 504 .media-frame-content { 503 505 position: absolute; 504 top: 75px;506 top: 90px; 505 507 left: 200px; 506 508 right: 0; 507 509 bottom: 61px; … … 509 511 width: auto; 510 512 margin: 0; 511 513 overflow: auto; 514 border-top-width: 1px; 515 border-top-style: solid; 516 border-bottom-width: 1px; 517 border-bottom-style: solid; 512 518 } 513 519 514 520 .media-frame-toolbar { … … 518 524 bottom: 0; 519 525 height: 60px; 520 526 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 527 } 525 528 526 529 .media-frame.hide-menu .media-frame-title, … … 543 546 } 544 547 545 548 .media-frame.hide-router .media-frame-content { 546 top: 45px;549 top: 56px; 547 550 } 548 551 549 552 .media-frame.hide-router .media-frame-router { … … 563 566 padding: 0 16px; 564 567 font-size: 22px; 565 568 font-weight: 200; 566 line-height: 45px;569 line-height: 60px; 567 570 margin: 0; 568 571 } 569 572 … … 598 601 line-height: 18px; 599 602 font-size: 13px; 600 603 color: #464646; 601 font-family: sans-serif;604 font-family: "Open Sans", sans-serif; 602 605 -webkit-appearance: none; 603 606 } 604 607 … … 641 644 0 0 0 3px #ccc; 642 645 } 643 646 644 .details.attachment {645 box-shadow:646 0 0 0 1px #fff,647 0 0 0 5px #1e8cbe;648 }649 650 647 .attachment-preview { 651 648 position: relative; 652 649 width: 199px; … … 779 776 outline: none; 780 777 781 778 border: 1px solid #fff; 782 border-radius: 3px;783 779 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 780 } 792 781 793 782 .attachment .check div { … … 1032 1021 } 1033 1022 1034 1023 .uploader-window h3 { 1024 margin: -0.5em 0 0; 1035 1025 position: absolute; 1036 1026 top: 50%; 1037 1027 left: 0; … … 1042 1032 -o-transform: translateY( -50% ); 1043 1033 transform: translateY( -50% ); 1044 1034 1045 font-size: 20px;1035 font-size: 40px; 1046 1036 font-weight: 200; 1047 1037 color: #fff; 1048 1038 padding: 0; … … 1252 1242 */ 1253 1243 1254 1244 .media-frame .spinner { 1255 background: url( ../images/wpspin.gif) no-repeat;1256 background-size: 16px 16px;1245 background: url('../images/spinner.gif') no-repeat; 1246 background-size: 20px 20px; 1257 1247 display: none; 1258 1248 opacity: 0.7; 1259 1249 filter: alpha(opacity=70); 1260 width: 16px;1261 height: 16px;1250 width: 20px; 1251 height: 20px; 1262 1252 margin: 0; 1263 1253 } 1264 1254 … … 1402 1392 .embed-url { 1403 1393 display: block; 1404 1394 position: relative; 1405 padding: 0 16px 7px;1395 padding: 16px; 1406 1396 margin: 0; 1407 1397 z-index: 250; 1408 1398 background: #fff; 1409 border-bottom: 1px solid #dfdfdf;1410 box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );1411 1399 font-size: 18px; 1412 1400 font-weight: 200; 1413 1401 } … … 1433 1421 .embed-link-settings, 1434 1422 .embed-image-settings { 1435 1423 position: absolute; 1436 background: #f5f5f5; 1437 top: 57px; 1424 top: 60px; 1438 1425 left: 0; 1439 1426 right: 0; 1440 1427 bottom: 0; … … 1627 1614 .media-menu .separator { 1628 1615 margin: 12px 10px; 1629 1616 } 1617 1618 .media-modal-close { 1619 right: 20px; 1620 } 1630 1621 } 1631 1622 1632 1623 @media only screen and (max-width: 800px) { … … 1662 1653 (-o-min-device-pixel-ratio: 5/4), 1663 1654 (-webkit-min-device-pixel-ratio: 1.25), 1664 1655 (min-resolution: 120dpi) { 1656 1665 1657 .media-modal-icon { 1666 1658 background-image: url(../images/uploader-icons-2x.png); 1667 1659 background-size: 134px 15px; 1668 1660 } 1669 1661 1670 1662 .media-frame .spinner { 1671 background-image: url( ../images/wpspin-2x.gif);1663 background-image: url('../images/spinner-2x.gif'); 1672 1664 } 1673 1665 } 1666 No newline at end of file -
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
2105 2105 array( '#5589aa', '#cfdfe9', '#d1e5ee', '#eff8ff' ) ); 2106 2106 wp_admin_css_color( 'fresh', _x( 'Gray', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ), 2107 2107 array( '#555', '#a0a0a0', '#ccc', '#f1f1f1' ) ); 2108 wp_admin_css_color( 'mp6', _x( 'MP6', 'admin color scheme' ), admin_url( 'css/colors-mp6.min.css' ), 2109 array( '#222', '#333', '#0074a2', '#2ea2cc' ) ); 2108 2110 } 2109 2111 2110 2112 /** -
src/wp-includes/images/spinner-2x.gif
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
-
src/wp-includes/images/spinner.gif
Property changes on: src/wp-includes/images/spinner-2x.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
-
src/wp-includes/js/svg-painter.js
Property changes on: src/wp-includes/images/spinner.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property
1 ;var svgPainter = ( function( $, window, document, undefined ) { 2 3 'use strict'; 4 5 $(document).ready( function() { 6 7 // detection for browser SVG capability 8 if ( document.implementation.hasFeature( 'http://www.w3.org/TR/SVG11/feature#Image', '1.1' ) ) { 9 document.body.className = document.body.className.replace( 'no-svg', 'svg' ); 10 } 11 12 svgPainter.init(); 13 14 }); 15 16 return { 17 18 elements : [], 19 20 init : function() { 21 22 this.selector = $( '#adminmenu .wp-menu-image, #wpadminbar .ab-item' ); 23 24 this.setColors(); 25 this.findElements(); 26 this.paint(); 27 28 }, 29 30 setColors : function( colors ) { 31 32 if ( typeof colors === 'undefined' && typeof mp6_color_scheme !== 'undefined' ) { 33 var colors = mp6_color_scheme; 34 } 35 36 this.colorscheme = colors; 37 38 }, 39 40 findElements : function() { 41 42 this.selector.each(function() { 43 44 var bgimg = $(this).css( 'background-image' ); 45 46 if ( bgimg.indexOf( 'data:image/svg+xml;base64' ) != -1 ) { 47 svgPainter.elements.push( $(this) ); 48 } 49 50 }); 51 52 }, 53 54 paint : function() { 55 56 // loop through all elements 57 $.each( this.elements, function( index, $element ) { 58 59 var $menuitem = $element.parent().parent(); 60 61 if ( $menuitem.hasClass( 'current' ) || $menuitem.hasClass( 'wp-has-current-submenu' ) ) { 62 63 // paint icon in 'current' color 64 svgPainter.paintElement( $element, svgPainter.colorscheme.icons.current ); 65 66 } else { 67 68 // paint icon in base color 69 svgPainter.paintElement( $element, svgPainter.colorscheme.icons.base ); 70 71 // set hover callbacks 72 $menuitem.hover( 73 function() { svgPainter.paintElement( $element, svgPainter.colorscheme.icons.focus ); }, 74 function() { svgPainter.paintElement( $element, svgPainter.colorscheme.icons.base ); } 75 ); 76 77 } 78 79 }); 80 81 }, 82 83 paintElement : function( $element, color ) { 84 85 // only accept hex colors: #101 or #101010 86 if ( ! color.match( /^(#[0-9a-f]{3}|#[0-9a-f]{6})$/i ) ) 87 return; 88 89 var xml = $element.data( 'mp6-svg-' + color ); 90 91 if ( ! xml ) { 92 93 var base64 = $element.css( 'background-image' ).match( /.+data:image\/svg\+xml;base64,(.+)\)/ ); 94 95 if ( ! base64 ) 96 return; 97 98 try { 99 var xml = window.atob( base64[1] ); 100 } catch ( e ) { 101 var xml = $.base64.atob( base64[1] ); 102 } 103 104 // replace `fill` attributes 105 xml = xml.replace( /fill="(.+?)"/g, 'fill="' + color + '"'); 106 107 // replace `style` attributes 108 xml = xml.replace( /style="(.+?)"/g, 'style="fill:' + color + '"'); 109 110 // replace `fill` properties in `<style>` tags 111 xml = xml.replace( /fill:.*?;/g, 'fill: ' + color + ';'); 112 113 try { 114 xml = window.btoa( xml ); 115 } catch ( e ) { 116 xml = $.base64.btoa( xml ); 117 } 118 119 $element.data( 'mp6-svg-' + color, xml ); 120 121 } 122 123 $element.attr( 'style', "background-image: url('data:image/svg+xml;base64," + xml + "') !important;" ); 124 125 } 126 127 }; 128 129 })( jQuery, window, document ); 130 131 /*! 132 * Customized for MP6 133 * 134 * Based on jquery.base64.js 0.0.3 - https://github.com/yckart/jquery.base64.js 135 * 136 * Based upon: https://gist.github.com/Yaffle/1284012 137 * 138 * Copyright (c) 2012 Yannick Albert (http://yckart.com) 139 * Licensed under the MIT license 140 * http://www.opensource.org/licenses/mit-license.php 141 **/ 142 ;(function($) { 143 144 var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", 145 a256 = '', 146 r64 = [256], 147 r256 = [256], 148 i = 0; 149 150 while(i < 256) { 151 var c = String.fromCharCode(i); 152 a256 += c; 153 r256[i] = i; 154 r64[i] = b64.indexOf(c); 155 ++i; 156 } 157 158 function code(s, discard, alpha, beta, w1, w2) { 159 s = String(s); 160 var buffer = 0, 161 i = 0, 162 length = s.length, 163 result = '', 164 bitsInBuffer = 0; 165 166 while(i < length) { 167 var c = s.charCodeAt(i); 168 c = c < 256 ? alpha[c] : -1; 169 170 buffer = (buffer << w1) + c; 171 bitsInBuffer += w1; 172 173 while(bitsInBuffer >= w2) { 174 bitsInBuffer -= w2; 175 var tmp = buffer >> bitsInBuffer; 176 result += beta.charAt(tmp); 177 buffer ^= tmp << bitsInBuffer; 178 } 179 ++i; 180 } 181 if(!discard && bitsInBuffer > 0) result += beta.charAt(buffer << (w2 - bitsInBuffer)); 182 return result; 183 } 184 185 var Plugin = $.base64 = function(dir, input, encode) { 186 return input ? Plugin[dir](input, encode) : dir ? null : this; 187 }; 188 189 $.base64.btoa = function(plain) { 190 plain = code(plain, false, r256, b64, 8, 6); 191 return plain + '===='.slice((plain.length % 4) || 4); 192 }; 193 194 $.base64.atob = function(coded, utf8decode) { 195 coded = coded.replace(/[^A-Za-z0-9\+\/\=]/g, ""); 196 coded = String(coded).split('='); 197 var i = coded.length; 198 do {--i; 199 coded[i] = code(coded[i], true, r64, a256, 6, 8); 200 } while (i > 0); 201 coded = coded.join(''); 202 return coded; 203 }; 204 }(jQuery)); -
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 // Hotlink Open Sans 564 $styles->add( 'open-sans', '//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin-ext,latin' ); 565 566 // Dashicons 567 $styles->add( 'dashicons', '/wp-admin/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 573 $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') ); 566 574 $styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array('wp-admin', 'buttons') ); 575 $styles->add( 'colors-mp6', "/wp-admin/css/colors-mp6$suffix.css", array( 'wp-admin', 'buttons' ) ); 567 576 568 577 $styles->add( 'media', "/wp-admin/css/media$suffix.css" ); 569 578 $styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') ); … … 572 581 $styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" ); 573 582 $styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.12' ); 574 583 $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" );584 $styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array( 'open-sans', 'dashicons' ) ); 576 585 $styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" ); 577 586 $styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" ); 578 587 $styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" );