Make WordPress Core

Ticket #25858: mp6.2.diff

File mp6.2.diff, 351.5 KB (added by dd32, 11 years ago)
  • src/wp-admin/admin-header.php

     
    5353wp_enqueue_style( 'colors' );
    5454wp_enqueue_style( 'ie' );
    5555wp_enqueue_script('utils');
     56wp_enqueue_script( 'svg-painter' );
    5657
    5758$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
    5859?>
     
    145146if ( wp_is_mobile() )
    146147        $admin_body_class .= ' mobile';
    147148
    148 $admin_body_class .= ' no-customize-support';
     149if ( is_multisite() )
     150        $classes .= ' multisite';
    149151
     152if ( is_network_admin() )
     153        $classes .= ' network-admin';
     154
     155$admin_body_class .= ' no-customize-support no-svg';
     156
    150157?>
    151158</head>
    152159<?php
  • src/wp-admin/css/colors-mp6.css

     
    11/*------------------------------------------------------------------------------
    22
     3This is MP6 as of r800130
    34
    45Howdy! This is the CSS file that controls the
    5 Gray (fresh) color style on the WordPress Dashboard.
     6MP6 color style on the WordPress Dashboard.
    67
    78This file contains both LTR and RTL styles.
    89
     
    2021  1.0 - Left to Right Styles
    2122------------------------------------------------------------------------------*/
    2223
     24html {
     25        background: #eee;
     26}
     27
     28/* Checkbooms */
     29
     30input[type=checkbox],
     31input[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
     40input[type=checkbox]:checked:before {
     41        color: #1e8cbe;
     42}
     43
     44input[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
     124ul#adminmenu a.wp-has-current-submenu:after,
     125ul#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
    23141.find-box-search,
    24142.find-box-buttons {
    25143        background-color: #f7f7f7;
    26         border-top: 1px solid #ddd;
     144        border-top: 1px solid #dfdfdf;
    27145}
    28146
    29147.find-box {
     
    46164#wpbody,
    47165.form-table .pre,
    48166.ui-autocomplete li a {
    49         color: #333;
     167        color: #555;
    50168}
    51169
    52170body > #upload-menu {
     
    84202}
    85203
    86204table.widefat {
    87         border-color: #dfdfdf;
    88         background-color: #f9f9f9;
     205        border-color: #fff;
     206        background-color: #fff;
    89207}
    90208
     209th .comment-grey-bubble:before {
     210        color: #444;
     211}
     212
     213.sorting-indicator:before {
     214        color: #444;
     215}
     216
    91217div.dashboard-widget-error {
    92218        background-color: #c43;
    93219}
     
    109235ul.add-menu-item-tabs li.tabs,
    110236.wp-tab-active {
    111237        border-color: #dfdfdf;
    112         background-color: #fff;
     238        background-color: #fdfdfd;
    113239}
    114240
    115241ul.category-tabs li.tabs {
     
    119245ul.category-tabs li.tabs,
    120246ul.add-menu-item-tabs li.tabs,
    121247.wp-tab-active {
    122         background-color: #fff;
     248        background-color: #fdfdfd;
    123249}
    124250
    125251kbd,
    126252code {
    127253        background: #eaeaea;
     254        background: rgba(0,0,0,0.07);
    128255}
    129256
    130257textarea,
    131258input[type="text"],
    132259input[type="password"],
    133 input[type="file"],
    134260input[type="email"],
    135261input[type="number"],
    136262input[type="search"],
    137263input[type="tel"],
    138264input[type="url"],
     265.titlewrap input {
     266        box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
     267}
     268
     269textarea,
     270input[type="text"],
     271input[type="password"],
     272input[type="email"],
     273input[type="number"],
     274input[type="search"],
     275input[type="tel"],
     276input[type="url"],
     277.titlewrap input,
    139278select {
    140         border-color: #dfdfdf;
     279        border-color: #dedede;
    141280}
    142281
     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
    143293textarea:focus,
    144294input[type="text"]:focus,
    145295input[type="password"]:focus,
    146 input[type="file"]:focus,
    147296input[type="email"]:focus,
    148297input[type="number"]:focus,
    149298input[type="search"]:focus,
     
    153302        border-color: #aaa;
    154303}
    155304
     305input:disabled,
    156306input.disabled,
     307textarea:disabled,
    157308textarea.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);
    159314}
    160315
    161316#plugin-information .action-button a,
     
    164319        color: #fff;
    165320}
    166321
    167 .revisions-meta,
     322/*
    168323.widget .widget-top,
    169324.postbox h3,
    170325.stuffbox h3,
    171 .widefat thead tr th,
    172 .widefat tfoot tr th,
     326.control-section .accordion-section-title,
    173327h3.dashboard-widget-title,
    174328h3.dashboard-widget-title span,
    175329h3.dashboard-widget-title small,
    176330.sidebar-name,
    177331#nav-menu-header,
    178332#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;
    186341}
     342*/
    187343
     344.accordion-section-content {
     345        border-left: none;
     346        border-right: none;
     347}
    188348
     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*/
    189358
    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;
    197362}
    198363
     364.widefat thead th {
     365        border-bottom: 1px solid #e1e1e1;
     366}
     367
    199368.form-table th,
    200369.form-wrap label {
    201370        color: #222;
    202         text-shadow: #fff 0 1px 0;
    203371}
    204372
     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
    205384.description,
    206385.form-wrap p {
    207386        color: #666;
    208387}
    209388
    210389strong .post-com-count span {
    211         background-color: #21759b;
     390        background-color: #0074a2;
    212391}
    213392
     393.post-com-count:after {         /* draw bubble connector using CSS! */
     394        border-top: 5px solid #bbbbbb;
     395        border-right: 5px solid transparent;
     396}
     397
     398strong .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
    214406.sorthelper {
    215407        background-color: #ccf3fa;
    216408}
     
    221413}
    222414
    223415.wrap h2 {
    224         color: #464646;
     416        color: #000;
    225417}
    226418
    227419.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;
    230423}
    231424
     425.wrap .add-new-h2:hover,
     426#add-new-comment a:hover {
     427        background: #2ea2cc;
     428        color: #fff;
     429}
     430
    232431.subtitle {
    233432        color: #777;
    234433}
     
    248447
    249448.alternate,
    250449.alt {
    251         background-color: #fcfcfc;
     450        background-color: #f9f9f9;
    252451}
    253452
    254453.available-theme a.screenshot {
    255         background-color: #f1f1f1;
    256         border-color: #ddd;
     454        background-color: #fff;
     455        border-color: #ccc;
    257456}
    258457
    259458#current-theme {
     
    265464        border-right-color: #99d;
    266465}
    267466
    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 
    287467.form-invalid {
    288468        background-color: #ffebe8 !important;
    289469}
     
    295475
    296476.submit,
    297477#commentsdiv #add-new-comment {
    298         border-color: #dfdfdf;
     478        border: none;
    299479}
    300480
    301481.highlight {
     
    335515}
    336516
    337517.post-com-count:hover span {
    338         background-color: #d54e21;
     518        background-color: #2ea2cc;
    339519}
    340520
    341521.quicktags, .search {
     
    353533
    354534a:hover,
    355535a:active {
    356         color: #d54e21;
     536        color: #2ea2cc;
    357537}
    358538
    359539a:focus {
     
    363543#adminmenu a:hover,
    364544#adminmenu li.menu-top > a:focus,
    365545#adminmenu .wp-submenu a:hover,
    366 #the-comment-list .comment a:hover,
    367546#rightnow a:hover,
    368547#media-upload a.del-link:hover,
    369548div.dashboard-widget-submit input:hover,
    370549.subsubsub a:hover,
    371550.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;
    377553}
    378554
    379555#the-comment-list .comment-item,
    380556#dashboard-widgets #dashboard_quick_press form p.submit {
    381         border-color: #dfdfdf;
     557        border: none;
    382558}
    383559
    384560#side-sortables .category-tabs .tabs a,
     
    392568        color: #264761;
    393569}
    394570
    395 #dashboard_right_now .table_content,
    396 #dashboard_right_now .table_discussion {
    397         border-top-color: #ececec;
     571p.submit {
     572        border-top-color: #dfdfdf;
    398573}
    399574
    400575.submitbox .submit {
     
    402577        color: #ccc;
    403578}
    404579
     580table.widefat span.delete a,
     581table.widefat span.trash a,
     582table.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
     596table.widefat span.delete a:hover,
     597table.widefat span.trash a:hover,
     598table.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,
    405602.plugins a.delete:hover,
    406603#all-plugins-table .plugins a.delete:hover,
    407604#search-plugins-table .plugins a.delete:hover,
    408 .submitbox .submitdelete {
    409         color: #f00;
    410         border-bottom-color: #f00;
    411 }
    412 
    413605.submitbox .submitdelete:hover,
    414606#media-items a.delete:hover,
    415607#media-items a.delete-permanently:hover,
    416608#nav-menu-footer .menu-delete:hover {
    417         color: #fff;
    418         background-color: #f00;
    419         border-bottom-color: #f00;
     609        color: #f00;
    420610}
    421611
    422612#normal-sortables .submitbox .submitdelete:hover {
     
    432622.tablenav .next,
    433623.tablenav .prev {
    434624        border-color: transparent;
    435         color: #21759b;
     625        color: #0074a2;
    436626}
    437627
    438628.tablenav .next:hover,
    439629.tablenav .prev:hover {
    440630        border-color: transparent;
    441         color: #d54e21;
     631        color: #2ea2cc;
    442632}
    443633
    444634div.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);
    448642}
    449643
     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
     653div.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
    450662.update-message {
    451663        color: #000;
    452664}
     
    461673
    462674.widefat td,
    463675.widefat th {
    464         border-top-color: #fff;
    465         border-bottom-color: #dfdfdf;
     676        color: #555;
    466677}
    467678
    468 .widefat th {
    469         text-shadow: rgba(255,255,255,0.8) 0 1px 0;
    470 }
    471 
    472 .widefat td {
    473         color: #555;
    474 }
    475679.widefat p,
    476680.widefat ol,
    477681.widefat ul {
     
    486690        color: #333;
    487691}
    488692
     693th.manage-column a,
    489694th.sortable a:hover,
    490695th.sortable a:active,
    491696th.sortable a:focus {
     
    494699
    495700th.sortable a:focus {
    496701        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);
    502702}
    503703
    504704h3.dashboard-widget-title small a {
     
    510710}
    511711
    512712a,
    513 #adminmenu a,
    514713#the-comment-list p.comment-author strong a,
    515714#media-upload a.del-link,
    516715#media-items a.delete,
    517716#media-items a.delete-permanently,
    518717.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;
    521730}
    522731
     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
    523746#adminmenu .awaiting-mod,
    524747#adminmenu .update-plugins,
    525748#sidemenu a .update-plugins,
    526749#rightnow .reallynow {
    527         background-color: #464646;
     750        background-color: #d54e21;
    528751        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;
    531752}
    532753#plugin-information .action-button {
    533         background-color: #d54e21;
     754        background-color: #2ea2cc;
    534755        color: #fff;
    535756}
    536757
    537758#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;
    540761        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;
    543762}
    544763
    545764div#media-upload-header,
     
    571790        color: #777;
    572791}
    573792
    574 .login #nav a,
    575 .login #backtoblog a {
    576         color: #21759b !important;
     793.plugins .inactive a:hover {
     794        color: #2ea2cc;
    577795}
    578796
    579 .login #nav a:hover,
    580 .login #backtoblog a:hover {
    581         color: #d54e21 !important;
    582 }
    583 
    584797#wpfooter {
    585798        color: #777;
    586         border-color: #dfdfdf;
     799        border-color: transparent;
    587800}
    588801
    589802.imgedit-group,
     
    592805        border-color: #dfdfdf;
    593806}
    594807
    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;
    600811}
    601812
    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;
    607815}
    608816
     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
    609823.plugin-update-tr .update-message {
    610         background-color: #fffbe4;
    611         border-color: #dfdfdf;
     824        background-color: #f7f7f7;
     825        background-color: rgba(0,0,0,0.03);
    612826}
    613827
    614 .plugins .active,
    615 .plugins .active th,
    616 .plugins .active td {
     828tr.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 {
    617839        color: #000;
    618840}
    619841
     
    621843        color: #579;
    622844}
    623845
     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,
     867tr.active + tr.plugin-update-tr .plugin-update {
     868        background-color: #f7fcfe;
     869}
     870
     871.plugins .active.update td,
     872.plugins .active.update th,
     873tr.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
     910input[type="radio"]:checked+label:before {
     911        color: #888888;
     912}
     913
     914a.post-state-format:hover:before,
     915a.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
    624926#the-comment-list tr.undo,
    625927#the-comment-list div.undo {
    626928        background-color: #f4f4f4;
    627929}
    628930
    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;
    631935}
    632936
     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
    633946#the-comment-list .approve a {
    634947        color: #006505;
    635948}
     
    638951        color: #d98500;
    639952}
    640953
    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);
    648958}
    649959
    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;
    658964}
     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
    659975.welcome-panel p {
    660976        color: #777;
    661977}
     978
     979.welcome-panel a {
     980        text-decoration: none;
     981}
     982
    662983.welcome-panel-column p {
    663984        color: #464646;
    664985}
    665 .welcome-panel h3 {
    666         text-shadow: 1px 1px 1px #fff;
     986
     987.welcome-panel .welcome-icon:before {
     988        color: #888;
    667989}
    668990
    669991.widget,
    670 #widget-list .widget-top,
     992#available-widgets .widget-top,
     993.menu-item-settings,
    671994.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,
     998table.widefat,
     999.stuffbox,
     1000p.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);
    6801010}
    6811011
    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,
    6841028.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);
     1029table.widefat,
     1030.wp-editor-container,
     1031.stuffbox,
     1032p.popular-tags,
     1033.widgets-holder-wrap,
     1034.popular-tags,
     1035.feature-filter {
     1036        background: #fff;
    6921037}
    6931038
    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;
    6961045}
    6971046
    698 .widget .widget-top {
    699         color: #222;
     1047.widget .widget-top,
     1048.menu-item-handle {
     1049        background: #e9e9e9;
     1050        color: #333;
    7001051}
    7011052
    7021053.js .sidebar-name:hover h3,
     
    7041055        color: #000;
    7051056}
    7061057
    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,
     1061span.wp-media-buttons-icon:before {
     1062        color: #888;
    7091063}
    7101064
    7111065#rightnow .youhave {
     
    7161070        color: #448abd;
    7171071}
    7181072
    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;
    7221079}
    7231080
    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;
    7271086}
    7281087
    729 #update-nag, .update-nag {
    730         background-color: #fffbcc;
    731         border-color: #e6db55;
    732         color: #555;
    733 }
    734 
    7351088#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);
    7401094}
    7411095
    7421096#contextual-help-back {
    743         background: #fff;
     1097        background: #f6fbfd;
    7441098}
    7451099
    7461100.contextual-help-tabs a:hover {
     
    7481102}
    7491103
    7501104#contextual-help-back,
     1105.contextual-help-tabs .active a {
     1106        border-color: #e1e1e1;
     1107}
     1108
    7511109.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);
    7531114}
    7541115
    7551116.contextual-help-tabs .active,
    7561117.contextual-help-tabs .active a,
    7571118.contextual-help-tabs .active a:hover {
    758         background: #fff;
     1119        background: #f6fbfd;
    7591120        color: #333;
    7601121}
    7611122
    7621123/* screen options and help tabs */
    7631124#screen-options-link-wrap,
    7641125#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);
    7741131}
    7751132
    7761133#screen-meta-links a {
    7771134        color: #777;
    778         background: transparent url(../images/arrows.png) no-repeat right 4px;
    7791135}
    7801136
     1137#screen-meta-links a:after {
     1138        color: #bbb;
     1139}
     1140
    7811141#screen-meta-links a:hover,
    7821142#screen-meta-links a:active {
    7831143        color: #333;
    7841144        background-color: transparent;
    7851145}
    786 
    787 #screen-meta-links a.screen-meta-active {
    788         background-position: right -31px;
    789 }
    790 
    7911146/* end screen options and help tabs */
    7921147
    793 .login #backtoblog a {
    794         color: #464646;
    795 }
    796 
    7971148#wphead {
    798         border-bottom: #dfdfdf 1px solid;
     1149        border-bottom-color: #dfdfdf;
    7991150}
    8001151
    8011152#wphead h1 a {
    8021153        color: #464646;
    8031154}
    8041155
    805 #wpfooter a:link,
    806 #wpfooter a:visited {
    807         text-decoration: none;
    808 }
    809 
    810 #wpfooter a:hover {
    811         text-decoration: underline;
    812 }
    813 
    8141156.file-error,
    8151157abbr.required,
    8161158.widget-control-remove:hover,
     
    8491191}
    8501192
    8511193#post-status-info {
    852         border-color: #dfdfdf #ccc #ccc;
    853         background-color: #eaeaea;
     1194        background-color: #f7f7f7;
    8541195}
    8551196
    856 .editwidget .widget-inside {
    857         border-color: #dfdfdf;
     1197.widget-inside,
     1198.menu-item-settings {
     1199        background: #eee;
    8581200}
    8591201
    8601202#titlediv #title {
     
    8731215/* menu */
    8741216#adminmenuback,
    8751217#adminmenuwrap {
    876         background-color: #ececec;
    877         border-color: #ccc;
     1218        background-color: #222;
    8781219}
    8791220
    880 #adminmenushadow,
    881 #adminmenuback {
    882         background-image: url(../images/menu-shadow.png);
    883         background-position: top right;
    884         background-repeat: repeat-y;
    885 }
    886 
    8871221#adminmenu li.wp-menu-separator {
    888         background: #dfdfdf;
    889         border-color: #cfcfcf;
     1222        background: transparent;
     1223        border-color: transparent;
    8901224}
    8911225
    8921226#adminmenu div.separator {
    893         border-color: #e1e1e1;
     1227        border-color: transparent;
    8941228}
    8951229
    896 #adminmenu a.menu-top,
    897 #adminmenu .wp-submenu .wp-submenu-head {
    898         border-top-color: #f9f9f9;
    899         border-bottom-color: #dfdfdf;
    900 }
    901 
    9021230#adminmenu li.wp-menu-open {
    9031231        border-color: #dfdfdf;
    9041232}
    9051233
     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
    9061242#adminmenu li.menu-top:hover,
    9071243#adminmenu li.opensub > a.menu-top,
    9081244#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;
    9121247}
    9131248
    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;
    9181252}
    9191253
    9201254#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
     
    9221256.folded #adminmenu li.wp-has-current-submenu,
    9231257.folded #adminmenu li.current.menu-top,
    9241258#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,
    9341260#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;
    9411262}
    9421263
    9431264#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
    9441265        border-top-color: #f9f9f9;
    9451266        border-bottom-color: #dfdfdf;
    946         background: #e4e4e4;
     1267        background: transparent;
    9471268}
    9481269
    9491270#adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
    950         background: #e4e4e4;
    951         border-color: #ccc;
     1271        background: #111;
     1272        border-color: #111;
    9521273}
    9531274
    954 .folded #adminmenu li.menu-top li:hover a {
    955         background-image: none;
    956 }
    957 
    9581275#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
    9591276#adminmenu li.current a.menu-top,
    9601277#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
    961         text-shadow: 0 -1px 0 #333;
    9621278        color: #fff;
    963         border-top-color: #808080;
    964         border-bottom-color: #6d6d6d;
    9651279}
    9661280
    9671281.folded #adminmenu li.wp-has-current-submenu,
    9681282.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 */
    9711284}
    9721285
    973 #adminmenu .wp-submenu a:hover,
    974 #adminmenu .wp-submenu a:focus {
    975         background-color: #eaf2fa;
    976         color: #333;
    977 }
    978 
    9791286#adminmenu .wp-submenu li.current,
    9801287#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;
    9831294}
    9841295
    9851296#adminmenu .wp-submenu,
    9861297.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    9871298.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);
    9921303}
    9931304
     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
    9941311#adminmenu .wp-submenu .wp-submenu-head {
    995         background-color: #e4e4e4;
    996         color: #333;
     1312        color: #fff;
    9971313}
    9981314
    9991315/* collapse menu button */
    10001316#collapse-menu {
    10011317        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;
    10031321}
    10041322
    10051323#collapse-menu:hover {
    1006         color: #999;
     1324        color: #2ea2cc;
    10071325}
    10081326
    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;
    10171329}
    10181330
    1019 #collapse-menu:hover #collapse-button {
    1020         border-color: #aaa;
     1331#collapse-menu:hover #collapse-button div:after {
     1332        color: #2ea2cc;
    10211333}
    10221334
    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;
    10251337}
    10261338
    1027 .folded #collapse-button div {
    1028         background-position: 0 -108px;
     1339.icon16:before {
     1340        color: #999;
    10291341}
    10301342
    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;
    10601345}
    10611346
    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;
    10681349}
    10691350
    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;
    10971356}
    10981357
    1099 .icon16.icon-dashboard,
    1100 #adminmenu .menu-icon-dashboard div.wp-menu-image {
    1101         background-position: -59px -33px;
    1102 }
     1358/* Diff */
    11031359
    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;
     1360table.diff .diff-deletedline del {
     1361        background-color: #f99;
    11081362}
    11091363
    1110 .icon16.icon-post,
    1111 #adminmenu .menu-icon-post div.wp-menu-image {
    1112         background-position: -269px -33px;
     1364.ui-tooltip, .arrow::after {
     1365        background-color: #fff;
     1366        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    11131367}
    11141368
    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);
    11191374}
    11201375
    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 */
    13621376table.diff .diff-deletedline {
    13631377        background-color: #ffe9e9;
    13641378}
     
    13751389        background-color: #afa;
    13761390}
    13771391
    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 
    13911392.revisions-tooltip,
    13921393.revisions-tooltip-arrow span {
    13931394        border-color: #d7d7d7;
    13941395        background-color: #fff;
    13951396}
    13961397
     1398.revisions-tickmarks {
     1399        background-color: #fff;
     1400}
     1401
    13971402.revisions-tickmarks > div {
    13981403        border-color: #aaa;
    13991404}
    14001405
     1406.revisions.pinned .revisions-controls {
     1407        background: #fff;
     1408}
     1409
     1410.revisions.pinned .revisions-meta {
     1411        box-shadow: none;
     1412}
     1413
    14011414/* jQuery UI Slider */
     1415
    14021416.wp-slider.ui-slider {
    14031417        border-color: #d7d7d7;
    14041418}
    14051419
    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);
    14161429}
    14171430
    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);
    14211434}
    14221435
    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 );
    14271442}
    14281443
    14291444/* edit image */
     
    14341449}
    14351450
    14361451#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;
    14401455}
    14411456
    14421457#replyerror {
     
    14521467}
    14531468
    14541469/* Install Plugins */
     1470
     1471#plugin-information {
     1472        height: auto;
     1473}
     1474
    14551475#plugin-information .fyi ul {
    14561476        background-color: #eaf3fa;
    14571477}
     
    14661486}
    14671487
    14681488#plugin-information pre {
    1469         border: 1px solid #ccc;
     1489        border-color: #ccc;
    14701490}
    14711491
    14721492/* inline editor */
     
    14921512}
    14931513
    14941514.attention {
    1495         color: #d54e21;
     1515        color: #2ea2cc;
    14961516}
    14971517
    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;
    15001520}
    15011521
    15021522.tablenav .tablenav-pages {
     
    15041524}
    15051525
    15061526.tablenav .tablenav-pages a {
    1507         border-color: #e3e3e3;
    15081527        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 );
    15121529}
    15131530
    15141531.tablenav .tablenav-pages a:hover,
    15151532.tablenav .tablenav-pages a:focus {
    1516         color: #d54e21;
     1533        color: #fff;
     1534        background: #2ea2cc;
    15171535}
    15181536
    15191537.tablenav .tablenav-pages a.disabled,
    15201538.tablenav .tablenav-pages a.disabled:hover,
    15211539.tablenav .tablenav-pages a.disabled:focus {
    15221540        color: #aaa;
     1541        background: #eee;
     1542        background: rgba( 0, 0, 0, 0.05 );
    15231543}
    15241544
    15251545.tablenav .tablenav-pages .current {
     
    15471567}
    15481568
    15491569.misc-pub-section {
    1550         border-top-color: #fff;
    1551         border-bottom-color: #dfdfdf;
    15521570}
    15531571
    15541572#minor-publishing {
     
    15561574}
    15571575
    15581576#post-body .misc-pub-section {
    1559         border-left-color: #eee;
    15601577}
    15611578
    15621579.post-com-count span {
    15631580        background-color: #bbb;
    15641581}
    15651582
    1566 .form-table .color-palette td {
    1567         border-color: #fff;
    1568 }
    1569 
    15701583.sortable-placeholder {
    15711584        border-color: #bbb;
    15721585        background-color: #f5f5f5;
     
    15781591        color: #333;
    15791592}
    15801593
    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;
    15861596}
    15871597
    1588 .view-switch #view-switch-list {
    1589         background-position: 0 0;
     1598.view-switch a:hover:before {
     1599        color: #727272;
    15901600}
    15911601
    1592 .view-switch .current #view-switch-list {
    1593         background-position: -40px 0;
     1602.view-switch a.current:before {
     1603        color: #0074a2;
    15941604}
    15951605
    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 
    16141606div.widgets-sortables,
    16151607#widgets-left .inactive,
    16161608#available-widgets .widget-holder {
    1617         background-color: #fcfcfc;
    1618         border-color: #dfdfdf;
     1609        background-color: #fff;
     1610        border-color: #fff;
    16191611}
    16201612
     1613#widgets-left #available-widgets {
     1614        background: #fff;
     1615}
     1616
    16211617#available-widgets .widget-description {
    16221618        color: #555;
    16231619}
    16241620
    16251621.sidebar-name {
    16261622        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;
    16311624}
    16321625
    16331626.js .sidebar-name:hover,
    16341627.js #removing-widget {
    1635         color: #d54e21;
     1628        color: #2ea2cc;
    16361629}
    16371630
    16381631#removing-widget span {
    16391632        color: black;
    16401633}
    16411634
    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;
    16441639}
    16451640
    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;
    16481643}
    16491644
    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 {
    16551647        color: #aaa;
    16561648}
    16571649
     
    16721664        opacity: 0.5;
    16731665}
    16741666
    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 
    16881667/* added from nav-menu.css */
    1689 #menu-management .menu-edit {
    1690         border-color: #dfdfdf;
     1668#menu-management {
     1669        background: #f5f5f5
    16911670}
    16921671
    1693 #post-body {
     1672#menu-management #post-body {
    16941673        background: #fff;
    16951674        border-top-color: #fff;
    16961675        border-bottom-color: #dfdfdf;
     
    17001679        border-bottom-color: #dfdfdf;
    17011680}
    17021681
    1703 #nav-menu-footer {
    1704         border-top-color: #fff;
    1705 }
    1706 
    17071682#menu-management .nav-tabs-arrow a {
    17081683        color: #c1c1c1;
    17091684}
    17101685
    17111686#menu-management .nav-tabs-arrow a:hover {
    1712         color: #d54e21;
     1687        color: #2ea2cc;
    17131688}
    17141689
    17151690#menu-management .nav-tabs-arrow a:active {
     
    17451720
    17461721.menu li.deleting .menu-item-handle {
    17471722        background-color: #f66;
    1748         text-shadow: #ccc;
    17491723}
    17501724
    17511725.item-type { /* Menu item controls */
    1752         color: #999;
     1726        color: #777;
    17531727}
    17541728
    17551729.item-controls .menu-item-delete:hover {
    17561730        color: #f00;
    17571731}
    17581732
    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;
    17621735}
    17631736
    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;
    17661739}
    17671740
    1768 .menu-item-settings { /* Menu editing */
    1769         border-color: #dfdfdf;
     1741#wp_inactive_widgets .widget .widget-top a.widget-action {
     1742        color: #ddd;
    17701743}
    17711744
     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
    17721769.link-to-original {
    17731770        color: #777;
    17741771        border-color: #dfdfdf;
     
    17901787}
    17911788
    17921789.submitbox .submitcancel {
    1793         color: #21759b;
    1794         border-bottom-color: #21759b;
     1790        color: #0074a2;
     1791        border-bottom-color: #0074a2;
    17951792}
    17961793
    17971794.submitbox .submitcancel:hover {
    1798         background: #21759b;
     1795        background: #0074a2;
    17991796        color: #fff;
    18001797}
    18011798
    18021799.manage-menus {
    1803         border: 1px solid #eeeeee;
    18041800        background: #fbfbfb;
    18051801}
    18061802
     1803.menu-settings {
     1804        border-top-color: #eeeeee;
     1805}
     1806
    18071807.theme-location-set {
    18081808        color: #999999;
    18091809}
     
    18151815.is-submenu {
    18161816        color: #999999;
    18171817}
    1818 /* end added from nav-menu.css */
    18191818
    18201819.nav-tab {
    1821         border-color: #dfdfdf #dfdfdf #fff;
     1820        color: #555;
     1821        border-color: #ccc;
     1822        background: #e4e4e4;
    18221823}
    18231824
    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;
    18271828}
    18281829
    1829 h2.nav-tab-wrapper, h3.nav-tab-wrapper {
    1830         border-bottom-color: #ccc;
     1830.nav-tab-active {
     1831        color: #464646;
    18311832}
    18321833
    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;
    18381840}
    18391841
    1840 #menu-management .nav-tab-active {
    1841         background: #f9f9f9;
    1842         border-bottom-color: #f9f9f9;
     1842h2.nav-tab-wrapper, h3.nav-tab-wrapper {
     1843        border-bottom-color: #ccc;
    18431844}
    18441845
    18451846#upload-form label {
     
    18471848}
    18481849
    18491850/* Begin About Pages */
    1850 
    18511851.about-wrap h1 {
    18521852        color: #333;
    1853         text-shadow: 1px 1px 1px #fff;
    18541853}
    18551854
    18561855.about-text {
     
    18581857}
    18591858
    18601859.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);
    18631864}
    18641865
    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 
    18781866.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;
    18811869}
    18821870
    18831871.about-wrap h3 {
    18841872        color: #333;
    1885         text-shadow: 1px 1px 1px #fff;
    18861873}
    18871874
    18881875.about-wrap .feature-section h4 {
    18891876        color: #464646;
    18901877}
    18911878
    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;
    18941882}
    18951883
     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
    18961890.about-wrap .point-releases {
    18971891        border-bottom: 1px solid #dfdfdf;
    18981892}
    18991893
    19001894.about-wrap .point-releases h3 {
    1901         border-top: 1px solid #dfdfdf;
     1895        border-top-color: #dfdfdf;
    19021896}
    19031897
    1904 .about-wrap .point-releases h3:first-child {
    1905         border: 0;
    1906 }
    1907 
    19081898.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;
    19111900}
    19121901
    19131902.about-wrap li.wp-person .title {
    19141903        color: #464646;
    1915         text-shadow: 1px 1px 1px #fff;
    19161904}
    19171905
    19181906.freedoms-php .about-wrap ol li {
     
    19251913
    19261914/* End About Pages */
    19271915
     1916/* Press This and Image editing icons */
    19281917
    1929 /*------------------------------------------------------------------------------
    1930   2.0 - Right to Left Styles
    1931 ------------------------------------------------------------------------------*/
     1918.pressthis a span:before {
     1919        color:#777;
     1920}
    19321921
    1933 .rtl .bar {
    1934         border-right-color: transparent;
    1935         border-left-color: #99d;
     1922.imgedit-menu div {
     1923        color:#777;
    19361924}
    19371925
    1938 .rtl #screen-meta-links a.show-settings {
    1939         background-position: left 3px;
     1926.imgedit-menu div:hover {
     1927        color:#333;
    19401928}
    19411929
    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);
    19441937}
    19451938
    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;
    19511942}
    19521943
    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;
    19561946}
    19571947
    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;
    19621951}
    19631952
    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;
    19671957}
    19681958
    1969 /* Collapse Menu Button */
    1970 .rtl #collapse-button div {
    1971         background-position: 0 -108px;
     1959.media-menu .separator {
     1960        border-top-color: #ddd;
     1961        border-bottom: none;
    19721962}
    19731963
    1974 .rtl.folded #collapse-button div {
    1975         background-position: 0 -72px;
     1964.media-sidebar {
     1965        background: #f3f3f3;
     1966        border-color: #ddd;
    19761967}
    19771968
    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}
    19851975
    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;
    19891978}
    19901979
    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;
    19941982}
    19951983
    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;
    19991988}
    20001989
    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);
    20031994}
    20041995
    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;
    20072004}
    20082005
    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 */
     2031a .mceIcon, .mceAction {
     2032        color:#777;
     2033}
     2034
     2035a .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
     2059body.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
    20122078@media print,
    20132079  (-o-min-device-pixel-ratio: 5/4),
    20142080  (-webkit-min-device-pixel-ratio: 1.25),
    20152081  (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,
    20222089        .tagchecklist span a,
    20232090        #bulk-titles div a,
    20242091        .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;
    20282129        }
     2130}
    20292131
    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------------------------------------------------------------------------------*/
    20452135
    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}
    20562140
    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}
    20622145
    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}
    20992151
    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}
    21292156
    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}
    21342162
    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}
    21402169
     2170.rtl #post-body .misc-pub-section {
     2171        border-right-color: transparent;
     2172        border-left-color: #eee;
    21412173}
     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

     
    66        text-decoration: none;
    77}
    88
    9 #customize-info .accordion-section-content {
    10         background: transparent;
     9#customize-controls h3 {
     10        font-size: 14px;
    1111}
    1212
     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
    1364#customize-info .preview-notice {
    1465        font-size: 13px;
    1566        line-height: 24px;
    16         color: #999;
    1767}
    1868
    1969#customize-info .theme-name {
    2070        font-size: 20px;
    2171        font-weight: 200;
    2272        line-height: 24px;
    23         color: #333;
    2473        display: block;
    25         text-shadow: 0 1px 0 #fff;
    2674}
    2775
    2876#customize-info .theme-screenshot {
    2977        width: 258px;
    30         border: 1px solid #ccc;
    3178}
    3279
    3380#customize-info .theme-description {
    3481        margin-top: 1em;
    35         color: #777;
     82        color: #666666;
    3683        line-height: 20px;
    3784}
    3885
    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);
    4189}
    4290
    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
    44101#customize-theme-controls .accordion-section-content {
    45         margin: 0;
     102        color: #555555;
     103        background: white;
    46104}
    47105
    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;
    51112}
    52113
    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;
    56119}
    57120
    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;
    60126}
    61127
     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
    62146.customize-control {
    63147        width: 100%;
    64148        float: left;
     
    66150        margin-bottom: 8px;
    67151}
    68152
    69 .customize-control-title {
    70         display: block;
    71         line-height: 24px;
    72         font-weight: bold;
    73 }
    74 
    75153.customize-control select,
    76154.customize-control input[type="text"],
    77155.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"] {
    82157        line-height: 28px;
    83158}
    84159
     
    95170        line-height: 28px;
    96171}
    97172
     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
    98187.customize-control-checkbox input {
    99188        margin-right: 5px;
    100189}
     
    109198}
    110199
    111200.customize-control-radio label {
    112         line-height: 20px;
     201        line-height: 32px;
    113202}
    114203
    115204.customize-control-radio input {
     
    121210        height: 100%;
    122211}
    123212
    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;
    127216}
    128217
    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;
    143223}
    144224
    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;
    148227}
    149228
    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;
    152231}
    153232
    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}
    157237
     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
    158250/*
    159251 * Dropdowns
    160252 */
     
    163255        display: block;
    164256        position: relative;
    165257        cursor: pointer;
    166 
    167         -webkit-border-radius: 3px;
    168         border-radius: 3px;
    169258}
    170259
    171260.accordion-section .dropdown-content {
     
    176265        line-height: 16px;
    177266        margin-right: 16px;
    178267        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;
    184269        -webkit-user-select: none;
    185270        -moz-user-select: none;
    186271        user-select: none;
     
    191276        top: 0;
    192277        bottom: 0;
    193278        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;
    201281}
    202282
    203283.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;
    215295}
    216296
    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 
    226297.customize-control .dropdown-status {
     298        color: #333;
     299        background: #eeeeee;
    227300        display: none;
    228301        max-width: 112px;
    229         color: #777;
    230302}
    231303
    232 /*
    233  * Color Picker
    234  */
     304/* Color Picker */
    235305.customize-control-color .color-picker-hex {
    236306        display: none;
    237307}
     
    246316}
    247317
    248318.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);
    251321}
    252322
    253323.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);
    255325}
    256326
     327.customize-control-color .iris-picker {
     328        border-radius: 0 !important;
     329}
     330
    257331.accordion-section input[type="text"].color-picker-hex {
    258332        width: 65px;
    259333        font-family: monospace;
     
    265339.accordion-section input[type="text"].color-picker-hex:focus::-webkit-input-placeholder {
    266340        color: transparent;
    267341}
     342
    268343.accordion-section input[type="text"].color-picker-hex:-moz-placeholder {
    269344        color: #999;
    270345}
     
    308383}
    309384
    310385.accordion-section .customize-control-image .library ul {
    311         border-bottom: 1px solid #dfdfdf;
     386        border-bottom: 1px solid #ddd;
    312387        float: left;
    313388        width: 100%;
    314389        margin: 10px 0 0;
    315390}
    316391
    317392.accordion-section .customize-control-image .library li {
    318         color: #999;
     393        color: #ccc;
    319394        float: left;
    320         padding: 3px 5px;
     395        padding: 3px 15px;
    321396        margin: 0;
    322         border-style: solid;
    323         border-color: transparent;
    324         border-width: 1px 1px 0 1px;
     397        border: 1px solid transparent;
    325398}
    326399
    327400.accordion-section .customize-control-image .library li.library-selected {
    328401        margin-bottom: -1px;
    329402        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;
    336406}
    337407
    338 .accordion-section .customize-control-image .library-content {
    339         display: none;
     408.accordion-section .customize-control-image .library .thumbnail {
     409        display: block;
    340410        width: 100%;
    341         float: left;
    342         padding: 10px 0;
    343411}
    344412
    345 .accordion-section .customize-control-image .library-content.library-selected {
     413.accordion-section .customize-control-image .library .thumbnail img {
    346414        display: block;
     415        max-width: 90%;
     416        max-height: 80px;
     417        margin: 5px auto;
     418        padding: 2px;
     419        background: #666666;
    347420}
    348421
    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;
    352424}
    353425
    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;
    356431}
    357432
    358 .accordion-section .customize-control-image .library .thumbnail img {
     433.accordion-section .customize-control-image .library-content.library-selected {
    359434        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;
    367435}
    368436
    369437.accordion-section .customize-control-upload .upload-fallback,
     
    378446        border: 3px dashed #dfdfdf;
    379447        margin: 5px auto;
    380448        text-align: center;
    381         color: #777;
    382449        position: relative;
    383450        cursor: default;
    384451}
     
    408475 * instead it expands the iframe size to match the size of the content
    409476 */
    410477.ios .wp-full-overlay {
    411         position: relative;
     478        position: relative;
    412479}
    413480
    414481.ios #customize-preview {
     
    416483}
    417484
    418485.ios #customize-controls .wp-full-overlay-sidebar-content {
    419         -webkit-overflow-scrolling: touch;
     486        -webkit-overflow-scrolling: touch;
    420487}
    421488
    422 /**
    423  * Handle cheaters.
    424  */
     489/** Handle cheaters. */
    425490body.cheatin {
    426491        min-width: 0;
    427492        background: #f9f9f9;
     
    433498        margin: 0 auto;
    434499        padding: 2em;
    435500        font-size: 14px;
    436         background: #fff;
     501        background: #555555;
    437502        border: 1px solid #dfdfdf;
    438503        -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="&#xe000;" horiz-adv-x="500" d="M0 0z" />
     10<glyph unicode="&#xf100;" 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="&#xf101;" 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="&#xf102;" 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="&#xf103;" 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="&#xf104;" 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="&#xf105;" d="M600 500v1300h1000v-1300h-1000zM500 400h800v-200h-1000v1300h200v-1100z" />
     16<glyph unicode="&#xf106;" 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="&#xf107;" 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="&#xf108;" 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="&#xf109;" 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="&#xf110;" 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="&#xf111;" 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="&#xf112;" 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="&#xf113;" 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="&#xf115;" 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="&#xf116;" 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="&#xf117;" 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="&#xf118;" 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="&#xf119;" 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="&#xf120;" 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="&#xf121;" d="M300 1900h1400v-1800h-1400v1800zM1400 1500v100h-800v-100h800zM1400 1200v100h-800v-100h800zM1400 900v100h-800v-100h800zM1200 600v100h-600v-100h600z" />
     31<glyph unicode="&#xf122;" 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="&#xf123;" d="M100 1900h1800v-1200l-600 -600h-1200v1800zM400 1600v-100h1200v100h-1200zM400 1200v-100h1200v100h-1200zM1000 700v100h-600v-100h600zM1200 300l500 500h-500v-500z" />
     33<glyph unicode="&#xf125;" 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="&#xf126;" 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="&#xf127;" 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="&#xf128;" 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="&#xf129;" 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="&#xf130;" 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="&#xf132;" d="M1700 1300v-300h-500v-500h-300v500h-500v300h500v500h300v-500h500z" />
     40<glyph unicode="&#xf133;" d="M1700 1300v300h-200v200h-300v-100h-900v-1500h1100v900h100v200h200zM1600 1500v-100h-200v-200h-100v200h-200v100h200v200h100v-200h200z" />
     41<glyph unicode="&#xf134;" d="M0 1700h2000v-1400h-2000v1400zM1900 1300v200h-1800v-200h1800zM1500 800v400h-1000v-400h1000zM400 900v200h-300v-200h300zM1900 900v200h-300v-200h300zM1900 500v200h-1800v-200h1800z" />
     42<glyph unicode="&#xf135;" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1100 780v400h-1000v-400h1000zM1900 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" />
     43<glyph unicode="&#xf136;" d="M0 1680h2000v-1400h-2000v1400zM1900 1280v200h-1800v-200h1800zM1900 780v400h-1000v-400h1000zM800 880v200h-700v-200h700zM1900 480v200h-1800v-200h1800z" />
     44<glyph unicode="&#xf138;" d="M0 1680h2000v-1400h-2000v1400zM1500 780v400h-1000v-400h1000z" />
     45<glyph unicode="&#xf139;" d="M800 1400l600 -403l-600 -397v800z" />
     46<glyph unicode="&#xf140;" d="M1500 1200l-403 -600l-397 600h800z" />
     47<glyph unicode="&#xf141;" d="M1300 600l-600 403l600 397v-800z" />
     48<glyph unicode="&#xf142;" d="M700 700l403 600l397 -600h-800z" />
     49<glyph unicode="&#xf143;" d="M700 700l403 600l397 -600h-800z" />
     50<glyph unicode="&#xf145;" 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="&#xf147;" d="M1439 1450l134 -94l-537 -745h-134l-302 401l134 125l235 -187z" />
     52<glyph unicode="&#xf148;" 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="&#xf153;" 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="&#xf154;" 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="&#xf155;" d="M1000 1900l300 -600l600 -75l-412 -462l112 -663l-600 300l-600 -300l113 663l-413 462l600 75z" />
     56<glyph unicode="&#xf156;" d="M1100 1300h-1000l500 -700zM900 600h1000l-500 700z" />
     57<glyph unicode="&#xf157;" 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="&#xf158;" d="M1555 630l-219 -206l-342 365l-364 -343l-206 218l364 343l-342 364l218 206l343 -364l364 342l205 -218l-364 -343z" />
     59<glyph unicode="&#xf159;" 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="&#xf160;" 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="&#xf161;" 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="&#xf163;" 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="&#xf164;" 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="&#xf165;" d="M1900 800v-300h-400v-400h-300v400h-800v800h-400v300h400v400h300v-400h700l300 300l100 -100l-300 -300v-700h400zM1100 1300h-400v-400zM800 800h400v400z" />
     65<glyph unicode="&#xf166;" 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="&#xf167;" 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="&#xf168;" d="M2000 1100v-200h-300v-800h-1400v800h-300v200h300v800h1400v-800h300zM650 1300h700l-350 400zM1700 1050h-1400v-100h1400v100zM1350 700h-700l350 -400z" />
     68<glyph unicode="&#xf169;" d="M1900 1700v-1400h-800v-300h-200v300h-800v1400h800v300h200v-300h800zM1050 300v1400h-100v-1400h100zM700 1350l-400 -350l400 -350v700zM1700 1000l-400 350v-700z" />
     69<glyph unicode="&#xf171;" 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="&#xf172;" 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="&#xf173;" 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="&#xf174;" 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="&#xf175;" 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="&#xf176;" 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="&#xf177;" 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="&#xf178;" 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="&#xf179;" 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="&#xf180;" d="M900 1100v600h-600v-600h600zM1700 1100v600h-600v-600h600zM900 300v600h-600v-600h600zM1700 300v600h-600v-600h600z" />
     79<glyph unicode="&#xf181;" d="M500 600v800h1000v-800h-1000zM200 700v600h200v-600h-200zM600 1300v-600h800v600h-800zM1600 1300h200v-600h-200v600zM1300 1100v100h-600v-100h600zM1300 800v200h-600v-200h600z" />
     80<glyph unicode="&#xf182;" 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="&#xf183;" 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="&#xf184;" 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="&#xf185;" d="M1800 200v1600h-400v-1600h400zM1200 200v1100h-400v-1100h400zM600 200v800h-400v-800h400z" />
     84<glyph unicode="&#xf200;" 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="&#xf201;" d="M1478 1400h-213l-280 -900h212l-62 -200h-675l62 200h214l280 900h-213l62 200h675z" />
     86<glyph unicode="&#xf203;" 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="&#xf204;" 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="&#xf205;" 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="&#xf206;" d="M1200 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1200 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" />
     90<glyph unicode="&#xf207;" d="M1400 1500v200h-800v-200h800zM1700 1100v200h-1400v-200h1400zM1400 700v200h-800v-200h800zM1700 300v200h-1400v-200h1400z" />
     91<glyph unicode="&#xf208;" d="M1700 1500v200h-900v-200h900zM1700 1100v200h-1400v-200h1400zM1700 700v200h-900v-200h900zM1700 300v200h-1400v-200h1400z" />
     92<glyph unicode="&#xf209;" d="M1700 1300v400h-1400v-400h1400zM600 900v200h-300v-200h300zM1200 900v200h-400v-200h400zM1700 900v200h-300v-200h300zM1700 300v400h-1400v-400h1400z" />
     93<glyph unicode="&#xf210;" 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="&#xf211;" 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="&#xf212;" 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="&#xf213;" 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="&#xf214;" d="M200 1700h1600v-200h-1600v200zM200 1300h1600v-200h-1600v200zM200 900h1600v-200h-1600v200zM200 500h1600v-200h-1600v200z" />
     98<glyph unicode="&#xf215;" d="M1323 500h190l-413 1100h-200l-400 -1100h188l107 300h418zM1170 954h-319l149 486z" />
     99<glyph unicode="&#xf216;" 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="&#xf217;" 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="&#xf218;" 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="&#xf219;" 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="&#xf220;" 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="&#xf221;" 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="&#xf222;" 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="&#xf223;" 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="&#xf224;" 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="&#xf225;" 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="&#xf226;" 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="&#xf227;" 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="&#xf228;" d="M300 1600h1400v-200h-1400v200zM300 1100h1400v-200h-1400v200zM300 600h1400v-200h-1400v200z" />
     112<glyph unicode="&#xf229;" d="M300 997l600 403v-800zM1100 1400l600 -403l-600 -397v800z" />
     113<glyph unicode="&#xf230;" 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="&#xf231;" 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="&#xf232;" 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="&#xf233;" 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="&#xf234;" 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="&#xf235;" 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="&#xf236;" 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="&#xf237;" 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="&#xf238;" 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="&#xf239;" 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="&#xf240;" 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="&#xf242;" 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="&#xf301;" 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="&#xf302;" 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="&#xf303;" 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="&#xf304;" 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="&#xf305;" 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="&#xf306;" 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="&#xf307;" 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="&#xf308;" 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="&#xf309;" 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="&#xf310;" d="M400 1400h600v200h-800v-1201h800v201h-600v800zM600 1200h600v300l600 -500l-600 -500v300h-600v400z" />
     135<glyph unicode="&#xf311;" 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="&#xf312;" 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="&#xf313;" 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="&#xf314;" 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="&#xf315;" 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="&#xf316;" d="M1401 1600v-600h200v800h-1201v-800h201v600h800zM1201 1400v-600h300l-500 -600l-500 600h300v600h400z" />
     141<glyph unicode="&#xf317;" d="M800 600v600h-300l500 600l500 -600h-300v-600h-400zM600 400v600h-200v-800h1201v800h-201v-600h-800z" />
     142<glyph unicode="&#xf318;" d="M500 1300h1300v-1000h-1600v1300h700l200 -200h-700v-900h100v800z" />
     143<glyph unicode="&#xf319;" 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="&#xf320;" 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="&#xf321;" 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="&#xf322;" 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="&#xf323;" 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="&#xf324;" 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="&#xf325;" 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="&#xf326;" 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="&#xf327;" 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="&#xf328;" 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="&#xf329;" d="M1500 1300v200h-1000v-200h1000zM1500 900v200h-1000v-200h1000zM1500 500v200h-1000v-200h1000z" />
     154<glyph unicode="&#xf330;" 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="&#xf331;" 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="&#xf332;" 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="&#xf333;" d="M1600 1300v200h-1300v-200h1300zM1600 900v200h-1300v-200h1300zM1600 500v200h-1300v-200h1300z" />
     158<glyph unicode="&#xf334;" 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="&#xf335;" d="M1495 1354l-354 -354l354 -354l-141 -141l-354 353l-353 -353l-142 142l353 353l-353 353l142 142l353 -353l354 353z" />
     160<glyph unicode="&#xf336;" 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="&#xf337;" 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="&#xf338;" 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="&#xf339;" 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="&#xf340;" d="M1800 1100v-200h-1200l400 -400v-300l-800 800l800 800v-300l-400 -400h1200z" />
     165<glyph unicode="&#xf341;" d="M1400 1500l-500 -500l500 -500v-300l-800 800l800 800v-300z" />
     166<glyph unicode="&#xf342;" d="M1800 1000h-300l-400 400v-1200h-200v1200l-400 -400h-300l800 800z" />
     167<glyph unicode="&#xf343;" d="M1500 600l-500 500l-500 -500h-300l800 800l800 -800h-300z" />
     168<glyph unicode="&#xf344;" d="M1000 200v300l400 400h-1200v200h1200l-400 400v300l800 -800z" />
     169<glyph unicode="&#xf345;" d="M600 500l500 500l-500 500v300l800 -800l-800 -800v300z" />
     170<glyph unicode="&#xf346;" d="M1500 1000h300l-800 -800l-800 800h300l400 -400v1200h200v-1200z" />
     171<glyph unicode="&#xf347;" d="M500 1400l500 -500l500 500h300l-800 -800l-800 800h300z" />
     172<glyph unicode="&#xf348;" 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

     
    1818        overflow: hidden;
    1919}
    2020
     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
    2140form {
    2241        margin: 1em;
    2342}
  • src/wp-admin/css/wp-admin-rtl.css

     
    129129        direction: ltr;
    130130}
    131131
     132input[type=checkbox]:checked:before {
     133        margin-left: 1px;
     134}
     135
    132136input[type="text"].ui-autocomplete-loading {
    133137        background: transparent url('../images/loading.gif') no-repeat left center;
    134138}
     
    246250
    247251#screen-meta-links {
    248252        margin-right: 0;
    249         margin-left: 24px;
     253        margin-left: 5px;
    250254}
    251255
    252256#screen-meta {
    253         margin-right: 5px;
    254         margin-left: 15px;
     257        margin: 0 0 -2px 20px;
    255258}
    256259
    257260#screen-options-link-wrap,
     
    261264        margin-right: 6px;
    262265}
    263266
     267#screen-meta-links a {
     268        left: 20px;
     269}
     270
    264271#screen-meta-links a.show-settings {
     272        background-position: left -33px;
    265273        padding-right: 6px;
    266274        padding-left: 16px;
    267275}
    268276
     277#wpbody-content #screen-meta-links a.show-settings {
     278        padding: 1px 10px 0 0;
     279}
     280
    269281.toggle-arrow {
    270282        background-position: top right;
    271283}
     
    311323
    312324.contextual-help-tabs {
    313325        float: right;
     326        margin-right: 4px;
     327        width: 146px;
    314328}
    315329
    316330.contextual-help-tabs a {
     
    326340.contextual-help-tabs .active,
    327341.contextual-help-tabs-wrap {
    328342        border-left: 0;
    329         border-right-width: 1px;
     343        border-right-width: 2px;
    330344}
    331345
    332346.help-tab-content {
     
    350364------------------------------------------------------------------------------*/
    351365
    352366.folded #wpcontent {
    353         margin-left: 0;
     367        margin-left: inherit;
    354368        margin-right: 52px;
    355369}
    356370
    357371.folded.wp-admin #wpfooter {
    358         margin-left: 15px;
     372        margin-left: inherit;
    359373        margin-right: 52px;
    360374}
    361375
     
    369383        left: 0;
    370384}
    371385
    372 #adminmenu li .wp-submenu {
     386ul#adminmenu .wp-submenu {
    373387        left: auto;
    374         right: 146px;
     388        right: 150px;
    375389}
    376390
     391ul#adminmenu .wp-has-current-submenu .wp-submenu {
     392        right: auto;
     393}
    377394
     395ul#adminmenu .wp-has-current-submenu ul > li > a {
     396        padding-right: 12px;
     397}
     398
     399ul#adminmenu a.wp-has-current-submenu:after,
     400ul#adminmenu > li.current > a.current:after {
     401        right: auto;
     402        left: 0;
     403}
     404
    378405.folded #adminmenu .wp-submenu.sub-open,
    379406.folded #adminmenu .opensub .wp-submenu,
    380407.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     
    383410.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
    384411.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu  {
    385412        left: auto;
    386         right: 32px;
     413        right: 36px;
    387414}
    388415
    389 #adminmenu div.wp-menu-image,
     416ul#adminmenu div.wp-menu-image,
    390417.folded #adminmenu div.wp-menu-image {
    391418        float: right;
    392419        width: 30px;
    393420}
    394421
    395 #adminmenu .wp-submenu a,
    396 #adminmenu li li a,
     422ul#adminmenu .wp-submenu a,
     423ul#adminmenu li li a,
    397424.folded #adminmenu .wp-not-current-submenu li a {
    398425        padding-left: 0;
    399426        padding-right: 12px;
    400427}
    401428
    402 #adminmenu .wp-not-current-submenu li a {
     429ul#adminmenu .wp-not-current-submenu li a {
    403430        padding-left: 0;
    404431        padding-right: 18px;
    405432}
     
    407434.wp-menu-arrow {
    408435        right: 0;
    409436
     437        -webkit-transform: translate( -139px );
    410438        -moz-transform:    translate( -139px );
    411         -webkit-transform: translate( -139px );
    412439        -o-transform:      translate( -139px );
    413440        -ms-transform:     translate( -139px );
    414441        transform:         translate( -139px );
     
    418445        right: -20px;
    419446}
    420447
    421 #adminmenu .wp-menu-arrow div {
     448ul#adminmenu .wp-menu-arrow div {
    422449        left: -8px;
    423450        width: 16px;
    424451}
    425452
    426 #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
     453ul#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
     454        -webkit-transform: translate( -138px );
    427455        -moz-transform:    translate( -138px );
    428         -webkit-transform: translate( -138px );
    429456        -o-transform:      translate( -138px );
    430457        -ms-transform:     translate( -138px );
    431458        transform:         translate( -138px );
    432459}
    433460
    434461.folded #adminmenu li .wp-menu-arrow {
     462        -webkit-transform: translate( -26px );
    435463        -moz-transform:    translate( -26px );
    436         -webkit-transform: translate( -26px );
    437464        -o-transform:      translate( -26px );
    438465        -ms-transform:     translate( -26px );
    439466        transform:         translate( -26px );
    440467}
    441468
    442 #adminmenu .wp-not-current-submenu .wp-menu-arrow div {
     469ul#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
    443470    border-style: solid solid none none;
    444471    border-width: 1px 1px 0 0;
    445472}
    446473
    447 #adminmenu .wp-menu-image img {
     474ul#adminmenu .wp-menu-image img {
    448475        padding: 7px 7px 0 0;
    449476}
    450477
    451 #adminmenu .wp-submenu .wp-submenu-head {
     478ul#adminmenu .wp-submenu .wp-submenu-head {
    452479        padding: 5px 10px 5px 4px;
    453480        -webkit-border-top-right-radius: 0;
    454         -webkit-border-top-left-radius: 3px;
    455481        border-top-right-radius: 0;
    456         border-top-left-radius: 3px;
    457482}
    458483
    459484.folded #adminmenu li.wp-has-current-submenu .wp-submenu {
     
    469494        border-top-left-radius: 3px;
    470495}
    471496
    472 #adminmenu .awaiting-mod,
    473 #adminmenu span.update-plugins,
     497ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
     498        right: auto;
     499        left: 0;
     500}
     501
     502ul#adminmenu .awaiting-mod,
     503ul#adminmenu span.update-plugins,
    474504#sidemenu li a span.update-plugins {
    475505        font-family: Tahoma, Arial, sans-serif;
    476506        margin-left: 0;
     
    481511        float: right;
    482512}
    483513
     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
    484527/* Auto-folding of the admin menu */
    485528@media only screen and (max-width: 900px) {
    486529        .auto-fold #wpcontent {
    487                 margin-left: 0;
     530                margin-left: left;
    488531                margin-right: 52px;
    489532        }
    490533
    491534        .auto-fold.wp-admin #wpfooter {
    492                 margin-left: 15px;
     535                margin-left: leftpx;
    493536                margin-right: 52px;
    494537        }
    495538
     
    506549        .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
    507550        .no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu  {
    508551                left: auto;
    509                 right: 32px;
     552                right: 36px;
    510553        }
    511554
    512555        .auto-fold #adminmenu .wp-not-current-submenu li a {
     
    515558        }
    516559
    517560        .auto-fold #adminmenu li .wp-menu-arrow {
     561                -webkit-transform: translate( -27px );
    518562                -moz-transform:    translate( -27px );
    519                 -webkit-transform: translate( -27px );
    520563                -o-transform:      translate( -27px );
    521564                -ms-transform:     translate( -27px );
    522565                transform:         translate( -27px );
     
    534577                border-top-right-radius: 0;
    535578                border-top-left-radius: 3px;
    536579        }
     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        }
    537592}
    538593
    539594/* List table styles */
     
    541596        font-family: Tahoma, Arial, sans-serif;
    542597}
    543598
    544 .post-com-count {
    545         background-image: url('../images/bubble_bg-rtl.gif');
    546 }
    547 
    548599.column-response .post-com-count {
    549600        float: right;
    550601        margin-right: 0;
     
    762813
    763814.view-switch {
    764815        float: left;
     816        margin-left: 16px;
     817        margin-right: 8px;
    765818}
    766819
     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
    767831.filter {
    768832        float: right;
    769833        margin: -5px 10px 0 0;
     
    889953        float: right;
    890954}
    891955
     956p.submit,
    892957.submitbox .submit {
    893958        text-align: right;
    894959}
     
    902967        margin-left: 4px;
    903968}
    904969
     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
    905981#normal-sortables .postbox .submit {
    906982        float: left;
    907983}
     
    910986        margin: 0 125px 0 5px;
    911987}
    912988
     989.category-tabs {
     990        margin-bottom: 3px;
     991}
     992
    913993#side-sortables .comments-box thead th,
    914994#normal-sortables .comments-box thead th {
    915995        font-style: normal;
     
    9461026.curtime #timestamp {
    9471027        background-position: right top;
    9481028        padding-left: 0;
    949         padding-right: 18px;
    9501029}
    9511030
    9521031.compat-attachment-fields th {
     
    11081187
    11091188label.post-format-icon {
    11101189        margin-left: 0;
    1111         margin-right: 5px;
    1112         padding-left: 0px;
    1113         padding-right: 21px;
     1190        margin-right: 0;
     1191        padding-left: 0;
     1192        padding-right: 0;
    11141193}
    11151194
    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;
    11181198}
    11191199
    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 
    11561200/*------------------------------------------------------------------------------
    11571201  12.0 - Categories
    11581202------------------------------------------------------------------------------*/
     
    14261470        margin: 2px 0 5px 3px;
    14271471}
    14281472
     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
     1484th .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
    14291496/*------------------------------------------------------------------------------
    14301497  16.0 - Themes
    14311498------------------------------------------------------------------------------*/
     
    15631630        margin: 0 0 -1px 6px;
    15641631}
    15651632
     1633.wrap h2.nav-tab-wrapper,
     1634.wrap h3.nav-tab-wrapper {
     1635        padding-left: 0;
     1636        padding-right: 10px;
     1637}
     1638
    15661639h2 .nav-tab {
    15671640        font-family: Tahoma, Arial, sans-serif;
    15681641}
     
    15781651}
    15791652
    15801653#wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title {
    1581         padding-right: 0;
     1654        padding-right: 9px;
    15821655        padding-left: 12px;
    15831656}
    15841657
     1658.plugin-update-tr .update-message:before {
     1659        margin: 0 -2px 0 8px;
     1660}
    15851661
     1662
    15861663/*------------------------------------------------------------------------------
    15871664  18.0 - Users
    15881665------------------------------------------------------------------------------*/
     
    16061683  19.0 - Tools
    16071684------------------------------------------------------------------------------*/
    16081685
     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
    16091712.pressthis a span {
    1610         background-position: right 5px;
    1611         padding: 8px 27px 8px 11px;
     1713        padding: 0px 3px 8px 12px;
    16121714}
    16131715
    16141716.pressthis a:after {
     
    16601762
    16611763#wpcontent,
    16621764#wpfooter {
    1663         margin-right: 165px;
     1765        padding-left: inherit;
     1766        margin-right: 170px;
    16641767}
    16651768
    16661769/*------------------------------------------------------------------------------
     
    17061809        float: right;
    17071810}
    17081811
    1709 .about-wrap .feature-section.two-col div,
    17101812.about-wrap .feature-section.three-col div {
    17111813        margin-right: 0;
    17121814        margin-left: 4.999999999%;
    17131815        float: right;
    17141816}
    17151817
    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;
    17171824        margin-left: 0;
    17181825}
    17191826
    1720 .about-wrap .feature-section div p img {
    1721         float: left;
     1827.about-wrap .feature-section.three-col .last-feature {
    17221828        margin-left: 0;
    1723         margin-right: 10px;
    17241829}
    17251830
     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
    17261845.about-wrap li.wp-person,
    17271846.about-wrap li.wp-person img.gravatar {
    17281847        float: right;
     
    17301849        margin-left: 10px;
    17311850}
    17321851
     1852@media only screen and (max-width: 768px) {
     1853        .about-wrap .feature-section img.image-66 {
     1854                float: none;
     1855        }
    17331856
     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
    17341866/*------------------------------------------------------------------------------
    17351867  23.0 - Misc
    17361868------------------------------------------------------------------------------*/
     
    17631895
    17641896}
    17651897.tagchecklist span a {
    1766         margin: 4px -10px 0 0;
     1898        margin: 0 -17px 0 0;
    17671899        float: right;
    17681900}
    17691901
     
    18712003.wp-full-overlay-sidebar:after {
    18722004        right: auto;
    18732005        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);
    18752008}
    18762009
    18772010.wp-full-overlay.collapsed,
     
    19442077        float: right;
    19452078}
    19462079
    1947 #adminmenu {
     2080ul#adminmenu {
    19482081        clear: right;
    19492082}
    19502083
     
    20472180
    20482181.wrap {
    20492182        margin-right: 0;
    2050         margin-left: 15px;
     2183        margin: 10px 2px 0 20px;
    20512184}
    20522185
    20532186.wrap h2,
     
    21532286
    21542287/* Recent Comments */
    21552288#the-comment-list .comment-item {
    2156         padding: 1em 70px 1em 10px;
     2289        padding: 1em 10px 1em 10px;
    21572290}
    21582291
    21592292#the-comment-list .comment-item .avatar {
    21602293        float: right;
    2161         margin-left: 0;
    2162         margin-right: -60px;
     2294        margin-left: 10px;
     2295        margin-right: 0;
    21632296}
    21642297
    21652298/* Feeds */
     
    21902323        margin: 4px 0 0 6px;
    21912324}
    21922325
     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
    21932337/* Recent Drafts */
    21942338#dashboard_recent_drafts h4 abbr {
    21952339        font-family: Tahoma, Arial, sans-serif;
     
    26462790        float: left;
    26472791}
    26482792
     2793.plugin-editor-php #submit,
     2794.theme-editor-php #submit {
     2795        float: right;
     2796}
     2797
    26492798#template textarea,
    26502799#docs-list {
    26512800        direction: ltr;
     
    26692818        padding-left: 25px;
    26702819}
    26712820
     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
    26722832/* widgets */
    26732833/* 2 column liquid layout */
    26742834div.widget-liquid-left {
     
    27162876        float: left;
    27172877}
    27182878
    2719 /* Press This */
    2720 .press-this-sidebar {
    2721         float: left;
     2879.widgets-holder-wrap .sidebar-name-arrow {
     2880        margin: -1px 0 0 26px;
    27222881}
    27232882
    2724 .press-this #header-logo,
    2725 .press-this #wphead h1 {
    2726         float: right;
    2727 }
    2728 
    27292883/* RTL */
    27302884.ltr {
    27312885        direction: ltr;
     
    27932947  (-o-min-device-pixel-ratio: 5/4),
    27942948  (-webkit-min-device-pixel-ratio: 1.25),
    27952949  (min-resolution: 120dpi) {
    2796         .post-com-count {
    2797                 background-image: url('../images/bubble_bg-rtl-2x.gif');
    2798                 background-size: 18px 100px;
    2799         }
    28002950
    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 {
    28022953                background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom;
    28032954                background-size: 11px 11px;
    28042955        }
     
    28232974                background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
    28242975        }
    28252976
    2826         .wp-slider .ui-slider-handle:before {
    2827                 background-image: url(../images/arrows-pr-2x.png);
    2828                 background-size: 16px 102px;
    2829         }
    2830 
    28312977}
    28322978
    28332979/* =Localized CSS
  • src/wp-admin/css/wp-admin.css

     
    6161
    6262#wpcontent,
    6363#wpfooter {
    64         margin-left: 165px;
     64        margin-left: 170px;
    6565}
    6666
    6767.folded #wpcontent,
    6868.folded #wpfooter {
    69         margin-left: 52px;
     69        margin-left: 56px;
    7070}
    7171
    7272#wpbody-content {
    7373        padding-bottom: 65px;
    7474        float: left;
    7575        width: 100%;
     76        overflow: visible !important;
    7677}
    7778
    7879#adminmenuback,
    7980#adminmenuwrap,
    8081#adminmenu,
    8182#adminmenu .wp-submenu {
    82         width: 145px;
     83        width: 150px;
    8384}
    8485
    8586#adminmenuback {
     
    9192
    9293#adminmenu {
    9394        clear: left;
    94         margin: 0;
     95        margin: 12px 0 0;
    9596        padding: 0;
    9697        list-style: none;
    9798}
     
    100101.folded #adminmenuwrap,
    101102.folded #adminmenu,
    102103.folded #adminmenu li.menu-top {
    103         width: 32px;
     104        width: 36px;
    104105}
    105106
    106107/* inner 2 column liquid layout */
     
    212213        width: auto;
    213214        display: block;
    214215        font-size: 14px;
    215         font-weight: bold;
     216        font-weight: 600;
    216217        padding: 15px 23px 14px;
    217218        background: #f1f1f1;
    218219        color: #21759b;
     
    236237}
    237238
    238239/* include margin and padding in the width calculation of input and textarea */
     240input,
    239241input[type="text"],
    240242input[type="password"],
    241243input[type="number"],
     
    247249        -webkit-box-sizing: border-box;
    248250        -ms-box-sizing: border-box; /* ie8 only */
    249251        box-sizing: border-box;
     252        -webkit-border-radius: 0;
     253        border-radius: 0;
    250254}
    251255
    252256input[type="checkbox"],
    253257input[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;
    257275}
    258276
     277td > 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
     291input[type="checkbox"] {
     292        border-radius: 0;
     293}
     294
     295input[type=radio] {
     296        border-radius: 50%;
     297        margin-right: 4px;
     298        line-height: 10px;
     299}
     300
     301input[type=checkbox]:checked:before,
     302input[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
     312input[type=checkbox]:checked:before {
     313        content: '\f147';
     314        margin: -3px 0 0 -4px;
     315}
     316
     317input[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 */
    259337input[type="search"] {
    260338        -webkit-appearance: textfield;
    261339}
     
    273351}
    274352
    275353body {
    276         font-family: sans-serif;
    277         font-size: 12px;
     354        font-family: "Open Sans", sans-serif;
     355        font-size: 13px;
    278356        line-height: 1.4em;
    279357        min-width: 600px;
    280358}
     
    309387        line-height: inherit;
    310388}
    311389
     390textarea {
     391        overflow: auto;
     392}
     393
     394textarea,
    312395input,
    313396select {
     397        font-size: 14px;
     398        padding: 3px 5px;
    314399        line-height: 15px;
    315400}
    316401
     402textarea {
     403        padding: 2px 6px;
     404        line-height: 1.4;
     405}
     406
    317407a,
    318408input[type="text"],
    319409input[type="password"],
     
    327417        outline: 0;
    328418}
    329419
     420.wp-admin input[type="file"] {
     421        border: none;
     422        background: none;
     423        padding: 8px 0 0;
     424}
     425
    330426a:focus,
    331427a:active {
    332428        outline: thin dotted;
     
    351447        content: none;
    352448}
    353449
    354 p {
     450p,
     451.wp_attachment_details label[for="content"] {
     452        font-size: 13px;
     453        line-height: 1.5;
    355454        margin: 1em 0;
    356455}
    357456
     
    368467        margin-bottom: 6px;
    369468}
    370469
    371 textarea,
    372470input,
    373471select {
    374472        margin: 1px;
    375         padding: 3px;
     473        padding: 3px 5px;
    376474}
    377475
    378476h1,
     
    382480h5,
    383481h6 {
    384482        display: block;
    385         font-weight: bold;
     483        font-weight: 600;
    386484}
    387485
    388486h1 {
     
    396494}
    397495
    398496h3 {
    399         font-size: 1.17em;
     497        font-size: 1.3em;
    400498        margin: 1em 0;
    401499}
    402500
     
    458556        font-family: Consolas, Monaco, monospace;
    459557}
    460558
     559input.code {
     560        padding-top: 6px;
     561}
     562
     563textarea.code {
     564        line-height: 1.4;
     565        padding: 4px 6px 1px 6px;
     566}
     567
    461568kbd,
    462569code {
    463         padding: 1px 3px;
     570        padding: 3px 5px 2px 5px;
    464571        margin: 0 1px;
    465         font-size: 11px;
     572        font-size: 13px;
    466573}
    467574
    468575.subsubsub {
    469576        list-style: none;
    470         margin: 8px 0 5px;
     577        margin: 8px 0 0;
    471578        padding: 0;
    472         font-size: 12px;
     579        font-size: 13px;
    473580        float: left;
    474581}
    475582
     
    486593}
    487594
    488595.subsubsub a.current {
    489         font-weight: bold;
     596        font-weight: 600;
    490597        border: none;
    491598}
    492599
     
    497604        white-space: nowrap;
    498605}
    499606
    500 .widefat,
    501 div.updated,
    502 div.error,
    503 .wrap .add-new-h2,
    504607textarea,
    505608input[type="text"],
    506609input[type="password"],
     
    511614input[type="tel"],
    512615input[type="url"],
    513616select,
    514 .tablenav .tablenav-pages a,
    515617.tablenav-pages span.current,
    516618#titlediv #title,
    517 .postbox,
    518619#postcustomstuff table,
    519620#postcustomstuff input,
    520621#postcustomstuff textarea,
    521622.imgedit-menu div,
    522623.plugin-update-tr .update-message,
    523624#poststuff .inside .the-tagcloud,
    524 .login form,
    525 #login_error,
    526 .login .message,
    527 #menu-management .menu-edit,
    528625.nav-menus-php .list-container,
    529626.menu-item-handle,
    530627.link-to-original,
    531628.nav-menus-php .major-publishing-actions .form-invalid,
    532 .press-this #message,
    533629#TB_window,
    534630.tbtitle,
    535631.highlight,
    536 .feature-filter,
    537 #widget-list .widget-top,
    538632.editwidget .widget-inside {
    539         -webkit-border-radius: 3px;
    540         border-radius: 3px;
    541633        border-width: 1px;
    542634        border-style: solid;
    543635}
     
    558650        text-decoration: none;
    559651}
    560652
    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 
    578653.widefat td,
    579654.widefat th {
    580         border-width: 1px 0;
    581         border-style: solid;
     655        padding: 8px 10px;
    582656}
    583657.widefat tfoot th {
    584658        border-bottom: none;
     
    589663}
    590664
    591665.widefat td {
    592         font-size: 12px;
    593         padding: 4px 7px 2px;
    594666        vertical-align: top;
    595667}
    596668
     669.widefat td,
    597670.widefat td p,
    598671.widefat td ol,
    599672.widefat td ul {
    600         font-size: 12px;
     673        font-size: 13px;
     674        line-height: 1.5em;
    601675}
    602676
    603677.widefat th {
    604         padding: 7px 7px 8px;
    605678        text-align: left;
    606679        line-height: 1.3em;
    607680        font-size: 14px;
     
    619692        vertical-align: top;
    620693}
    621694
     695.widefat th input[type=checkbox] {
     696        margin-top: -1px;
     697}
     698
    622699.widefat tbody th.check-column {
    623700        padding: 9px 0 22px;
    624701}
     
    627704        padding-top: 8px;
    628705}
    629706
    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;
    633711}
    634712
     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
    635754.no-js .widefat thead .check-column input,
    636755.no-js .widefat tfoot .check-column input {
    637756        display: none;
     
    649768}
    650769
    651770.wrap {
    652         margin: 4px 15px 0 0;
     771        margin: 10px 20px 0 2px;
    653772}
    654773
    655774div.updated,
     
    670789        margin: 5px 0 15px;
    671790}
    672791
     792div.updated,
     793.login .message,
     794.press-this #message {
     795        border: none;
     796        padding: 1px 12px;
     797}
     798
     799div.error,
     800.login #login_error {
     801        border: none;
     802}
     803
     804div.error {
     805        padding: 1px 12px;
     806}
     807
    673808.wrap h2,
    674809.subtitle {
    675810        font-weight: normal;
    676811        margin: 0;
    677         text-shadow: #fff 0 1px 0;
    678812}
    679813
    680814.wrap h2 {
    681815        font-size: 23px;
     816        font-weight: 400;
    682817        padding: 9px 15px 4px 0;
    683818        line-height: 29px;
    684819}
     
    688823        padding-left: 25px;
    689824}
    690825
    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;
    693830        margin-left: 4px;
    694         padding: 3px 8px;
     831        padding: 4px 8px;
    695832        position: relative;
    696833        top: -3px;
    697834        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;
    700840}
    701841
    702842.wrap h2.long-header {
     
    778918.widefat th,
    779919.quicktags,
    780920.search {
    781         font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
     921        font-family: "Open Sans", sans-serif;
    782922}
    783923
     924.widget .widget-top,
     925.postbox h3,
     926.stuffbox h3,
     927.control-section .accordion-section-title,
     928h3.dashboard-widget-title,
     929h3.dashboard-widget-title span,
     930h3.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
    784943h2 .nav-tab,
    785944.wrap h2,
    786945.subtitle,
    787946.login form .input {
    788         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     947        font-family: "Open Sans", sans-serif;
    789948}
    790949
    791950.quicktags,
     
    794953}
    795954
    796955.icon32 {
    797         float: left;
    798         height: 34px;
    799         margin: 7px 8px 0 0;
    800         width: 36px;
     956        display: none;
    801957}
    802958
    803959.icon16 {
     
    808964        float: left;
    809965}
    810966
     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
    8111078.key-labels label {
    8121079        line-height: 24px;
    8131080}
    8141081
     1082strong, b {
     1083        font-weight: 600;
     1084}
     1085
    8151086.pre {
    8161087        /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
    8171088        white-space: pre-wrap; /* css-3 */
     
    8211092.howto {
    8221093        font-style: italic;
    8231094        display: block;
    824         font-family: sans-serif;
     1095        font-family: "Open Sans", sans-serif;
    8251096}
    8261097
    8271098p.install-help {
     
    8401111
    8411112.wp-admin select {
    8421113        padding: 2px;
    843         height: 2em;
     1114        line-height: 28px;
     1115        height: 28px;
    8441116}
    8451117
     1118.meta-box-sortables select {
     1119        max-width: 100%;
     1120}
     1121
    8461122.wp-admin select[multiple] {
    8471123        height: auto;
    8481124}
     
    8601136        text-decoration: none;
    8611137}
    8621138
     1139p.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
     1151table.form-table + p.submit,
     1152table.form-table + input + p.submit,
     1153table.form-table + input + input + p.submit {
     1154        border-top: none;
     1155        padding-top: 0;
     1156}
     1157
     1158table.widefat span.delete a:hover,
     1159table.widefat span.trash a:hover,
     1160table.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
    8631175#minor-publishing-actions input,
    8641176#major-publishing-actions input,
    8651177#minor-publishing-actions .preview {
     
    8831195
    8841196input.small-text {
    8851197        width: 50px;
     1198        padding: 1px 6px;
    8861199}
    8871200
    8881201input[type="number"].small-text {
    889         width: 60px;
     1202        width: 65px;
    8901203}
    8911204
    8921205#doaction,
     
    9241237        vertical-align: middle;
    9251238}
    9261239
     1240fieldset label,
     1241#your-profile label + a {
     1242        vertical-align: middle;
     1243}
     1244
     1245.options-media-php label[for*="_size_"],
    9271246#misc-publishing-actions label {
    9281247        vertical-align: baseline;
    9291248}
    9301249
     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
    9311265#pass-strength-result {
    9321266        border-style: solid;
    9331267        border-width: 1px;
     
    9511285#search-plugins input[name="s"],
    9521286.tagsdiv .newtag {
    9531287        float: left;
    954         height: 2em;
     1288        height: 28px;
    9551289        margin: 0 4px 0 0;
    9561290}
    9571291
     
    10021336------------------------------------------------------------------------------*/
    10031337
    10041338#major-publishing-actions {
    1005         padding: 10px 10px 8px;
     1339        padding: 10px;
    10061340        clear: both;
    1007         border-top: 1px solid #f5f5f5;
    1008         margin-top: -2px;
     1341        border-top: 1px solid #dedede;
     1342        background: #f5f5f5;
    10091343}
    10101344
    10111345#delete-action {
    1012         line-height: 25px;
     1346        line-height: 28px;
    10131347        vertical-align: middle;
    10141348        text-align: left;
    10151349        float: left;
     
    10311365
    10321366.misc-pub-section {
    10331367        padding: 6px 10px 8px;
    1034         border-width: 1px 0;
    1035         border-style: solid;
    10361368}
    10371369
    10381370.misc-pub-section:first-child {
     
    10441376}
    10451377
    10461378#minor-publishing-actions {
    1047         padding: 10px 10px 2px 8px;
     1379        padding: 10px 10px 0 10px;
    10481380        text-align: right;
    10491381}
    10501382
    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 
    10581383#save-post {
    10591384        float: left;
    10601385}
     
    11101435
    11111436#update-nag,
    11121437.update-nag {
     1438        display: inline-block;
    11131439        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;
    11241444}
    11251445
    11261446.plugins .plugin-update {
     
    11291449
    11301450.plugin-update .update-message {
    11311451        margin: 0 10px 8px 31px;
    1132         font-weight: bold;
     1452        font-weight: 600;
    11331453}
    11341454
    11351455ul#dismissed-updates {
     
    11631483        margin-left: 2em;
    11641484}
    11651485
     1486/*------------------------------------------------------------------------------
     1487  5.0 - TinyMCE
     1488------------------------------------------------------------------------------*/
    11661489
     1490/* nothing? */
     1491
    11671492/*------------------------------------------------------------------------------
    11681493  6.0 - Admin Header
    11691494------------------------------------------------------------------------------*/
     
    11871512
    11881513#contextual-help-wrap {
    11891514        overflow: auto;
     1515        margin-left: 0 !important;
    11901516}
    11911517
    11921518#screen-meta .screen-reader-text {
     
    11941520}
    11951521
    11961522#screen-meta-links {
    1197         margin: 0 24px 0 0;
     1523        margin: 0 20px 0 0;
    11981524}
    11991525
    12001526#screen-meta-links a:focus {
     
    12061532/* screen options and help tabs revert */
    12071533#screen-meta {
    12081534        display: none;
     1535        font-size: 14px;
     1536        margin: 0 20px -1px 0px;
    12091537        position: relative;
    1210         margin: 0 15px 0 5px;
    1211         border-width: 0 1px 1px;
    1212         border-style: none solid solid;
    12131538}
    12141539
    12151540#screen-options-link-wrap,
    12161541#contextual-help-link-wrap {
    12171542        float: right;
    12181543        height: 23px;
    1219         padding: 0;
     1544        padding: 3px 6px;
    12201545        margin: 0 0 0 6px;
    1221         font-family: sans-serif;
     1546        font-family: "Open Sans", sans-serif;
    12221547}
    12231548
    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 
    12331549#screen-meta-links .screen-meta-toggle {
    12341550        position: relative;
    1235         top: -1px;
     1551        top: 0;
    12361552}
    12371553
    12381554#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;
    12391560        text-decoration: none;
    12401561        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;
    12471562}
    12481563
     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
    12491582#screen-meta-links a.show-settings:hover {
    12501583        text-decoration: none;
    12511584}
     
    12731606.metabox-prefs label {
    12741607        display: inline-block;
    12751608        padding-right: 15px;
    1276         white-space: nowrap;
    12771609        line-height: 30px;
    12781610}
    12791611
     1612.metabox-prefs label input[type=checkbox] {
     1613        margin-top: -4px;
     1614        margin-right: 6px;
     1615}
     1616
    12801617.metabox-prefs label input {
    12811618        margin: 0 5px 0 2px;
    12821619}
     
    12951632
    12961633#contextual-help-wrap {
    12971634        padding: 0;
    1298         margin-left: -4px;
    12991635}
    13001636
    13011637#contextual-help-columns {
     
    13341670        margin-bottom: 0;
    13351671        list-style-type: none;
    13361672        border-style: solid;
    1337         border-width: 1px 0;
     1673        border-width: 0 0 0 2px;
    13381674        border-color: transparent;
    13391675}
    13401676
     
    13431679        padding: 5px 5px 5px 12px;
    13441680        line-height: 18px;
    13451681        text-decoration: none;
     1682        border-style: solid;
     1683        border-width: 1px 0 1px 0;
     1684        border-color: transparent;
    13461685}
    13471686
    13481687.contextual-help-tabs .active {
    13491688        padding: 0;
    13501689        margin: 0 -1px 0 0;
    1351         border-width: 1px 0 1px 1px;
     1690        border-width: 0 0 0 2px;
    13521691        border-style: solid;
    13531692}
    13541693
     
    13841723  7.0 - Main Navigation (Left Menu)
    13851724------------------------------------------------------------------------------*/
    13861725
    1387 #adminmenuback,
    13881726#adminmenuwrap {
    1389         border-width: 0 1px 0 0;
    1390         border-style: solid;
    1391 }
    1392 
    1393 #adminmenuwrap {
    13941727        position: relative;
    13951728        float: left;
    13961729}
     
    14241757}
    14251758
    14261759#adminmenu li.menu-top {
    1427         min-height: 28px;
     1760        border: none;
     1761        min-height: 34px;
    14281762        position: relative;
    14291763}
    14301764
    14311765#adminmenu .wp-submenu {
    14321766        list-style: none;
    1433         padding: 4px 0;
    1434         margin: 0;
    14351767        position: absolute;
    14361768        top: -1000em;
    1437         left: 146px;
    1438         z-index: 1000;
     1769        left: 150px;
    14391770        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;
    14461772}
    14471773
     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
    14481781.js #adminmenu .sub-open,
    14491782.js #adminmenu .opensub .wp-submenu,
    14501783#adminmenu a.menu-top:focus + .wp-submenu,
     
    14641797        right: auto;
    14651798        bottom: auto;
    14661799        border: 0 none;
    1467 
     1800        margin-top: 0;
    14681801        -webkit-box-shadow: none;
    14691802        box-shadow: none;
    14701803}
     
    14761809.folded #adminmenu a.menu-top:focus + .wp-submenu,
    14771810.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
    14781811.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu  {
    1479         top: -1px;
    1480         left: 32px;
     1812        top: 0;
     1813        left: 36px;
    14811814}
    14821815
    14831816.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    14841817.folded #adminmenu .wp-has-current-submenu .wp-submenu {
    1485         border-width: 1px;
    1486         border-style: solid;
    14871818        position: absolute;
    14881819        top: -1000em;
    14891820}
    14901821
     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
    14911828#adminmenu .wp-submenu a {
    1492         font-size: 12px;
    1493         line-height: 18px;
     1829        font-size: 13px;
     1830        line-height: 1.2;
    14941831        margin: 0;
    1495         padding-left: 12px;
     1832        padding: 6px 0;
    14961833}
    14971834
    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;
    15001842}
    15011843
    15021844#adminmenu .wp-has-current-submenu ul > li > a,
    15031845.folded #adminmenu li.menu-top .wp-submenu > li > a {
    1504         padding-left: 12px;
     1846        padding: 6px 12px;
    15051847}
    15061848
    15071849#adminmenu a.menu-top,
    15081850#adminmenu .wp-submenu-head {
    1509         font-size: 13px;
    1510         font-weight: bold;
     1851        font-size: 14px;
     1852        font-weight: 400;
    15111853        line-height: 18px;
    15121854        padding: 0;
    15131855}
     
    15271869        overflow: hidden;
    15281870}
    15291871
    1530 #adminmenu a.menu-top {
    1531         border-width: 1px 0;
    1532         border-style: solid none;
    1533 }
    1534 
    15351872#adminmenu .wp-menu-image img {
    1536         padding: 7px 0 0 7px;
     1873        padding: 9px 0 0 0px;
    15371874        opacity: 0.6;
    15381875        filter: alpha(opacity=60);
    15391876}
    15401877
    15411878#adminmenu div.wp-menu-name {
    1542         padding: 5px;
     1879        padding: 8px 12px 8px 0;
    15431880}
    15441881
    15451882#adminmenu div.wp-menu-image {
    15461883        float: left;
    1547         width: 28px;
    1548         height: 28px;
     1884        width: 34px;
     1885        height: 30px;
     1886        margin: 0;
     1887        text-align: center;
    15491888}
    15501889
     1890div.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
    15511904.folded #adminmenu div.wp-menu-image {
    1552         width: 32px;
     1905        width: 34px;
     1906        height: 30px;
    15531907        position: absolute;
    15541908        z-index: 25;
    15551909}
    15561910
    15571911.folded #adminmenu a.menu-top {
    1558         height: 28px;
     1912        height: 34px;
    15591913}
    15601914
     1915/* A new arrow */
     1916
    15611917.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}
    15681920
    1569         -moz-transform:    translate( 146px );
    1570         -webkit-transform: translate( 146px );
    1571         -o-transform:      translate( 146px );
    1572         -ms-transform:     translate( 146px );
    1573         transform:         translate( 146px );
     1921ul#adminmenu a.wp-has-current-submenu {
     1922        position: relative;
    15741923}
    15751924
    1576 #adminmenu .wp-menu-arrow div {
    1577         display: none;
     1925ul#adminmenu a.wp-has-current-submenu:after,
     1926ul#adminmenu > li.current > a.current:after {
     1927        right: 0;
     1928        border: solid transparent;
     1929        content: " ";
     1930        height: 0;
     1931        width: 0;
    15781932        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;
    15891937}
    15901938
    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;
    16011941}
    16021942
    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;
    16091947}
    16101948
    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;
    16211961}
    16221962
    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;
    16261967}
    16271968
    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;
    16321974}
    16331975
    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;
    16361980}
    16371981
    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 
    16591982#adminmenu li.menu-top:hover .wp-menu-image img,
    16601983#adminmenu li.wp-has-current-submenu .wp-menu-image img {
    16611984        opacity: 1;
     
    16651988#adminmenu li.wp-menu-separator {
    16661989        height: 3px;
    16671990        padding: 0;
    1668         margin: 0;
     1991        margin: 0 0 6px 0;
    16691992        border-width: 1px 0;
    16701993        border-style: solid;
    16711994        cursor: inherit;
     
    16792002}
    16802003
    16812004#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;
    16882009}
    16892010
    1690 #adminmenu li.wp-menu-open {
    1691         border-width: 0 0 1px;
    1692         border-style: solid;
    1693 }
    1694 
    16952011#adminmenu li.current,
    16962012.folded #adminmenu li.wp-menu-open {
    16972013        border: 0 none;
    16982014}
    16992015
    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 
    17082016#adminmenu .awaiting-mod,
    17092017#adminmenu span.update-plugins,
    17102018#sidemenu li a span.update-plugins {
    17112019        position: absolute;
    1712         font-family: sans-serif;
     2020        font-family: "Open Sans", sans-serif;
    17132021        font-size: 9px;
    17142022        line-height: 17px;
    1715         font-weight: bold;
     2023        font-weight: 600;
    17162024        margin-top: 1px;
    17172025        margin-left: 7px;
    17182026        -webkit-border-radius: 10px;
     
    17202028        z-index: 26;
    17212029}
    17222030
     2031#adminmenu .wp-submenu .update-plugins {
     2032        margin-top: 0;
     2033}
     2034
    17232035#adminmenu li .awaiting-mod span,
    17242036#adminmenu li span.update-plugins span,
    17252037#sidemenu li a span.update-plugins span {
     
    17322044        display: none;
    17332045}
    17342046
    1735 #collapse-menu {
    1736         font-size: 12px;
     2047#adminmenu #collapse-menu {
     2048        font-size: 13px;
    17372049        line-height: 34px;
    1738         border-width: 1px 0 0;
    1739         border-style: solid;
     2050        margin-top: 10px;
    17402051}
    17412052
    17422053.folded #collapse-menu span {
     
    17512062
    17522063#collapse-button {
    17532064        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
    17572069        -webkit-border-radius: 10px;
    17582070        border-radius: 10px;
    17592071}
    17602072
     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
    17612104/* Auto-folding of the admin menu */
    17622105@media only screen and (max-width: 900px) {
    17632106        .auto-fold #wpcontent,
    17642107        .auto-fold #wpfooter {
    1765                 margin-left: 52px;
     2108                margin-left: 56px;
    17662109        }
    17672110
    17682111        .auto-fold #adminmenuback,
    17692112        .auto-fold #adminmenuwrap,
    17702113        .auto-fold #adminmenu,
    17712114        .auto-fold #adminmenu li.menu-top {
    1772                 width: 32px;
     2115                width: 36px;
    17732116        }
    17742117
    17752118        .auto-fold #adminmenu .wp-submenu.sub-open,
     
    17782121        .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
    17792122        .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
    17802123        .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
    1781                 top: -1px;
    1782                 left: 32px;
     2124                top: 0px;
     2125                left: 36px;
    17832126        }
    17842127
    17852128        .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
    17862129        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
    1787                 border-width: 1px;
    1788                 border-style: solid;
    17892130                position: absolute;
    17902131                top: -1000em;
     2132                margin-right: -1px;
     2133                padding: 7px 0 8px;
     2134                z-index: 9999;
    17912135        }
    17922136
     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
    17932148        .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
    17942149                padding-left: 12px;
    17952150        }
     
    18032158        }
    18042159
    18052160        .auto-fold #adminmenu div.wp-menu-image {
    1806                 width: 32px;
     2161                height: 30px;
     2162                width: 34px;
    18072163                position: absolute;
    18082164                z-index: 25;
    18092165        }
    18102166
    18112167        .auto-fold #adminmenu a.menu-top {
    1812                 height: 28px;
     2168                height: 34px;
    18132169        }
    18142170
    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;
    18212173        }
    18222174
    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;
    18252177        }
    18262178
    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;
    18332181        }
    18342182
    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;
    18372187        }
    18382188
    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;
    18412193        }
    18422194
    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;
    18452199        }
    18462200
    18472201        .auto-fold #collapse-menu span {
    18482202                display: none;
    18492203        }
    18502204
     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        }
    18512214}
    18522215
    18532216/* List table styles */
    18542217.post-com-count-wrapper {
    18552218        min-width: 22px;
    1856         font-family: sans-serif;
     2219        font-family: "Open Sans", sans-serif;
    18572220}
    18582221
    18592222.post-com-count {
    1860         background-image: url('../images/bubble_bg.gif');
     2223        background: none;
    18612224        height: 1.3em;
    18622225        line-height: 1.1em;
    18632226        display: block;
     
    18682231        background-repeat: no-repeat;
    18692232}
    18702233
     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
    18712244.post-com-count span {
    18722245        font-size: 11px;
    1873         font-weight: bold;
     2246        font-weight: 600;
    18742247        height: 1.4em;
    18752248        line-height: 1.4em;
    18762249        min-width: 0.7em;
     
    19032276}
    19042277
    19052278th .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;
    19102281}
    19112282
     2283th .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
    19122297/*------------------------------------------------------------------------------
    19132298  8.0 - Layout Blocks
    19142299------------------------------------------------------------------------------*/
    19152300
    19162301html.wp-toolbar {
    1917         padding-top: 28px;
     2302        padding-top: 32px;
    19182303        -webkit-box-sizing: border-box;
    19192304        -moz-box-sizing: border-box;
    19202305        box-sizing: border-box;
     
    20062391
    20072392#poststuff {
    20082393        padding-top: 10px;
     2394        min-width: 763px;
    20092395}
    20102396
    20112397#poststuff #post-body {
     
    20142400
    20152401#post-body-content {
    20162402        width: 100%;
     2403        min-width: 463px;
    20172404        float: left;
    20182405}
    20192406
     
    20912478}
    20922479
    20932480/* 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
    20952486        #wpbody-content #poststuff #post-body {
    20962487                margin: 0;
    20972488        }
     
    21192510        }
    21202511}
    21212512
    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 
    21292513.js .postbox .hndle {
    21302514        cursor: move;
    21312515}
     
    21612545.stuffbox {
    21622546        margin-bottom: 20px;
    21632547        padding: 0;
    2164         border-width: 1px;
    2165         border-style: solid;
    21662548        line-height: 1;
    21672549}
    21682550
     
    21702552.postbox h3,
    21712553.stuffbox h3 {
    21722554        margin-top: 1px;
    2173         border-bottom-width: 1px;
    2174         border-bottom-style: solid;
    21752555        -webkit-user-select: none;
    21762556        -moz-user-select: none;
    21772557        user-select: none;
     
    21842564
    21852565.postbox .inside,
    21862566.stuffbox .inside {
    2187         padding: 0 12px 0 10px;
     2567        padding: 0 12px 12px;
    21882568        line-height: 1.4em;
     2569        font-size: 13px;
    21892570}
    21902571
    21912572.postbox .inside {
    2192         margin: 10px 0;
     2573        margin: 12px 0;
    21932574        position: relative;
    21942575}
    21952576
     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
    21962586.postbox.closed h3 {
    21972587        border: none;
    21982588        -webkit-box-shadow: none;
     
    22292619}
    22302620
    22312621#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;
    22362624        font-size: 11px;
    22372625}
    22382626
     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
    22392635#the-comment-list td.comment p.comment-author {
    22402636        margin-top: 0;
    22412637        margin-left: 0;
     
    22622658.welcome-panel {
    22632659        position: relative;
    22642660        overflow: auto;
    2265         margin: 20px 0;
     2661        margin: 16px 0;
    22662662        padding: 23px 10px 12px;
    2267         border-width: 1px;
    2268         border-style: solid;
    2269         border-radius: 3px;
    22702663        font-size: 13px;
    22712664        line-height: 2.1em;
    22722665}
    22732666
    22742667.welcome-panel h3 {
    22752668        margin: 0;
    2276         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
     2669        font-family: "Open Sans", sans-serif;
    22772670        font-size: 21px;
    22782671        font-weight: normal;
    22792672        line-height: 1.2;
    22802673}
     2674
    22812675.welcome-panel h4 {
    22822676        margin: 1.33em 0 0;
    2283         font-size: 13px;
     2677        font-size: 16px;
    22842678}
    22852679
     2680.welcome-panel li {
     2681        font-size: 14px;
     2682}
     2683
    22862684.welcome-panel .about-description {
    22872685        font-size: 16px;
    22882686        margin: 0;
     
    22982696        line-height: 1;
    22992697}
    23002698
    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;
    23082712}
    23092713
    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;
    23122721}
    23132722
    23142723.wp-core-ui .welcome-panel .button.button-hero {
     
    23402749        width: 36%;
    23412750}
    23422751
     2752.welcome-panel-column p.hide-if-no-customize {
     2753        margin-top: 10px;
     2754}
     2755
    23432756.welcome-panel-column p {
    23442757        margin-top: 7px;
    23452758}
    23462759
    23472760.welcome-panel .welcome-icon {
    23482761        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;
    23532764}
    23542765
    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;
    23572776}
    23582777
    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;
    23612782}
    23622783
    2363 .welcome-panel .welcome-learn-more {
    2364         background-position: 0 -136px;
     2784.welcome-panel .welcome-add-page:before {
     2785        content:'\f132';
    23652786}
    23662787
    2367 .welcome-panel .welcome-comments {
    2368         background-position: 0 -182px;
     2788.welcome-panel .welcome-view-site:before {
     2789        content:'\f115';
     2790        top: -2px;
    23692791}
    23702792
    2371 .welcome-panel .welcome-view-site {
    2372         background-position: 0 -274px;
     2793.welcome-panel .welcome-widgets-menus:before {
     2794        content:'\f116';
     2795        top: -2px;
    23732796}
    23742797
    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;
    23782801}
    23792802
    2380 .welcome-panel .welcome-write-blog {
    2381         background-position: 0 -44px;
     2803.welcome-panel .welcome-learn-more:before {
     2804        content:'\f118';
     2805        top: -1px;
    23822806}
    23832807
     2808.welcome-panel .welcome-widgets-menus {
     2809        line-height: 16px;
     2810}
     2811
    23842812.welcome-panel .welcome-panel-column ul {
    23852813        margin: 0.8em 1em 1em 0;
    23862814}
     
    25022930#commentsdiv #add-new-comment {
    25032931        border-width: 0 0 1px;
    25042932        border-style: none none solid;
     2933        margin-top: 6px;
    25052934}
    25062935
    25072936#commentsdiv .comments-box {
     
    25242953
    25252954.sorting-indicator {
    25262955        display: none;
    2527         width: 7px;
     2956        width: 10px;
    25282957        height: 4px;
    25292958        margin-top: 8px;
    25302959        margin-left: 7px;
    2531         background-image: url('../images/sort.gif');
    2532         background-repeat: no-repeat;
    25332960}
    25342961
     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
     2984th.sorted.asc .sorting-indicator:before,
     2985th.desc:hover span.sorting-indicator:before {
     2986        content: '\f142';
     2987}
     2988
     2989th.sorted.desc .sorting-indicator:before,
     2990th.asc:hover span.sorting-indicator:before {
     2991        content: '\f140';
     2992}
     2993
    25352994tr.wp-locked .locked-indicator {
    25362995        background: url('../images/lock.png') no-repeat;
    25372996        margin: -2px 0 0 6px;
     
    25523011}
    25533012
    25543013tr.wp-locked .locked-info {
     3014        margin-top: 8px;
    25553015        height: auto;
    25563016        opacity: 1;
    25573017}
    25583018
     3019.locked-text {
     3020        vertical-align: top;
     3021}
     3022
    25593023tr.locked-info, tr.wp-locked .locked-info {
    25603024        -webkit-transition: height 1s, opacity 500ms;
    25613025        -moz-transition:    height 1s, opacity 500ms;
     
    26093073
    26103074/* Bulk Actions */
    26113075.tablenav-pages a {
    2612         border-bottom-style: solid;
    2613         border-bottom-width: 2px;
    2614         font-weight: bold;
     3076        font-weight: 600;
    26153077        margin-right: 1px;
    26163078        padding: 0 2px;
    26173079}
    26183080.tablenav-pages .current-page {
     3081        padding-top: 0;
    26193082        text-align: center;
    26203083}
    26213084.tablenav-pages .next-page {
     
    26583121        padding: 3px 6px;
    26593122}
    26603123
     3124.tablenav .tablenav-pages a {
     3125        padding: 0 10px 3px;
     3126        font-size: 16px;
     3127        font-weight: normal;
     3128}
     3129
    26613130.tablenav .tablenav-pages a.disabled:hover ,
    26623131.tablenav .tablenav-pages a.disabled:active {
    26633132        cursor: default;
    26643133}
    26653134
    26663135.tablenav .displaying-num {
    2667         margin-right: 10px;
     3136        margin-right: 2px;
    26683137        font-size: 12px;
    26693138        font-style: italic;
    26703139}
     
    26803149
    26813150.view-switch {
    26823151        float: right;
    2683         margin: 6px 8px 0;
     3152        margin: 5px 16px 0 8px;
    26843153}
    26853154
     3155.view-switch img {
     3156        display: none;
     3157}
     3158
    26863159.view-switch a {
    26873160        text-decoration: none;
    26883161}
    26893162
     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
    26903185.filter {
    26913186        float: left;
    26923187        margin: -5px 0 0 10px;
     
    29423437
    29433438.inline-edit-row fieldset ul.cat-checklist label,
    29443439.inline-edit-row #bulk-titles div {
    2945         font-family: sans-serif;
     3440        font-family: "Open Sans", sans-serif;
    29463441        font-style: normal;
    29473442        font-size: 11px;
    29483443}
     
    29703465        cursor: pointer;
    29713466        display: block;
    29723467        float: left;
    2973         height: 10px;
    2974         margin: 3px 3px 0 -2px;
     3468        height: 18px;
     3469        margin: 0 3px 0 -2px;
    29753470        overflow: hidden;
    29763471        position: relative;
    2977         text-indent: -9999px;
    2978         width: 10px;
     3472        width: 20px;
    29793473}
    29803474
     3475#bulk-titles div a:before {
     3476        position: relative;
     3477        top: -3px;
     3478}
    29813479
     3480
    29823481/*------------------------------------------------------------------------------
    29833482  11.0 - Write/Edit Post Screen
    29843483------------------------------------------------------------------------------*/
     
    30063505
    30073506#titlediv {
    30083507        position: relative;
    3009         margin-bottom: 5px;
     3508        margin-bottom: 10px;
    30103509}
    30113510
    30123511#titlediv label {
     
    30733572        line-height: 24px;
    30743573        min-height: 25px; /* Yes, line-height + 1 */
    30753574        margin-top: 5px;
    3076         padding-right: 6px;
     3575        padding: 0 10px;
    30773576}
    30783577
    30793578#edit-slug-box .cancel {
     
    31043603        padding: 1px 2px;
    31053604}
    31063605
    3107 .submitbox .submitdelete,
    31083606.submitbox .submit a:hover {
    3109         border-bottom-width: 1px;
    3110         border-bottom-style: solid;
     3607        text-decoration: underline;
    31113608}
    31123609
    31133610.submitbox .submit input {
     
    31723669}
    31733670
    31743671.category-tabs {
    3175         margin: 8px 0 3px;
     3672        margin: 8px 0 5px;
    31763673}
    31773674
    31783675#category-adder h4 {
     
    32193716        border-width: 1px 1px 0;
    32203717}
    32213718
     3719ul.add-menu-item-tabs li.tabs {
     3720        padding-bottom: 3px;
     3721}
     3722
    32223723#post-body .add-menu-item-tabs li.tabs {
    32233724        border-style: solid none solid solid;
    32243725        border-width: 1px 0 1px 1px;
     
    32293730ul.add-menu-item-tabs li,
    32303731ul.wp-tab-bar li {
    32313732        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;
    32363733}
    32373734
    3238 /* positioning etc. */
     3735#postimagediv .inside img {
     3736        max-width: 100%;
     3737        height: auto;
     3738}
     3739
    32393740form#tags-filter {
    32403741        position: relative;
    32413742}
     
    32453746td.plugin-title strong {
    32463747        display: block;
    32473748        margin-bottom: .2em;
     3749        font-size: 14px;
    32483750}
    32493751
    32503752td.post-title p,
     
    32763778}
    32773779
    32783780#post-status-info {
    3279         border-width: 0 1px 1px;
    3280         border-style: none solid solid;
    32813781        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;
    32863782}
    32873783
    32883784#post-status-info td {
     
    32983794        border: none;
    32993795}
    33003796
     3797#content-resize-handle,
    33013798#post-body .wp_themeSkin .mceStatusbar a.mceResize {
    3302         display: block;
    33033799        background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
    33043800        width: 12px;
    33053801        cursor: se-resize;
     3802}
     3803
     3804#post-body .wp_themeSkin .mceStatusbar a.mceResize {
     3805        display: block;
    33063806        margin: 0 1px;
    33073807        position: relative;
    33083808        top: -2px;
    33093809}
    33103810
    33113811#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
    3312         top: 20px;
     3812        top: 22px;
    33133813}
    33143814
    33153815#content-resize-handle {
    3316         background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
    3317         width: 12px;
    3318         cursor: se-resize;
    33193816        position: absolute;
    33203817        right: 2px;
    33213818        height: 19px;
     
    33553852}
    33563853
    33573854.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;
    33613858}
    33623859
     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
    33633883#timestampdiv {
    33643884        padding-top: 5px;
    33653885        line-height: 23px;
     
    35314051.revisions.pinned .revisions-controls {
    35324052        position: fixed;
    35334053        top: 0;
    3534         padding-bottom: 10px;
     4054        height: 82px;
    35354055}
    35364056
    35374057.revisions-tickmarks {
    35384058        position: relative;
    35394059        margin: 0 auto;
    3540         height: 0.8em;
     4060        height: 0.7em;
    35414061        top: 7px;
    35424062        max-width: 70%;
    35434063        -moz-box-sizing: border-box;
     
    35634083        height: 140px;
    35644084}
    35654085
     4086.comparing-two-revisions.pinned .revisions-controls {
     4087        height: 124px;
     4088}
     4089
    35664090.revisions .diff-error {
    35674091        position: absolute;
    35684092        text-align: center;
     
    36234147}
    36244148
    36254149.revisions-meta {
    3626         margin-top: 15px;
     4150        margin-top: 20px;
    36274151}
    36284152
    36294153.revision-toggle-compare-mode {
     
    36544178        display: block;
    36554179}
    36564180
     4181.revisions.pinned .revisions-buttons {
     4182        padding: 0 11px;
     4183}
     4184
    36574185.revisions-previous,
    36584186.revisions-next {
    36594187        position: relative;
     
    36744202        top: -3px;
    36754203}
    36764204
     4205.revisions-diff {
     4206        padding: 15px;
     4207}
     4208
     4209.revisions-diff h3:first-child {
     4210        margin-top: 0;
     4211}
     4212
    36774213/* Revision meta box */
    36784214.post-revisions li img,
    36794215#revisions-meta-restored img {
    36804216        vertical-align: middle;
    36814217}
    36824218
     4219table.diff tbody tr td:nth-child(2) {
     4220        width: 4%;
     4221}
     4222
    36834223table.diff {
    3684         table-layout: fixed;
    36854224        width: 100%;
    36864225        white-space: pre-wrap;
    3687         word-wrap: break-word;
    36884226}
    36894227
    36904228table.diff col.content {
     
    37094247
    37104248table.diff td,
    37114249table.diff th {
     4250        font-family: Consolas, Monaco, monospace;
     4251        font-size: 14px;
     4252        line-heighit: 1.618;
    37124253        padding: .5em;
    3713         font-family: Consolas, Monaco, monospace;
    37144254}
    37154255
     4256table.diff td h1,
     4257table.diff td h2,
     4258table.diff td h3,
     4259table.diff td h4,
     4260table.diff td h5,
     4261table.diff td h6 {
     4262        margin: 0;
     4263}
     4264
    37164265table.diff .diff-deletedline del,
    37174266table.diff .diff-addedline ins {
    37184267        text-decoration: none;
     
    37344283        margin-right: 5px;
    37354284}
    37364285
     4286.revisions-controls .author-card .author-info {
     4287        font-size: 12px;
     4288        line-height: 16px;
     4289}
     4290
    37374291.revisions-controls .author-card .avatar,
    37384292.revisions-controls .author-card .author-info {
    37394293        float: left;
     
    38164370        width: 25px;
    38174371        height: 25px;
    38184372        -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);
    38234377}
    38244378
    38254379.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
     
    38434397        border-style: solid;
    38444398}
    38454399
     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
    38464451div.revisions-controls > .wp-slider > .ui-slider-handle {
    38474452        margin-left: -10px;
    38484453}
     
    38524457        position: relative;
    38534458        border-width: 1px;
    38544459        border-style: solid;
    3855         border-radius: 3px;
    38564460        text-align: left;
    38574461        cursor: pointer;
    38584462}
    38594463
    38604464.wp-slider .ui-slider-handle {
     4465        border-radius: 50%;
     4466        height: 20px;
     4467        margin-top: -2px;
     4468        outline: none;
    38614469        position: absolute;
     4470        width: 20px;
    38624471        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%;
    38694472}
    38704473
    38714474.wp-slider .ui-slider-handle:before {
    3872         content: "";
     4475        background: none;
    38734476        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;
    38794485}
    38804486
    38814487.wp-slider .ui-slider-handle.from-handle:before,
    38824488.wp-slider .ui-slider-handle.to-handle:before {
     4489        font-size: 20px !important;
    38834490        height: 8px;
    38844491        width: 7px;
     4492        margin-left: 0;
    38854493}
    38864494
    38874495.wp-slider .ui-slider-handle.from-handle:before {
    3888         background-position: -5px -84px;
    3889         left: 7px;
     4496        content: '\f139';
    38904497}
    38914498
    38924499.wp-slider .ui-slider-handle.to-handle:before {
    3893         background-position: -4px -65px;
    3894         left: 5px;
     4500        content: '\f141';
     4501
    38954502}
    38964503
    38974504.wp-slider .ui-slider-range {
     
    39044511}
    39054512
    39064513.wp-slider.ui-slider-horizontal {
    3907         height: .8em;
     4514        height: .7em;
    39084515}
    39094516
    39104517.wp-slider.ui-slider-horizontal .ui-slider-handle {
     
    39634570  11.4 - Post formats
    39644571------------------------------------------------------------------------------*/
    39654572
    3966 a.post-state-format {
     4573.post-state-format {
    39674574        overflow: hidden;
    39684575        display: inline-block;
    39694576        vertical-align: middle;
    3970         height: 16px;
    3971         width: 16px;
     4577        height: 20px;
     4578        width: 20px;
    39724579        margin-right: 5px;
    3973         background-repeat: no-repeat;
    3974         text-indent: -999em;
     4580        margin-top: -4px;
    39754581}
    39764582
     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
    39774592#post-formats-select {
    39784593        line-height: 2em;
    39794594}
    39804595
     4596#post-formats-select .post-format-icon:before {
     4597        top: 5px;
     4598}
     4599
     4600input.post-format {
     4601        margin-top: 1px;
     4602}
     4603
    39814604label.post-format-icon {
    3982         margin-left: 5px;
    3983         padding: 2px 0 2px 21px;
     4605        margin-left: 0px;
     4606        padding: 2px 0 2px 0px;
    39844607}
    39854608
    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;
    39884616}
    39894617
    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,
     4620a.post-state-format.format-standard:before {
     4621        content: '\f109';
    39924622}
    39934623
    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,
     4626a.post-state-format.format-image:before {
     4627        content: '\f128';
    39964628}
    39974629
    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,
     4632a.post-state-format.format-gallery:before {
     4633        content: '\f161';
    40004634}
    40014635
    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,
     4638a.post-state-format.format-audio:before {
     4639        content: '\f127';
    40044640}
    40054641
    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,
     4644a.post-state-format.format-video:before {
     4645        content: '\f126';
    40084646}
    40094647
    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,
     4650a.post-state-format.format-chat:before {
     4651        content: '\f125';
    40124652}
    40134653
    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,
     4656a.post-state-format.format-status:before {
     4657        content: '\f130';
    40164658}
    40174659
    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,
     4662a.post-state-format.format-aside:before {
     4663        content: '\f123';
    40204664}
    40214665
    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,
     4668a.post-state-format.format-quote:before {
     4669        content: '\f122';
    40244670}
    40254671
     4672.post-state-format.post-format-link:before,
     4673.post-format-icon.post-format-link:before,
     4674a.post-state-format.format-link:before {
     4675        content: '\f103';
     4676}
    40264677
    40274678/*------------------------------------------------------------------------------
    40284679  12.0 - Categories
     
    40504701        padding: 0;
    40514702}
    40524703
    4053 #post-body ul.add-menu-item-tabs li {
    4054         padding: 8px;
     4704ul.add-menu-item-tabs li {
     4705        padding: 3px 5px 3px 8px;
    40554706}
    40564707
    40574708#post-body ul.add-menu-item-tabs li.tabs {
     
    40964747ul.categorychecklist li {
    40974748        margin: 0;
    40984749        padding: 0;
    4099         line-height: 19px;
     4750        line-height: 22px;
    41004751        word-wrap: break-word;
    41014752}
    41024753
     
    41354786p.description,
    41364787span.description,
    41374788.form-wrap p {
    4138         font-size: 12px;
     4789        font-size: 13px;
    41394790        font-style: italic;
    4140         font-family: sans-serif;
     4791        font-family: "Open Sans", sans-serif;
    41414792}
    41424793
    41434794.form-wrap .form-field {
     
    41634814  13.0 - Tags
    41644815------------------------------------------------------------------------------*/
    41654816
     4817.tagsdiv {
     4818        margin-top: -8px;
     4819}
     4820
    41664821#poststuff .taghint {
    41674822        color: #aaa;
    41684823        margin: 15px 0 -24px 12px;
    41694824}
    41704825
    41714826#poststuff .tagsdiv .howto {
    4172         margin: 0 0 6px 8px;
     4827        margin: 0 0 6px 0;
    41734828}
    41744829
    41754830.ajaxtag .newtag {
     
    41934848}
    41944849
    41954850p.popular-tags {
    4196         -webkit-border-radius: 8px;
    4197         border-radius: 8px;
    4198         border-width: 1px;
    4199         border-style: solid;
     4851        border: none;
    42004852        line-height: 2em;
    42014853        max-width: 1000px;
    42024854        padding: 8px 12px 12px;
     
    43454997        display: inline;
    43464998        padding: 0 0 0 23px;
    43474999        margin: 0 1em 0 3px;
    4348         font-weight: bold;
     5000        font-weight: 600;
    43495001}
    43505002
    43515003.media-upload-form tr.image-size label {
    43525004        margin: 0 0 0 5px;
    4353         font-weight: bold;
     5005        font-weight: 600;
    43545006}
    43555007
    43565008.media-upload-form th.label label {
    4357         font-weight: bold;
     5009        font-weight: 600;
    43585010        margin: 0.5em;
    43595011        font-size: 13px;
    43605012}
     
    44885140        position: relative;
    44895141        width: 200px;
    44905142        padding: 0 8px;
    4491         text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    44925143        color: rgba(0,0,0,0.6);
    44935144}
    44945145
     
    45375188
    45385189.find-box-head {
    45395190        cursor: move;
    4540         font-weight: bold;
     5191        font-weight: 600;
    45415192        height: 2em;
    45425193        line-height: 2em;
    45435194        padding: 1px 12px;
     
    46835334  14.2 - Image Editor
    46845335------------------------------------------------------------------------------*/
    46855336
     5337.wp_attachment_details #attachment_caption {
     5338        height: 4em;
     5339}
     5340
    46865341.describe .image-editor {
    46875342        vertical-align: top;
    46885343}
     
    47215376.imgedit-wait {
    47225377        position: absolute;
    47235378        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;
    47265381        opacity: 0.7;
    47275382        filter: alpha(opacity=70);
    47285383        width: 100%;
     
    47315386}
    47325387
    47335388.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;
    47365391        display: none;
    47375392        float: right;
    47385393        opacity: 0.7;
    47395394        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;
    47435398}
    47445399
    47455400.no-float {
     
    47685423.wp_attachment_image .spinner,
    47695424.A1B1 .spinner {
    47705425        float: left;
    4771         padding: 0 4px 4px;
     5426        padding: 0 0 4px 0;
    47725427        vertical-align: bottom;
    47735428}
    47745429
     
    47805435.imgedit-menu div {
    47815436        float: left;
    47825437        width: 32px;
     5438        background: none;
     5439        margin: 0 8px 0 0;
    47835440        height: 32px;
     5441        -webkit-font-smoothing: antialiased;
     5442        text-align: center;
     5443        line-height: 28px;
    47845444}
    47855445
    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;
    47885450}
    47895451
    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';
    47935454}
    47945455
    4795 .imgedit-crop.disabled:hover {
    4796         background-position: -9px -31px;
     5456.imgedit-rleft:before {
     5457        content:'\f166';
    47975458}
    47985459
    4799 .imgedit-crop:hover {
    4800         background-position: -9px -1px;
     5460.imgedit-rright:before {
     5461        content:'\f167';
    48015462}
    48025463
    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';
    48065466}
    48075467
    4808 .imgedit-rleft.disabled:hover {
    4809         background-position: -46px -31px;
     5468.imgedit-fliph:before {
     5469        content:'\f169';
    48105470}
    48115471
    4812 .imgedit-rleft:hover {
    4813         background-position: -46px -1px;
     5472.imgedit-undo:before {
     5473        content:'\f171';
    48145474}
    48155475
    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';
    48195478}
    48205479
    4821 .imgedit-rright.disabled:hover {
    4822         background-position: -77px -31px;
     5480.imgedit-crop-wrap {
     5481        position: relative;
    48235482}
    48245483
    4825 .imgedit-rright:hover {
    4826         background-position: -77px -1px;
     5484.imgedit-crop {
     5485        margin: 0 8px 0 0;
    48275486}
    48285487
    4829 .imgedit-flipv {
    4830         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
     5488.imgedit-rleft {
    48315489        margin: 0 3px;
    48325490}
    48335491
    4834 .imgedit-flipv.disabled:hover {
    4835         background-position: -115px -31px;
     5492.imgedit-rright {
     5493        margin: 0 8px 0 3px;
    48365494}
    48375495
    4838 .imgedit-flipv:hover {
    4839         background-position: -115px -1px;
     5496.imgedit-flipv {
     5497        margin: 0 3px;
    48405498}
    48415499
    48425500.imgedit-fliph {
    4843         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
    48445501        margin: 0 8px 0 3px;
    48455502}
    48465503
    4847 .imgedit-fliph.disabled:hover {
    4848         background-position: -147px -31px;
    4849 }
    4850 
    4851 .imgedit-fliph:hover {
    4852         background-position: -147px -1px;
    4853 }
    4854 
    48555504.imgedit-undo {
    4856         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
    48575505        margin: 0 3px;
    48585506}
    48595507
    4860 .imgedit-undo.disabled:hover {
    4861         background-position: -184px -31px;
    4862 }
    4863 
    4864 .imgedit-undo:hover {
    4865         background-position: -184px -1px;
    4866 }
    4867 
    48685508.imgedit-redo {
    4869         background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
    48705509        margin: 0 8px 0 3px;
    48715510}
    48725511
    4873 .imgedit-redo.disabled:hover {
    4874         background-position: -215px -31px;
    4875 }
    4876 
    4877 .imgedit-redo:hover {
    4878         background-position: -215px -1px;
    4879 }
    4880 
    48815512.imgedit-applyto img {
    48825513        margin: 0 8px 0 0;
    48835514}
     
    49405571
    49415572.form-table {
    49425573        border-collapse: collapse;
     5574        font-size: 14px;
    49435575        margin-top: 0.5em;
    49445576        width: 100%;
    4945         margin-bottom: -8px;
    49465577        clear: both;
    49475578}
    49485579
    49495580.form-table td {
    49505581        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;
    49545586}
    49555587
    49565588.form-table th,
    49575589.form-wrap label {
    49585590        font-weight: normal;
    4959         text-shadow: #fff 0 1px 0;
     5591        text-shadow: none;
     5592        font-size: 14px;
     5593        vertical-align: baseline;
    49605594}
    49615595
    49625596.form-table th {
    49635597        vertical-align: top;
    49645598        text-align: left;
    4965         padding: 10px;
     5599        padding: 20px 10px 20px 0;
    49665600        width: 200px;
     5601        line-height: 1.3;
     5602        font-weight: 600;
    49675603}
    49685604
    49695605.form-table th.th-full {
     
    49845620
    49855621.form-table td p {
    49865622        margin-top: 4px;
     5623        margin-bottom: 0;
    49875624}
    49885625
    49895626.form-table table.color-palette {
     
    50005637        width: 10px;
    50015638}
    50025639
     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
    50035659.commentlist li {
    50045660        padding: 1em 1em .2em;
    50055661        margin: 0;
     
    50875743
    50885744.comment-ays {
    50895745        margin-bottom: 0;
    5090         border-style: solid;
    5091         border-width: 1px;
     5746        border-bottom-style: solid;
     5747        border-bottom-width: 1px;
    50925748}
    50935749
    5094 .comment-ays th {
    5095         border-right-style: solid;
    5096         border-right-width: 1px;
     5750.comment-ays .alt {
     5751        background-color: transparent;
    50975752}
    50985753
    50995754.trash-undo-inside,
     
    51315786        vertical-align: text-top;
    51325787}
    51335788
     5789#the-comment-list .unapproved th.check-column input {
     5790        margin-left: 4px;
     5791}
    51345792
    51355793/*------------------------------------------------------------------------------
    51365794  16.0 - Themes
     
    53075965        margin-right: 10px;
    53085966        text-transform: uppercase;
    53095967        font-size: 11px;
    5310         line-height: 18px;
     5968        line-height: 22px;
    53115969        color: #999;
    53125970}
    53135971
     
    53926050#post-body ul.add-menu-item-tabs li.tabs a,
    53936051#TB_window #TB_title a.tb-theme-preview-link,
    53946052#TB_window #TB_title a.tb-theme-preview-link:visited {
    5395         font-weight: bold;
     6053        font-weight: 600;
    53966054        text-decoration: none;
    53976055}
    53986056
     
    54706128.nav-tab {
    54716129        border-style: solid;
    54726130        border-width: 1px 1px 0;
    5473         color: #aaa;
    5474         text-shadow: #fff 0 1px 0;
    54756131        font-size: 12px;
    54766132        line-height: 16px;
    54776133        display: inline-block;
    54786134        padding: 4px 14px 6px;
    54796135        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;
    54856137}
    54866138
    54876139.nav-tab-active {
    54886140        border-width: 1px;
    5489         color: #464646;
    54906141}
    54916142
    5492 h2.nav-tab-wrapper, h3.nav-tab-wrapper {
     6143.nav-tab-active,
     6144.nav-tab-active:hover {
    54936145        border-bottom-width: 1px;
    54946146        border-bottom-style: solid;
     6147}
     6148
     6149h2.nav-tab-wrapper,
     6150h3.nav-tab-wrapper {
     6151        border-bottom-width: 1px;
     6152        border-bottom-style: solid;
    54956153        padding-bottom: 0;
     6154        padding-left: 10px;
    54966155}
    54976156
    54986157h2 .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;
    55026161        line-height: 24px;
    55036162
    55046163}
     
    55216180#ed_reply_toolbar #ed_reply_strong,
    55226181.item-controls .item-order a,
    55236182.feature-filter .feature-name {
    5524         font-weight: bold;
     6183        font-weight: 600;
    55256184}
    55266185
    55276186.plugins p {
     
    55466205        list-style-type: disc;
    55476206}
    55486207
    5549 .plugins .row-actions {
     6208.plugins .row-actions-visible {
     6209        font-size: 13px;
    55506210        padding: 0;
    55516211}
    55526212
    5553 .plugins tbody th.check-column {
    5554         padding: 7px 0;
    5555 }
    5556 
    55576213.plugins .inactive td,
    55586214.plugins .inactive th,
    55596215.plugins .active td,
    55606216.plugins .active th {
    5561         border-top-style: solid;
    5562         border-top-width: 1px;
    5563         padding: 5px 7px 0;
     6217        padding: 10px 9px;
    55646218}
    55656219
    55666220.plugins .update th,
     
    55776231        white-space:nowrap;
    55786232}
    55796233
     6234.plugins .inactive .plugin-title strong {
     6235        font-weight: 400;
     6236}
     6237
    55806238.plugins .second,
    5581 .plugins .row-actions {
     6239.plugins .row-actions-visible {
    55826240        padding: 0 0 5px;
    55836241}
    55846242
    55856243.plugins .update .second,
    5586 .plugins .update .row-actions {
     6244.plugins .update .row-actions-visible {
    55876245        padding-bottom: 0;
    55886246}
    55896247
     
    55946252}
    55956253
    55966254.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;
    55996260}
    56006261
     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
    56016272.plugin-install-php h4 {
    56026273        margin: 2.5em 0 8px;
    56036274}
     
    56206291        font-size: 22px;
    56216292}
    56226293
    5623 #your-profile #rich_editing {
    5624         border: none;
    5625 }
    5626 
    56276294#display_name {
    56286295        width: 15em;
    56296296}
     
    56366303  19.0 - Tools
    56376304------------------------------------------------------------------------------*/
    56386305
     6306body.press-this {
     6307        color: #333;
     6308        margin: 0;
     6309        padding: 0;
     6310        min-width: 708px;
     6311        min-height: 400px;
     6312}
     6313
    56396314.pressthis {
    56406315        margin: 20px 0;
    56416316}
     
    56496324        cursor: move;
    56506325        color: #333;
    56516326        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%);
    56576327        -webkit-border-radius: 5px;
    56586328        border-radius: 5px;
    56596329        border: 1px solid #b4b4b4;
     
    56616331        line-height: 16px;
    56626332        font-size: 14px;
    56636333        text-decoration: none;
    5664         text-shadow: 0 1px 0px #fff;
    56656334}
    56666335
    56676336.pressthis a:active {
     
    56776346}
    56786347
    56796348.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;
    56846349        display: inline-block;
     6350        margin: 0px 0 0;
     6351        padding: 0px 12px 8px 9px;
    56856352}
    56866353
     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
    56876363.pressthis a:after {
    56886364        content: '';
    56896365        width: 70%;
     
    57086384#utc-time, #local-time {
    57096385        padding-left: 25px;
    57106386        font-style: italic;
    5711         font-family: sans-serif;
     6387        font-family: "Open Sans", sans-serif;
    57126388}
    57136389
    57146390.defaultavatarpicker .avatar {
     
    57376413}
    57386414
    57396415#wpfooter p {
     6416        font-size: 13px;
    57406417        margin: 0;
    57416418        line-height: 20px;
    57426419}
    57436420
     6421#footer-thankyou {
     6422        font-style: italic;
     6423}
     6424
    57446425#wpfooter a {
    57456426        text-decoration: none;
    57466427}
     
    57926473.about-text,
    57936474.about-description,
    57946475.about-wrap li.wp-person a.web {
    5795         font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
    57966476        font-weight: normal;
    57976477        line-height: 1.6em;
    57986478        font-size: 20px;
     
    58266506        margin-top: 0.6em;
    58276507}
    58286508
    5829 .about-wrap code {
     6509.about-wrap code,
     6510.about-wrap ol li p {
    58306511        font-size: 14px;
    58316512}
    58326513
     6514
    58336515/* Point Releases */
    58346516
    58356517.about-wrap .point-releases {
     
    58476529/* WordPress Version Badge */
    58486530
    58496531.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;
    58546535        font-size: 14px;
    58556536        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;
    58586544}
    58596545
     6546
    58606547.about-wrap .wp-badge {
    58616548        position: absolute;
    58626549        top: 0;
     
    58706557}
    58716558
    58726559.about-wrap h2 .nav-tab {
    5873         padding: 4px 10px 6px;
     6560        padding: 4px 15px 6px;
    58746561        margin: 0 3px -1px 0;
    58756562        font-size: 18px;
    58766563        vertical-align: top;
     6564        border-width: 1px;
    58776565}
    58786566
    58796567.about-wrap h2 .nav-tab-active {
    58806568        font-weight: bold;
    5881         padding-top: 3px;
    58826569}
    58836570
    58846571/* Changelog / Update screen */
     
    58986585}
    58996586
    59006587.about-wrap .feature-section.two-col div {
     6588        position: relative;
    59016589        width: 47%;
    59026590        margin-right: 4.999999999%;
    59036591        float: left;
    59046592}
    59056593
    59066594.about-wrap .feature-section.three-col div {
     6595        position: relative;
    59076596        width: 30%;
    59086597        margin-right: 4.999999999%;
    59096598        float: left;
     
    59116600
    59126601.about-wrap .three-col.about-updates .col-1,
    59136602.about-wrap .three-col.about-updates .col-3 {
    5914         width: 37%;
     6603        width: 50%;
    59156604        margin: 0;
     6605        -moz-box-sizing: border-box;
     6606        box-sizing: border-box;
    59166607}
    59176608
     6609.about-wrap .three-col.about-updates .col-1 {
     6610        z-index: 1;
     6611        padding-right: 100px;
     6612}
     6613
    59186614.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;
    59216618}
    59226619
     6620.about-wrap .three-col.about-updates .col-3 {
     6621        padding-left: 100px;
     6622}
     6623
    59236624.about-wrap .feature-section.col .last-feature {
    59246625        margin-right: 0;
    59256626}
     
    59356636.about-wrap .about-passwords {
    59366637        margin: 20px 0;
    59376638        padding: 1px 20px 10px;
    5938         background-color: #f9f9f9;
     6639        background-color: #fff;
    59396640}
    59406641
    59416642.about-wrap .about-auto-update {
     
    59806681        margin-left: 3em;
    59816682}
    59826683
     6684/* Icons to replace images. */
    59836685
     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
    59846734/* Return to Dashboard Home link */
    59856735
    59866736.about-wrap .return-to-dashboard {
     
    60826832}
    60836833
    60846834.wp-full-overlay {
    6085         background: #fff;
     6835        background: transparent;
    60866836        z-index: 500000;
    60876837        position: fixed;
    60886838        overflow: visible;
     
    60966846
    60976847.wp-full-overlay-sidebar {
    60986848        -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;
    61026851        position: fixed;
    61036852        width: 300px;
    61046853        height: 100%;
     
    61096858        margin: 0;
    61106859        z-index: 10;
    61116860        overflow: auto;
    6112         background: #f5f5f5;
    6113         border-right: 1px solid rgba( 0, 0, 0, 0.2 );
     6861        background: transparent;
     6862        border-right: none;
    61146863}
    61156864
    61166865.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
     
    61386887        bottom: 0;
    61396888        right: 0;
    61406889        width: 3px;
    6141         box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
    61426890        z-index: 1000;
    61436891}
    61446892
     
    61606908        line-height: 45px;
    61616909        z-index: 10;
    61626910        margin: 0;
     6911        border-top: none;
     6912        -webkit-box-shadow: none;
     6913        box-shadow: none;
    61636914}
    61646915
    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;
    61696918}
    61706919
    61716920.wp-full-overlay-sidebar .wp-full-overlay-footer {
    61726921        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;
    61766926}
    61776927
    61786928.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
     
    61846934        overflow: auto;
    61856935}
    61866936
    6187 .wp-full-overlay-sidebar-content .accordion-section:first-child {
    6188         border-top: 1px solid #fff;
    6189 }
    6190 
    61916937/* Close Link */
    61926938.wp-full-overlay .close-full-overlay {
    61936939        text-decoration: none;
     
    62146960}
    62156961
    62166962.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;
    62206966        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;
    62246970}
    62256971
     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
    62266986.wp-full-overlay.collapsed .collapse-sidebar-arrow {
    62276987        background-position: -1px -109px;
    62286988}
     
    62306990.wp-full-overlay .collapse-sidebar-label {
    62316991        position: absolute;
    62326992        left: 100%;
    6233         color: #808080;
    62346993        line-height: 20px;
    62356994        margin-left: 10px;
    62366995}
     
    62386997.wp-full-overlay.collapsed .collapse-sidebar-label {
    62396998        display: none;
    62406999}
    6241 
    6242 .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
    6243         color: #666;
    6244 }
    6245 
    62467000/* Animations */
    62477001.wp-full-overlay,
    62487002.wp-full-overlay-sidebar,
     
    62537007        -ms-transition-property:     left, right, top, bottom, width, margin;
    62547008        -o-transition-property:      left, right, top, bottom, width, margin;
    62557009        transition-property:         left, right, top, bottom, width, margin;
    6256 
    62577010        -webkit-transition-duration: 0.2s;
    62587011        -moz-transition-duration:    0.2s;
    62597012        -ms-transition-duration:     0.2s;
     
    62617014        transition-duration:         0.2s;
    62627015}
    62637016
    6264 
    62657017/*------------------------------------------------------------------------------
    62667018  24.0 - Customize Loader
    62677019------------------------------------------------------------------------------*/
     
    62977049}
    62987050
    62997051.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;
    63027054}
    63037055
    63047056#customize-container iframe,
     
    63187070        bottom: 16px;
    63197071}
    63207072
     7073#customize-controls {
     7074        margin-top: 0;
     7075}
     7076
    63217077#theme-installer {
    63227078        display: none;
    63237079}
     
    63977153}
    63987154
    63997155.pagenav span {
    6400         font-weight: bold;
     7156        font-weight: 600;
    64017157        margin: 0 6px;
    64027158}
    64037159
    64047160.row-title {
    6405         font-size: 13px !important;
    6406         font-weight: bold;
     7161        font-size: 14px !important;
     7162        font-weight: 600;
    64077163}
    64087164
    64097165.column-author img, .column-username img {
     
    64137169}
    64147170
    64157171.row-actions {
     7172        font-size: 13px;
    64167173        visibility: hidden;
    64177174        padding: 2px 0 0;
    64187175}
    64197176
     7177.mobile .row-actions {
     7178        visibility: visible;
     7179}
     7180
    64207181tr:hover .row-actions,
    6421 .mobile .row-actions,
    6422 .row-actions.visible,
    64237182div.comment-item:hover .row-actions {
    64247183        visibility: visible;
    64257184}
    64267185
    6427 /* deprecated */
    64287186.row-actions-visible {
    64297187        padding: 2px 0 0;
    64307188}
     
    64437201        font-size: 12px;
    64447202        overflow: auto;
    64457203}
     7204.tagchecklist br {
     7205        display: none;
     7206}
    64467207.tagchecklist strong {
    64477208        margin-left: -8px;
    64487209        position: absolute;
     
    64517212        margin-right: 25px;
    64527213        display: block;
    64537214        float: left;
    6454         font-size: 11px;
     7215        font-size: 13px;
    64557216        line-height: 1.8em;
    64567217        white-space: nowrap;
    64577218        cursor: default;
    64587219}
     7220
    64597221.tagchecklist span a {
    6460         margin: 4px 0 0 -10px;
     7222        margin: 1px 0 0 -17px;
    64617223        cursor: pointer;
    6462         width: 10px;
    6463         height: 10px;
     7224        width: 20px;
     7225        height: 20px;
    64647226        display: block;
    64657227        float: left;
    6466         text-indent: -9999px;
     7228        text-indent: 0;
    64677229        overflow: hidden;
    64687230        position: absolute;
    64697231}
     
    64787240
    64797241#poststuff h3,
    64807242.metabox-holder h3 {
    6481         font-size: 15px;
    6482         font-weight: normal;
    6483         padding: 7px 10px;
     7243        font-size: 14px;
     7244        padding: 7px 12px;
    64847245        margin: 0;
    6485         line-height: 1;
     7246        line-height: 1.4;
    64867247}
    64877248
    64887249#poststuff .inside {
    6489         margin: 6px 0 8px;
     7250        margin: 6px 0 0 0;
    64907251}
    64917252
    64927253#poststuff .inside #parent_id,
     
    65907351
    65917352.error-message {
    65927353        color: red;
    6593         font-weight: bold;
     7354        font-weight: 600;
    65947355}
    65957356
    65967357/* Scrollbar fix for bulk upgrade iframe */
     
    66367397        width: auto;
    66377398}
    66387399
     7400#post-body #post-body-content #namediv h3 {
     7401        margin-top: 0;
     7402}
     7403
     7404#namediv h3 label {
     7405        vertical-align: baseline;
     7406}
     7407
    66397408#namediv table {
    66407409        width: 100%;
    66417410}
     
    67457514}
    67467515
    67477516.js #dashboard-widgets h3 .postbox-title-action {
    6748         right: 30px;
     7517        right: 33px;
    67497518}
    67507519
    67517520#dashboard-widgets h4 {
    67527521        font-weight: normal;
    6753         font-size: 13px;
     7522        font-size: 14px;
    67547523        margin: 0 0 .2em;
    67557524        padding: 0;
    67567525}
    67577526
     7527#dashboard_plugins h5 {
     7528        font-size: 14px;
     7529}
     7530
    67587531/* Right Now */
    67597532#dashboard_right_now p.sub,
    67607533#dashboard_right_now .table, #dashboard_right_now .versions {
     
    67627535}
    67637536
    67647537#dashboard_right_now .inside {
    6765         font-size: 12px;
     7538        font-size: 13px;
    67667539        padding-top: 20px;
    67677540}
    67687541
    67697542#dashboard_right_now p.sub {
    67707543        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;
    67737548        position: absolute;
     7549        text-transform: uppercase;
    67747550        top: -17px;
    6775         left: 15px;
    67767551}
    67777552
    67787553#dashboard_right_now .table {
     
    67837558
    67847559#dashboard_right_now .table_content {
    67857560        float: left;
    6786         border-top-width: 1px;
    6787         border-top-style: solid;
    6788         width: 45%;
     7561        width: 48%;
    67897562}
    67907563
    67917564#dashboard_right_now .table_discussion {
    67927565        float: right;
    6793         border-top-width: 1px;
    6794         border-top-style: solid;
    67957566        width: 45%;
    67967567}
    67977568
     
    68207591}
    68217592
    68227593#dashboard_right_now .t {
    6823         font-size: 12px;
    68247594        padding-right: 12px;
    6825         padding-top: 6px;
    6826         color: #777;
    68277595}
    68287596
     7597#dashboard_right_now .t,
     7598#dashboard_right_now .b {
     7599        font-size: 14px;
     7600        padding-top: 4px;
     7601}
     7602
    68297603#dashboard_right_now .t a {
    68307604        white-space: nowrap;
    68317605}
     
    68647638}
    68657639
    68667640#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;
    68707645}
    68717646
    68727647#dashboard_recent_comments .subsubsub {
     
    68797654}
    68807655
    68817656#the-comment-list .comment-item {
    6882         padding: 1em 10px;
     7657        padding: 1em 12px;
    68837658        border-top: 1px solid;
    68847659}
    68857660
    68867661#the-comment-list .pingback {
    6887         padding-left: 9px !important;
     7662        padding-left: 12px !important;
    68887663}
    68897664
    68907665#the-comment-list .comment-item,
    68917666#the-comment-list #replyrow {
    6892         margin: 0 -10px;
     7667        margin: 0 -12px;
    68937668}
    68947669
    68957670#the-comment-list .comment-item:first-child {
     
    69027677}
    69037678
    69047679#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;
    69087683}
    69097684
    69107685#the-comment-list .comment-item h4 cite {
     
    69277702#the-comment-list .comment-item p.row-actions {
    69287703        margin: 3px 0 0;
    69297704        padding: 0;
    6930         font-size: 12px;
     7705        font-size: 13px;
    69317706}
    69327707
    69337708/* 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}
    69347723.no-js #dashboard_quick_press {
    69357724        display: none;
    69367725}
     
    69677756
    69687757#tags-input-wrap #tags-input {
    69697758        outline: none;
     7759        padding: 3px 6px;
    69707760}
    69717761
    69727762#title-wrap #title-prompt-text {
     
    69767766
    69777767#tags-input-wrap #tags-input-prompt-text {
    69787768        font-size: 1em;
    6979         padding: 4px 8px;
     7769        padding: 5px 8px;
    69807770}
    69817771
    69827772#dashboard_quick_press .input-text-wrap,
    69837773#dashboard_quick_press .textarea-wrap {
    6984         margin: 0 0 1em 0;
     7774        margin: 0 0 .7em 0;
    69857775}
    69867776
     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
    69877785#dashboard_quick_press .wp-media-buttons {
    6988         margin: 0 0 .2em 1px;
     7786        margin: 0 0 2px 1px;
    69897787        padding: 0;
    69907788}
    69917789
    69927790#dashboard_quick_press .wp-media-buttons a {
    69937791        color: #777;
     7792        margin-bottom: 0;
    69947793}
    69957794
    69967795#dashboard-widgets #dashboard_quick_press form p.submit input {
     
    70337832
    70347833#dashboard_recent_drafts h4 abbr {
    70357834        font-weight: normal;
    7036         font-family: sans-serif;
     7835        font-family: "Open Sans", sans-serif;
    70377836        font-size: 12px;
    70387837        color: #999;
    70397838        margin-left: 3px;
     
    70477846}
    70487847
    70497848a.rsswidget {
    7050         font-size: 13px;
     7849        font-size: 14px;
     7850        font-weight: 600;
    70517851        line-height: 1.7em;
    70527852}
    70537853
     
    70587858
    70597859.rss-widget span.rss-date {
    70607860        color: #999;
    7061         font-size: 12px;
     7861        font-size: 13px;
    70627862        margin-left: 3px;
    70637863}
    70647864
     
    71087908/* Browser Nag */
    71097909#dashboard_browser_nag a.update-browser-link {
    71107910        font-size: 1.2em;
    7111         font-weight: bold;
     7911        font-weight: 600;
    71127912}
    71137913
    71147914#dashboard_browser_nag a {
     
    71447944
    71457945#dashboard_browser_nag.postbox h3 {
    71467946        border-bottom-color: #f6e2ac;
    7147         text-shadow: none;
    71487947        background: transparent none;
    71497948        color: #fff;
    71507949        -webkit-box-shadow: none;
     
    71557954        color: #fff;
    71567955}
    71577956
    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;
    71617964}
    71627965
    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;
    71667968}
    71677969
     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}
    71687975
     7976
    71697977/* login */
    71707978
     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
    71717985.login * {
    71727986        margin: 0;
    71737987        padding: 0;
    71747988}
    71757989
    71767990.login form {
    7177         margin-left: 8px;
     7991        margin-top: 20px;
     7992        margin-left: 0;
    71787993        padding: 26px 24px 46px;
    71797994        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;
    71847996}
    71857997
    71867998.login form .forgetmenot {
     
    71988010}
    71998011
    72008012#login form p.submit {
     8013        margin: 0;
    72018014        padding: 0;
    72028015}
    72038016
     
    72118024        line-height: 19px;
    72128025}
    72138026
     8027.login h1 {
     8028        text-align: center;
     8029}
     8030
    72148031.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;
    72188035        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;
    72218045        text-indent: -9999px;
    72228046        outline: none;
    72238047        overflow: hidden;
    7224         padding-bottom: 15px;
    72258048        display: block;
    72268049}
    72278050
     
    72338056
    72348057#login_error,
    72358058.login .message {
    7236         margin: 0 0 16px 8px;
     8059        margin-left: 0;
    72378060        padding: 12px;
    72388061}
    72398062
    72408063.login #nav,
    72418064.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;
    72458067}
    72468068
     8069.login #nav {
     8070        margin: 24px 0 0 0;
     8071}
     8072
    72478073#backtoblog {
    7248         padding: 12px 16px 0;
     8074        margin: 16px 0 0 0;
    72498075}
    72508076
    72518077.login form .input,
     
    72688094
    72698095.login #pass-strength-result {
    72708096        width: 250px;
    7271         font-weight: bold;
     8097        font-weight: 600;
    72728098        border-style: solid;
    72738099        border-width: 1px;
    72748100        margin: 12px 0 6px;
     
    73208146/* ms */
    73218147/* Dashboard: MS Specific Data */
    73228148#dashboard_right_now p.musub {
    7323         margin-top: 12px;
     8149        margin: 20px -2px 0;
     8150        padding: 15px 5px 10px;
    73248151        border-top: 1px solid #ececec;
    7325         padding-left: 16px;
    73268152        position: static;
    73278153}
    73288154
     
    73398165        border-top: none;
    73408166}
    73418167
    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;
    73438172        white-space: normal;
    73448173}
    73458174
     8175#dashboard_right_now div.musubtable .b {
     8176        padding-right: 3px;
     8177}
     8178
    73468179/* Background Color for Site Status */
    73478180.wp-list-table .site-deleted {
    73488181        background: #ff8573;
     
    73638196        display: block;
    73648197}
    73658198
    7366 #nav-menu-meta ul.outer-border {
    7367         -webkit-border-radius: 3px;
    7368         border-radius: 3px;
    7369 }
    7370 
    73718199.accordion-section ul.category-tabs,
    73728200.accordion-section ul.add-menu-item-tabs,
    73738201.accordion-section ul.wp-tab-bar {
     
    73918219        margin-top: 23px;
    73928220}
    73938221
     8222#nav-menus-frame .accordion-section-content .inside {
     8223        font-size: 14px;
     8224}
     8225
    73948226#wpbody-content #menu-settings-column {
    73958227        display:inline;
    73968228        width:281px;
     
    74068238}
    74078239
    74088240.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 {
    74108243        opacity: 0.5;
    74118244        filter: alpha(opacity=50);
    74128245}
     
    74408273        margin-top: 23px;
    74418274        padding: 10px;
    74428275        overflow: hidden;
    7443         -webkit-border-radius: 3px;
    7444         border-radius: 3px;
    74458276}
    74468277
    74478278.manage-menus select {
     
    74678298        margin: 0 0 10px;
    74688299}
    74698300
     8301#post-body #post-body-content h3 {
     8302        margin-top: 1em;
     8303}
     8304
    74708305.menu-settings {
     8306        border-top-width: 1px;
     8307        border-top-style: solid;
    74718308        margin-top: 2em;
    7472         overflow: hidden;
    74738309}
    74748310
    74758311.menu-settings dl {
    74768312        margin: 0 0 10px;
    74778313        overflow: hidden;
    7478         position: relative;
    74798314}
    74808315
    74818316.menu-settings dd {
     
    74848319        width: 60%;
    74858320}
    74868321
     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
    74878333.menu-edit .checkbox-input {
    74888334        margin-top: 4px;
    74898335}
     
    75238369
    75248370#nav-menu-header {
    75258371        border-bottom: 1px solid;
    7526         margin-bottom: 13px;
     8372        margin-bottom: 0;
    75278373}
    75288374
    75298375#nav-menu-header .menu-name-label {
    7530         margin-top: 2px;
     8376        margin-top: 4px;
    75318377}
    75328378
    7533 #nav-menu-footer {
    7534         border-top: 1px solid;
    7535 }
    7536 
    75378379.nav-menus-php #post-body div.updated,
    75388380.nav-menus-php #post-body div.error {
    75398381        margin: 0;
     
    75458387}
    75468388
    75478389#menu-management .menu-add-new abbr {
    7548         font-weight:bold;
     8390        font-weight:600;
    75498391}
    75508392
    75518393#select-nav-menu-container {
     
    76248466        margin: 0;
    76258467}
    76268468
    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 
    76518469.customlinkdiv .howto input {
    76528470        width: 180px;
    76538471}
     
    76858503.nav-menus-php .submitcancel {
    76868504        display: block;
    76878505        float: left;
    7688         margin: 4px 0;
     8506        margin: 6px 0;
    76898507        line-height: 15px;
    76908508}
    76918509
     
    77638581}
    77648582
    77658583.nav-menus-php .howto span {
    7766         margin-top: 4px;
     8584        margin-top: 6px;
    77678585        display: block;
    77688586        float: left;
    77698587}
     
    78068624        margin-top: -3px;
    78078625}
    78088626
     8627.menu-item-title input[type=checkbox] {
     8628        display: inline-block;
     8629        margin-top: -4px;
     8630}
     8631
    78098632/* Nav Menu */
    78108633#menu-container .inside {
    78118634        padding-bottom: 10px;
     
    78368659        margin: 9px 0 0;
    78378660}
    78388661
    7839 .menu-item-handle {
     8662.menu-item-bar .menu-item-handle {
    78408663        border: 1px solid #dfdfdf;
    78418664        position: relative;
    78428665        padding-left: 10px;
     8666        padding-right: 2px;
    78438667        height: auto;
    78448668        width: 400px;
    78458669        line-height: 35px;
    7846         text-shadow: 0 1px 0 #FFFFFF;
    78478670        overflow: hidden;
    78488671        word-wrap: break-word;
    78498672}
     
    78628685        -webkit-border-bottom-left-radius: 0;
    78638686        border-bottom-right-radius: 0;
    78648687        border-bottom-left-radius: 0;
     8688        border-bottom: none;
    78658689}
    78668690
    78678691.no-js .menu-item-edit-active .item-edit {
     
    78748698
    78758699.menu li.deleting .menu-item-handle {
    78768700        background-image: none;
    7877         text-shadow: 0 0 0;
    78788701}
    78798702
    78808703.menu-item-handle .item-title {
    7881         font-size: 12px;
    7882         font-weight: bold;
    7883         padding: 7px 0;
     8704        font-size: 13px;
     8705        font-weight: 600;
     8706        padding: 5px 0;
    78848707        line-height: 20px;
    7885         min-height: 20px;
    78868708        display: block;
    78878709        margin-right: 13em;
    78888710}
     
    79458767/* Menu item controls */
    79468768.item-type {
    79478769        font-size: 12px;
    7948         padding-right: 10px;
     8770        padding: 7px 10px;
     8771        line-height: 22px;
     8772        display: block;
    79498773}
    79508774
    79518775.item-controls {
     
    79708794.nav-menus-php .item-edit {
    79718795        position: absolute;
    79728796        right: -20px;
    7973         top: 0;
     8797        top: -24px;
    79748798        display: block;
    7975         width: 30px;
     8799        width: 40px;
    79768800        height: 36px;
    7977         overflow: hidden;
    79788801        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;
    79828803}
    79838804
    79848805/* Menu editing */
     
    79888809
    79898810.menu-item-settings {
    79908811        display: block;
    7991         width: 400px;
     8812        width: 402px;
    79928813        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;
    79998814}
    80008815
    80018816.menu-item-settings .field-move a {
     
    80058820
    80068821.menu-item-edit-active .menu-item-settings {
    80078822        display: block;
     8823        border-top: none;
    80088824}
    80098825
    80108826.menu-item-edit-inactive .menu-item-settings {
    80118827        display: none;
     8828        border-top: none;
    80128829}
    80138830
    80148831.add-menu-item-pagelinks {
     
    80598876/* Major/minor publishing actions (classes) */
    80608877.nav-menus-php .major-publishing-actions {
    80618878        clear: both;
    8062         padding: 3px 0 5px;
     8879        padding: 3px 0 6px;
    80638880}
    80648881
    80658882.nav-menus-php .major-publishing-actions .publishing-action {
    80668883        text-align: right;
    80678884        float: right;
    80688885        line-height: 23px;
    8069         margin: 2px 0 1px;
     8886        margin: 4px 0 1px;
    80708887}
    80718888
    80728889.nav-menus-php .blank-slate .menu-settings {
     
    81378954#plugin-information-header {
    81388955        margin: 0;
    81398956        padding: 0 5px;
    8140         font-weight: bold;
     8957        font-weight: 600;
    81418958        position: relative;
    81428959        border-bottom-width: 1px;
    81438960        border-bottom-style: solid;
     
    81528969}
    81538970
    81548971/* Install sidemenu */
     8972#plugin-information {
     8973        height: auto;
     8974}
     8975
    81558976#plugin-information p.action-button {
    81568977        width: 100%;
    81578978        padding-bottom: 0;
     
    81658986
    81668987#plugin-information .action-button a {
    81678988        text-align: center;
    8168         font-weight: bold;
     8989        font-weight: 600;
    81698990        text-decoration: none;
    81708991        display: block;
    81718992        line-height: 2em;
     
    82439064#plugin-information pre {
    82449065        padding: 7px;
    82459066        overflow: auto;
     9067        border-width: 1px;
     9068        border-style: solid;
    82469069}
    82479070
    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;
    82559073}
    82569074
    82579075img {
     
    82599077}
    82609078
    82619079/* Header */
     9080#wphead {
     9081        border-bottom-width: 1px;
     9082        border-bottom-style: solid;
     9083}
     9084
    82629085.press-this #wphead {
    82639086        height: 32px;
    82649087        margin-left: 0;
     
    82949117        margin: 10px 0;
    82959118}
    82969119
     9120.press-this .posting {
     9121        margin-right: 252px;
     9122}
     9123
    82979124.press-this-sidebar {
    82989125        float: right;
    8299         width: 200px;
     9126        width: 240px;
    83009127        padding-top: 10px;
    83019128}
    83029129
     
    83099136        box-sizing: border-box;
    83109137}
    83119138
    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;
    83149141}
    83159142
    83169143.press-this #titlediv {
     
    83199146
    83209147.press-this .wp-media-buttons {
    83219148        cursor: default;
    8322         padding: 8px 8px 0;
     9149        padding: 8px 8px 6px;
    83239150}
    83249151
    83259152.press-this .howto {
     
    83309157        display: block;
    83319158}
    83329159
     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
    83339172/* Editor/Main Column */
    83349173.press-this #poststuff {
    83359174        margin: 0 10px 10px;
     
    83959234}
    83969235
    83979236h3.tb {
    8398         text-shadow: 0 1px 0 #fff;
    8399         font-weight: bold;
     9237        font-weight: 600;
    84009238        font-size: 12px;
    84019239        margin-left: 5px;
    84029240}
     
    84119249        min-width: 0;
    84129250}
    84139251
    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;
    84179254}
    84189255
     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
    84199293.press-this #submitdiv:hover .handlediv {
    84209294        background: none;
    84219295}
     
    85919465        visibility: hidden;
    85929466}
    85939467
     9468/* TinyMCE */
     9469#mce_fullscreen_container {
     9470        background: #fff;
     9471}
     9472
    85949473#photo-add-url-div input[type="text"] {
    85959474        width: 300px;
    85969475}
    85979476
    8598 /* theme-editor */
     9477/* Theme/Plugin Editor */
    85999478.alignleft h3 {
    86009479        margin: 0;
    86019480}
    86029481
    8603 h3 span {
    8604         font-weight: normal;
    8605 }
    8606 
    86079482#template textarea {
    86089483        font-family: Consolas, Monaco, monospace;
    8609         font-size: 12px;
     9484        font-size: 13px;
    86109485        width: 97%;
    86119486        background: #f9f9f9;
    86129487        outline: none;
     
    86339508
    86349509#templateside ol,
    86359510#templateside ul {
    8636         margin: .5em;
     9511        margin: .5em 0;
    86379512        padding: 0;
    86389513}
    86399514
     
    86419516        margin: 4px 0;
    86429517}
    86439518
    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;
    86469524}
    86479525
     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
    86489535.nonessential {
    86499536        font-size: 11px;
    86509537        font-style: italic;
    86519538        padding-left: 12px;
    86529539}
    86539540
    8654 .highlight {
    8655         padding: 3px 3px 3px 12px;
    8656         margin-left: -12px;
    8657         font-weight: bold;
    8658         border: 0 none;
    8659 }
    8660 
    86619541#documentation {
    86629542        margin-top: 10px;
    86639543}
     9544
    86649545#documentation label {
    86659546        line-height: 22px;
    8666         vertical-align: top;
    8667         font-weight: bold;
     9547        vertical-align: baseline;
     9548        font-weight: 600;
    86689549}
    86699550
    86709551.fileedit-sub {
     
    87259606        width: 300px;
    87269607}
    87279608
     9609.widget-liquid-right .widget {
     9610        position: relative;
     9611}
     9612
    87289613.widget-liquid-right .widget,
    87299614.inactive-sidebar .widget,
    87309615.widget-liquid-right .sidebar-description {
    87319616        width: 250px;
    87329617        margin: 0 auto 20px;
     9618}
     9619
     9620.widget-liquid-right .widget,
     9621.widget-liquid-right .sidebar-description {
    87339622        overflow: hidden;
    87349623}
    87359624
     
    87539642
    87549643div.sidebar-name {
    87559644        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;
    87629647}
    87639648
    87649649.js .sidebar-name {
     
    87839668}
    87849669
    87859670.js .closed .widgets-sortables,
    8786 .js .closed .widget-holder {
     9671.js .closed .widget-holder,
     9672.js .closed br.clear {
    87879673        display: none;
    87889674}
    87899675
     
    87959681        padding: 7px 5px 0;
    87969682}
    87979683
    8798 #available-widgets .widget {
    8799         -webkit-box-shadow: none;
    8800         box-shadow: none;
    8801 }
    8802 
    88039684.inactive-sidebar {
    88049685        padding: 5px 5px 0;
    88059686}
     
    88489729}
    88499730
    88509731.widget .widget-top {
    8851         margin-bottom: -1px;
    88529732        font-size: 12px;
    8853         font-weight: bold;
     9733        font-weight: 600;
    88549734        height: 26px;
    8855         overflow: hidden;
    88569735}
    88579736
     9737.widget .widget-top,
     9738.menu-item-handle {
     9739        margin-top: 0;
     9740        padding: 4px;
     9741}
     9742
    88589743.widget-top .widget-title {
    88599744        padding: 7px 9px;
    88609745}
     
    88679752        display: block;
    88689753        width: 24px;
    88699754        height: 26px;
     9755        text-decoration: none;
    88709756}
    88719757
    88729758#available-widgets a.widget-action {
    88739759        display: none;
    88749760}
    88759761
    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;
    88789770}
    88799771
    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;
    88829789}
    88839790
     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
    88849813.widget .widget-inside,
    88859814.widget .widget-description {
    88869815        padding: 12px 12px 10px;
     
    89089837        line-height: 1;
    89099838        overflow: hidden;
    89109839        white-space: nowrap;
     9840        text-overflow: ellipsis;
    89119841}
    89129842
    89139843.widgets-sortables {
     
    90609990/* Accordion */
    90619991
    90629992.accordion-section {
    9063         border-top: 1px solid #fff;
    90649993        border-bottom: 1px solid #dfdfdf;
    90659994        margin: 0;
    90669995}
    90679996
    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 
    90769997.accordion-section.open .accordion-section-content,
    90779998.no-js .accordion-section .accordion-section-content {
    90789999        display: block;
     
    908610007        display: none;
    908710008        padding: 10px 20px 15px;
    908810009        overflow: hidden;
    9089         background: #fdfdfd;
     10010        background: #fff;
    909010011        border-left: 1px solid #dfdfdf;
    909110012        border-right: 1px solid #dfdfdf;
    909210013}
     
    910810029}
    910910030
    911010031.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;
    911710032        position: absolute;
    9118         top: 25px;
    9119         right: 20px;
     10033        top: 12px;
     10034        right: 10px;
    912010035        z-index: 1;
    912110036}
    912210037
     
    913810053}
    913910054
    914010055.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;
    914710060        background: #f5f5f5;
    914810061        background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
    914910062        background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
     
    915310066}
    915410067
    915510068.control-section .accordion-section-title:after {
    9156         top: 15px;
     10069        top: 11px;
    915710070}
    915810071
    915910072.js .control-section:hover .accordion-section-title,
    916010073.js .control-section .accordion-section-title:hover,
    916110074.js .control-section.open .accordion-section-title,
    916210075.js .control-section .accordion-section-title:focus {
    9163         color: #000;
     10076        color: #fff;
    916410077        background: #f9f9f9;
    916510078        background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
    916610079        background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
     
    917010083}
    917110084
    917210085.control-section.open .accordion-section-title {
     10086        /* When expanded */
    917310087        border-bottom: 1px solid #dfdfdf;
    917410088}
    917510089
     10090.sticky-menu #TB_window .updated {
     10091        margin: 16px 0 0;
     10092}
     10093
    917610094/* =Media Queries
    917710095-------------------------------------------------------------- */
    917810096
     
    925610174  (-webkit-min-device-pixel-ratio: 1.25),
    925710175  (min-resolution: 120dpi) {
    925810176
    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 
    928110177        tr.wp-locked .locked-indicator  {
    928210178                background-image: url('../images/lock-2x.png');
    928310179                background-size: 16px 16px;
    928410180        }
    928510181
    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 
    929610182        #content-resize-handle,
    929710183        #post-body .wp_themeSkin .mceStatusbar a.mceResize {
    929810184                background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
     
    930910195                background-size: 21px 37px;
    931010196        }
    931110197
    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 
    933110198        .wp-full-overlay .collapse-sidebar-arrow {
    933210199                background-image: url('../images/arrows-2x.png');
    933310200                background-size: 15px 123px;
    9334          }
    9335 
    9336         .pressthis a span {
    9337                 background-image: url(../images/press-this-2x.png?v=20121105);
    933810201        }
    933910202
    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 
    935110203        .spinner,
    935210204        .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');
    935510208        }
    935610209
    9357         .wp-slider .ui-slider-handle:before {
    9358                 background-image: url(../images/arrows-pr-2x.png);
    9359                 background-size: 16px 102px;
    9360         }
    9361 
    936210210}
    936310211
    936410212/* =Localized CSS
     
    943210280.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
    943310281        margin-left: 8em;
    943410282}
     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

     
    753753 */
    754754function _admin_bar_bump_cb() { ?>
    755755<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        }
    758762</style>
    759763<?php
    760764}
  • src/wp-includes/css/admin-bar-rtl.css

     
    1717        float: right;
    1818}
    1919
    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 
    3120#wpadminbar .quicklinks .ab-top-secondary > li {
    32         border-left: 0;
    33         border-right: 1px solid #333;
    3421        float: left;
    3522}
    3623
    3724#wpadminbar .quicklinks .ab-top-secondary > li > a,
    3825#wpadminbar .quicklinks .ab-top-secondary > li > .ab-empty-item {
    39         border-right: 1px solid #555;
    40         border-left: 0;
    4126}
    4227
    43 #wpadminbar .menupop .ab-sub-wrapper,
    44 #wpadminbar .shortlink-input {
    45         margin: 0 -1px 0 0;
    46 }
    47 
    4828#wpadminbar.ie7 .menupop .ab-sub-wrapper,
    4929#wpadminbar.ie7 .shortlink-input {
    5030        left: auto;
     
    5434#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
    5535        right: auto;
    5636        left: 0;
    57         margin: 0 0 0 -1px;
    5837}
    5938
    6039#wpadminbar .menupop li:hover > .ab-sub-wrapper,
     
    7251}
    7352
    7453#wpadminbar .menupop .menupop > .ab-item {
    75         background-position: 5% -46px;
    7654        padding-left: 2em;
    7755        padding-right: 1em;
    7856}
    7957
     58#wpadminbar .menupop .menupop > .ab-item:before {
     59        content: '\f141';
     60        right: auto;
     61        left: 3px;
     62}
     63
    8064#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item {
    81         background-position: 95% -20px;
    8265        padding-left: 1em;
    8366        padding-right: 2em;
    8467}
    8568
     69#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
     70        content: '\f139';
     71        left: auto;
     72        right: 3px;
     73}
     74
    8675#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
    8776        right: 0;
    8877        left: auto;
     
    131120 * My Sites
    132121 */
    133122#wpadminbar .quicklinks li .blavatar {
    134         margin-right: 0px;
    135         margin-left: 4px;
     123        float: right;
     124        margin-right: -10px;
     125        margin-left: 7px;
    136126}
    137127
    138128/*
    139129 * Search
    140130 */
     131#wpadminbar #adminbarsearch:before {
     132        left: auto;
     133        right: 5px;
     134}
     135
    141136#wpadminbar #adminbarsearch .adminbar-input {
    142         font-family: Tahoma, Arial, Helvetica, sans-serif;
    143137        padding: 0 24px 0 3px;
    144138        margin: 0;
    145         background-position: 50% 2px;
    146139}
    147140
    148 #wpadminbar #adminbarsearch .adminbar-input:focus,
    149 #wpadminbar.ie7 #adminbarsearch .adminbar-input {
    150         background-position: 99% 2px;
    151 }
    152 
    153141/**
    154142 * Comments icon
    155143 */
    156144#wpadminbar .ab-icon {
    157145        float: right;
     146        margin-right: auto;
    158147}
    159148
    160149.ie7 #wp-admin-bar-wp-logo > .ab-item .ab-icon {
  • src/wp-includes/css/admin-bar.css

     
    66        position: static;
    77        text-transform: none;
    88        letter-spacing: normal;
    9         line-height: 1;
    10         font: normal 13px/28px sans-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;
    1313        -webkit-box-sizing: content-box;
    1414        -moz-box-sizing:    content-box;
    1515        box-sizing:         content-box;
     
    1919        transition:         none;
    2020}
    2121
     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
    2243#wpadminbar ul li:before,
    2344#wpadminbar ul li:after {
    2445        content: normal;
     
    5172#wpadminbar {
    5273        direction: ltr;
    5374        color: #ccc;
    54         font: normal 13px/28px sans-serif;
    55         height: 28px;
     75        font: normal 13px/32px "Open Sans", sans-serif;
     76        height: 32px;
    5677        position: fixed;
    5778        top: 0;
    5879        left: 0;
    5980        width: 100%;
    6081        min-width: 600px; /* match the min-width of the body in wp-admin.css */
    6182        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;
    6885}
    6986
    7087#wpadminbar .ab-sub-wrapper,
     
    8097        z-index: 99999;
    8198}
    8299
    83 #wpadminbar .quicklinks {
    84         border-left: 1px solid transparent;
     100#wpadminbar ul#wp-admin-bar-root-default>li {
     101        margin: 0 8px 0 0;
    85102}
    86103
    87104#wpadminbar .quicklinks ul {
     
    96113        outline: none;
    97114}
    98115
    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 
    108116#wpadminbar .quicklinks .ab-top-secondary > li {
    109         border-left: 1px solid #333;
    110         border-right: 0;
    111117        float: right;
    112118}
    113119
    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 
    120120#wpadminbar .quicklinks a,
    121121#wpadminbar .quicklinks .ab-empty-item,
    122122#wpadminbar .shortlink-input {
    123         height: 28px;
     123        height: 32px;
    124124        display: block;
    125         padding: 0 12px;
     125        padding: 0 10px;
    126126        margin: 0;
    127127}
    128128
    129129#wpadminbar .menupop .ab-sub-wrapper,
    130130#wpadminbar .shortlink-input {
    131         margin: 0 0 0 -1px;
     131        margin: 0;
    132132        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;
    136136        display: none;
    137137        position: absolute;
    138138        float: none;
    139         border-width: 0 1px 1px 1px;
    140         border-style: solid;
    141         border-color: #dfdfdf;
    142139}
    143140
    144141#wpadminbar.ie7 .menupop .ab-sub-wrapper,
    145142#wpadminbar.ie7 .shortlink-input {
    146         top: 28px;
     143        top: 32px;
    147144        left: 0;
    148145}
    149146
    150 #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
    151         min-width: 100%;
    152 }
    153 
    154147#wpadminbar .ab-top-secondary .menupop .ab-sub-wrapper {
    155148        right: 0;
    156149        left: auto;
    157         margin: 0 -1px 0 0;
    158150}
    159151
    160 #wpadminbar .ab-sub-wrapper > .ab-submenu:first-child {
    161         border-top: none;
    162 }
    163 
    164152#wpadminbar .ab-submenu {
    165153        padding: 6px 0;
    166         border-top: 1px solid #dfdfdf;
    167154}
    168155
    169156#wpadminbar .selected .shortlink-input {
     
    185172#wpadminbar .shortlink-input {
    186173        line-height: 26px;
    187174        height: 26px;
    188         text-shadow: none;
    189175        white-space: nowrap;
    190176        min-width: 140px;
    191177}
     
    202188#wpadminbar .menupop li:hover > .ab-sub-wrapper,
    203189#wpadminbar .menupop li.hover > .ab-sub-wrapper {
    204190        margin-left: 100%;
    205         margin-top: -33px;
    206         border-width: 1px;
     191        margin-top: -32px;
    207192}
    208193
    209194#wpadminbar .ab-top-secondary .menupop li:hover > .ab-sub-wrapper,
     
    217202#wpadminbar .ab-top-menu > li.hover > .ab-item,
    218203#wpadminbar .ab-top-menu > li > .ab-item:focus,
    219204#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;
    227206}
    228207
    229208#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
    230209#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;
    236212}
    237213
    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;
    241225}
    242226
    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;
    246230}
    247231
    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;
    253237}
    254238
     239#wpadminbar .ab-label {
     240        display: inline-block;
     241        height: 32px;
     242}
     243
    255244#wpadminbar .ab-submenu .ab-item {
    256         color: #333;
    257         text-shadow: none;
     245        color: #eee;
    258246}
    259247
    260248#wpadminbar .quicklinks .menupop ul li a,
    261249#wpadminbar .quicklinks .menupop ul li a strong,
    262250#wpadminbar .quicklinks .menupop.hover ul li a,
    263251#wpadminbar.nojs .quicklinks .menupop:hover ul li a {
    264         color: #21759B;
     252        color: #eee;
    265253}
    266254
     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
    267270#wpadminbar .menupop .menupop > .ab-item {
    268271        display: block;
    269         background-image: url(../images/admin-bar-sprite.png?d=20120830);
    270         background-position: 95% -20px;
    271         background-repeat: no-repeat;
    272272        padding-right: 2em;
    273273}
    274274
     275#wpadminbar .menupop .menupop > .ab-item:before {
     276        top: 0px;
     277        right: 4px;
     278        content: '\f139';
     279}
     280
    275281#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;
    279282        padding-left: 2em;
    280283        padding-right: 1em;
    281284}
    282285
     286#wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
     287        top: 5px;
     288        left: 3px;
     289        content: '\f141';
     290}
     291
    283292#wpadminbar .quicklinks .menupop ul.ab-sub-secondary {
    284293        display: block;
    285294        position: relative;
    286295        right: auto;
    287296        margin: 0;
    288         background: #eee;
     297        background: #4b4b4b;
    289298        -webkit-box-shadow: none;
    290299        box-shadow: none;
    291300}
    292301
    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;
    297306}
    298307
    299308#wpadminbar .quicklinks a span#ab-updates {
    300309        background: #eee;
    301310        color: #333;
    302         text-shadow: none;
    303311        display: inline;
    304312        padding: 2px 5px;
    305313        font-size: 10px;
     
    315323
    316324#wpadminbar .ab-top-secondary {
    317325        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);
    324326}
    325327
    326328#wpadminbar ul li:last-child,
    327329#wpadminbar ul li:last-child .ab-item {
    328         border-right: 0;
    329330        -webkit-box-shadow: none;
    330331        box-shadow: none;
    331332}
     
    346347        margin-right: 16px;
    347348}
    348349
     350#wpadminbar #wp-admin-bar-user-actions.ab-submenu {
     351        padding: 6px 0 12px;
     352}
     353
    349354#wpadminbar #wp-admin-bar-my-account.with-avatar #wp-admin-bar-user-actions > li {
    350355        margin-left: 88px;
    351356}
    352357
    353 #wp-admin-bar-user-actions > li > .ab-item {
    354         padding-left: 8px;
    355 }
    356 
    357358#wpadminbar #wp-admin-bar-user-info {
    358359        margin-top: 6px;
    359360        margin-bottom: 15px;
     
    382383
    383384#wpadminbar #wp-admin-bar-user-info .display-name,
    384385#wpadminbar #wp-admin-bar-user-info .username {
    385         text-shadow: none;
    386386        display: block;
    387387}
    388388
    389389#wpadminbar #wp-admin-bar-user-info .display-name {
    390         color: #333;
     390        color: #999;
    391391}
    392392
    393393#wpadminbar #wp-admin-bar-user-info .username {
     
    398398#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
    399399        width: 16px;
    400400        height: 16px;
    401         border: 1px solid #999;
    402401        padding: 0;
     402        border: 1px solid #888;
    403403        background: #eee;
    404404        line-height: 24px;
    405405        vertical-align: middle;
    406         margin: -3px 0 0 6px;
     406        margin: -4px 0 0 6px;
    407407        float: none;
    408408        display: inline;
    409409}
    410410
     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
    411429/*
    412  * My Sites
     430 * My Sites & Site Title
    413431 */
    414432#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;
    418438}
    419439
    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';
    422446        height: 16px;
    423447        width: 16px;
    424448        display: inline-block;
     449        margin: 8px 8px 0 -2px;
    425450}
    426451
     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
    427468/**
     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/**
    428501 * Search
    429502 */
    430503#wpadminbar #wp-admin-bar-search .ab-item {
    431504        padding: 0;
    432 }
    433 
    434 #wpadminbar #wp-admin-bar-search .ab-item {
    435         /* default background */
    436505        background: transparent;
    437506}
    438507
    439508#wpadminbar #adminbarsearch {
    440         height: 28px;
     509        position: relative;
     510        height: 32px;
    441511        padding: 0 2px;
    442512}
    443513
    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;
    446530        height: 24px;
    447531        width: 24px;
    448         border: none;
    449         padding: 0 3px 0 23px;
     532        padding: 0 3px 0 24px;
    450533        margin: 0;
    451534        color: #ccc;
    452         text-shadow: #444 0px -1px 0px;
    453535        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;
    457537        outline: none;
    458538        cursor: pointer;
    459539
    460         -webkit-border-radius: 3px;
    461         border-radius: 3px;
    462 
    463540        -webkit-box-shadow: none;
    464541        box-shadow: none;
    465542
     
    479556        -o-transition-timing-function: ease;
    480557}
    481558
    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;
    490562        width: 200px;
    491563        background-color: rgba( 255, 255, 255, 0.9 );
    492564        cursor: text;
     565        border: 0;
    493566}
    494567
    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;
    496575        background-color: #464646;
    497576}
    498577
    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 {
    500579        background-color: #fff;
    501580}
    502581
    503 /* Two rules to ensure browser recognition */
    504582#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
    505         color: #ddd;
     583        color: #999;
    506584}
    507 
    508585#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
    509         color: #ddd;
     586        color: #999;
    510587}
    511 
    512 #wpadminbar #adminbarsearch .adminbar-button {
    513         display: none;
     588#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
     589        color: #999;
    514590}
    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;
    522593}
    523594
    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 {
    583596        display: none;
    584597}
    585598
    586599/**
    587  * Add New icon
    588  */
    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 icon
    597  */
    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 /**
    604600 * Customize support classes
    605601 */
    606602.no-customize-support .hide-if-no-customize,
     
    612608        display: none;
    613609}
    614610
    615 /**
    616  * Retina display 2x icons
    617  */
    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 
    639611/* Skip link */
    640612#wpadminbar .screen-reader-text,
    641613#wpadminbar .screen-reader-text span {
     
    662634        font-weight: bold;
    663635        padding: 15px 23px 14px;
    664636        background: #f1f1f1;
    665         color: #21759b;
    666         text-shadow: none;
    667         border-radius: 3px;
     637        color: #fff;
    668638        z-index: 100000;
    669639        line-height: normal;
     640        text-decoration: none;
    670641        -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    671642        box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    672         text-decoration: none;
    673643}
    674644
    675645/**
  • src/wp-includes/css/buttons.css

     
    3939.wp-core-ui .button-secondary {
    4040        display: inline-block;
    4141        text-decoration: none;
    42         font-size: 12px;
    43         line-height: 23px;
    44         height: 24px;
     42        font-size: 13px;
     43        line-height: 26px;
     44        height: 28px;
    4545        margin: 0;
    4646        padding: 0 10px 1px;
    4747        cursor: pointer;
     
    9797        display: none;
    9898}
    9999
     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
    100116/* ----------------------------------------------------------------------------
    101117  2.0 - Default Button Style
    102118---------------------------------------------------------------------------- */
    103119
    104120.wp-core-ui .button,
    105121.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;
    115129}
    116130
    117131.wp-core-ui .button.hover,
     
    120134.wp-core-ui .button.focus,
    121135.wp-core-ui .button:focus,
    122136.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;
    130138        border-color: #999;
    131139        color: #222;
    132140}
     
    144152.wp-core-ui .button:active,
    145153.wp-core-ui .button-secondary:active {
    146154        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);
    153155        border-color: #999;
    154156        color: #333;
    155         text-shadow: 0 -1px 0 #fff;
    156157        -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    157158        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    158159}
    159160
     161/* this creates an inset effect on the text */
     162.wp-core-ui .button:active {
     163        padding-top: 1px;
     164}
     165
    160166.wp-core-ui .button[disabled],
    161167.wp-core-ui .button:disabled,
    162168.wp-core-ui .button-secondary[disabled],
     
    164170.wp-core-ui .button-disabled {
    165171        color: #aaa !important;
    166172        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;
    173173        -webkit-box-shadow: none !important;
    174174        box-shadow:         none !important;
    175175        text-shadow: 0 1px 0 #fff !important;
     
    181181---------------------------------------------------------------------------- */
    182182
    183183.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);
    195188        color: #fff;
    196189        text-decoration: none;
    197         text-shadow: 0 1px 0 rgba(0,0,0,0.1);
    198190}
    199191
    200192.wp-core-ui .button-primary.hover,
    201193.wp-core-ui .button-primary:hover,
    202194.wp-core-ui .button-primary.focus,
    203195.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;
    212198        -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    213199        box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    214200        color: #fff;
    215         text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    216201}
    217202
    218203.wp-core-ui .button-primary.focus,
     
    226211.wp-core-ui .button-primary.active:hover,
    227212.wp-core-ui .button-primary.active:focus,
    228213.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;
    237216        color: rgba(255,255,255,0.95);
    238217        -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    239218        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;
    241220}
    242221
     222/* this creates an inset effect on the text */
     223.wp-core-ui .button-primary:active {
     224        padding-top: 1px;
     225}
     226
    243227.wp-core-ui .button-primary[disabled],
    244228.wp-core-ui .button-primary:disabled,
    245229.wp-core-ui .button-primary-disabled {
  • src/wp-includes/css/editor.css

     
    11
    22/*------------------------------------------------------------------------------
     3
    34 TinyMCE and Quicklinks toolbars
    45------------------------------------------------------------------------------*/
    56
     
    4849        color: #555;
    4950}
    5051
     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
    51105/* Containers */
    52106.wp_themeSkin table {}
    53107
     
    97151}
    98152
    99153.wp_themeSkin .mceStatusbar {
     154        background: #fff;
     155        border-top: 1px solid #eee;
     156        color: #000;
    100157        display: block;
    101158        font-family: sans-serif;
    102159        font-size: 12px;
     160        height: 20px;
    103161        line-height: 16px;
    104162        padding: 0 0 0 8px;
    105163        overflow: visible;
    106         height: 20px;
    107         border-top: 1px solid #dfdfdf;
    108         color: #000;
    109         background-color: #f5f5f5;
    110164}
    111165
    112166.rtl .wp_themeSkin .mceStatusbar {
     
    169223        height: 20px;
    170224}
    171225
    172 .wp_themeSkin .mceIcon {
    173         background: url("../js/tinymce/themes/advanced/img/icons.gif") no-repeat 20px 20px;
     226a .mceIcon, .mceAction {
     227        text-align: center;
     228        font: normal 20px/1 'dashicons' !important;
     229        speak: none;
     230        -webkit-font-smoothing: antialiased;
    174231}
    175232
     233.mceAction {
     234        line-height:16px;
     235}
     236
    176237/* Button */
    177238.wp_themeSkin .mceButton {
    178239        display: block;
     
    354415        border-top-right-radius: 2px;
    355416}
    356417
    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 
    395418/* ColorSplitButton */
    396419.wp_themeSkin div.mceColorSplitMenu table {
    397420        background-color: #ebebeb;
     
    418441        width: 100%;
    419442        height: auto;
    420443        text-align: center;
    421         font-family: Tahoma,Verdana,Arial,Helvetica;
     444        font-family: "Open Sans", sans-serif;
    422445        font-size: 11px;
    423446        line-height: 20px;
    424447        border-color: #fff;
     
    474497.wp_themeSkin .mceMenu .mceText {
    475498        position: relative;
    476499        display: block;
    477         font-family: Tahoma,Verdana,Arial,Helvetica;
     500        font-family: "Open Sans", sans-serif;
    478501        cursor: default;
    479502        margin: 0;
    480503        padding: 0 25px;
     
    591614
    592615.wp_themeSkin .mce_h2 span.mceText {
    593616        font-weight: bolder;
    594         font-size: 16px;
     617        font-size: 14px;
    595618}
    596619
    597620.wp_themeSkin .mce_h3 span.mceText {
    598621        font-weight: bolder;
    599         font-size: 14px;
     622        font-size: 12px;
    600623}
    601624
    602625.wp_themeSkin .mce_h4 span.mceText {
    603626        font-weight: bolder;
    604         font-size: 12px;
     627        font-size: 11px;
    605628}
    606629
    607630.wp_themeSkin .mce_h5 span.mceText {
     
    614637        font-size: 10px;
    615638}
    616639
     640span.mce_bold:before {
     641        content:'\f200';
     642}
     643span.mce_italic:before {
     644        content:'\f201';
     645}
     646
     647span.mce_bullist:before {
     648        content:'\f203';
     649}
     650
     651span.mce_numlist:before {
     652        content:'\f204';
     653}
     654
     655span.mce_blockquote:before {
     656        content:'\f205';
     657}
     658span.mce_justifyleft:before {
     659        content:'\f206';
     660}
     661span.mce_justifycenter:before {
     662        content:'\f207';
     663}
     664span.mce_justifyright:before {
     665        content:'\f208';
     666}
     667span.mce_link:before {
     668        content:'\f103';
     669}
     670span.mce_unlink:before {
     671        content:'\f225';
     672}
     673span.mce_wp_more:before {
     674        content:'\f209';
     675}
     676span.mce_strikethrough:before {
     677        content:'\f224';
     678}
     679
     680span.mce_spellchecker {
     681        font-size:20px;
     682        background:none !important;
     683        margin-top: 2px;
     684}
     685span.mce_spellchecker:before {
     686        content:'\f210';
     687}
     688span.mce_fullscreen:before,
     689span.mce_wp_fullscreen:before {
     690        content:'\f211';
     691}
     692
     693span.mce_wp_adv:before {
     694        content:'\f212';
     695}
     696span.mce_underline:before {
     697        content:'\f213';
     698}
     699
     700span.mce_justifyfull:before {
     701        content:'\f214';
     702}
     703
     704span.mce_forecolor {
     705        background:none !important;
     706}
     707span.mce_forecolor:before {
     708        content:'\f215';
     709}
     710span.mce_pastetext:before {
     711        content:'\f217';
     712}
     713span.mce_pasteword:before {
     714        content:'\f216';
     715}
     716span.mce_removeformat:before {
     717        content:'\f218';
     718}
     719span.mce_charmap:before {
     720        content:'\f220';
     721}
     722span.mce_outdent:before {
     723        content:'\f221';
     724}
     725span.mce_indent:before {
     726        content:'\f222';
     727}
     728span.mce_undo:before {
     729        content:'\f171';
     730}
     731span.mce_redo:before {
     732        content:'\f172';
     733}
     734span.mce_wp_help:before {
     735        content:'\f223';
     736}
     737span.mce_image:before {
     738        content: '\f104';
     739}
     740span.mce_ltr:before {
     741        content: '\f320';
     742}
     743
     744
    617745/* Theme */
    618746.wp_themeSkin span.mce_undo {background-position:-500px -20px}
    619747.wp_themeSkin .mceButtonEnabled:hover span.mce_undo,
     
    9441072
    9451073#mceModalBlocker {
    9461074        background: #000;
     1075        opacity: 0.7;
     1076        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
     1077        filter: alpha(opacity=70);
    9471078}
    9481079
    9491080/* WP specific */
     
    9511082        position: relative;
    9521083}
    9531084
     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
    9541096.wp-editor-area {
    9551097        font-family: Consolas, Monaco, monospace;
     1098        font-size: 13px;
    9561099        padding: 10px;
    9571100        margin: 1px 0 0;
    9581101        line-height: 150%;
     
    9661109}
    9671110
    9681111.wp-editor-tools {
    969         height: 30px;
    970         padding: 0 10px 0 0;
     1112        padding: 0;
    9711113}
    9721114
    9731115.rtl .wp-editor-tools {
    9741116        padding: 0 0 0 10px;
    9751117}
    9761118
    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 
    9871119.wp-editor-container textarea.wp-editor-area {
    9881120        width: 100%;
    9891121        margin: 0;
     
    9931125
    9941126.quicktags-toolbar,
    9951127.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;
    10031130}
    10041131
    10051132.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;
    10101137        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;
    10211142}
    10221143
    10231144html[dir="rtl"] .wp-switch-editor {
     
    10301151
    10311152.wp-switch-editor:hover {
    10321153        text-decoration: none !important;
     1154        background: #fff;
    10331155}
    10341156
    10351157.js .tmce-active .wp-editor-area {
     
    10421164
    10431165.tmce-active .switch-tmce,
    10441166.html-active .switch-html {
    1045         border-color: #ccc #ccc #f4f4f4;
    1046         background-color: #f4f4f4;
     1167        background: #f5f5f5;
    10471168        color: #555;
     1169        height: 20px;
     1170        border-bottom: none;
    10481171}
    10491172
    10501173.wp-media-buttons .button {
    10511174        margin-right: 5px;
     1175        margin-bottom: 4px;
     1176        padding-left: 7px;
     1177        padding-right: 7px;
    10521178}
    10531179
     1180.wp-media-buttons .button:active {
     1181        position: relative;
     1182        top: 1px;
     1183        margin-top: -1px;
     1184        margin-bottom: 1px;
     1185}
     1186
    10541187.rtl .wp-media-buttons .button {
    10551188        margin-right: 0;
    10561189        margin-left: 5px;
    10571190}
    10581191
    10591192.wp-media-buttons .insert-media {
    1060         padding-left: 0.4em;
     1193        padding-left: 5px;
    10611194}
    10621195
    10631196.rtl .wp-media-buttons .insert-media {
    1064         padding-left: 10px;
    1065         padding-right: 0.4em;
     1197        padding-left: 7px;
     1198        padding-right: 5px;
    10661199}
    10671200
    10681201.wp-media-buttons a {
     
    10781211
    10791212.wp-media-buttons span.wp-media-buttons-icon {
    10801213        display: inline-block;
    1081         width: 16px;
    1082         height: 16px;
     1214        width: 18px;
     1215        height: 18px;
    10831216        vertical-align: text-top;
    10841217        margin: 0 2px;
    10851218}
    10861219
    10871220.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;
    10891222}
    10901223
     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
    10911238.quicktags-toolbar {
    10921239        border-bottom-style: solid;
    10931240        border-bottom-width: 1px;
     
    11091256        display: inline-block;
    11101257        min-width: 26px;
    11111258        padding: 2px 4px;
    1112         font: 12px/18px Arial, Helvetica, sans-serif normal;
     1259        font: 12px/18px "Open Sans", sans-serif;
    11131260        color: #464646;
    11141261        border: 1px solid #c3c3c3;
    11151262        -webkit-border-radius: 3px;
     
    12221369}
    12231370
    12241371#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;
    12261373        height: 23px;
    12271374        line-height: 23px;
    12281375}
     
    17491896        direction: rtl;
    17501897}
    17511898
    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 {
    17531910        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;
    17581912}
    17591913
    1760 .clearlooks2 .mceFocus .mceTop .mceRight {
     1914.clearlooks2 .mceTop .mceRight {
    17611915        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;
    17661917}
    17671918
     1919.clearlooks2 .mceMiddle {
     1920        clip: rect(24px auto auto auto);
     1921}
     1922
    17681923.clearlooks2 .mceMiddle .mceLeft {
    17691924        background: #f1f1f1;
    1770         border-left: 1px solid #999;
     1925        border-color: transparent;
    17711926}
    17721927
    17731928.clearlooks2 .mceMiddle .mceRight {
    17741929        background: #f1f1f1;
    1775         border-right: 1px solid #999;
     1930        border-color: transparent;
    17761931}
    17771932
    17781933.clearlooks2 .mceBottom {
    17791934        background: #f1f1f1;
    1780         border-bottom: 1px solid #999;
     1935        border-color: transparent;
    17811936}
    17821937
    17831938.clearlooks2 .mceBottom .mceLeft {
    17841939        background: #f1f1f1;
    1785         border-bottom: 1px solid #999;
    1786         border-left: 1px solid #999;
     1940        border-color: transparent;
    17871941}
    17881942
    17891943.clearlooks2 .mceBottom .mceCenter {
    17901944        background: #f1f1f1;
    1791         border-bottom: 1px solid #999;
     1945        border-color: transparent;
    17921946}
    17931947
    17941948.clearlooks2 .mceBottom .mceRight {
    17951949        background: #f1f1f1;
    1796         border-bottom: 1px solid #999;
    1797         border-right: 1px solid #999;
     1950        border-color: transparent;
    17981951}
    17991952
    1800 .clearlooks2 .mceFocus .mceTop span {
    1801         color: #e5e5e5;
     1953.clearlooks2 .mceClose,
     1954.clearlooks2 .mceFocus .mceClose,
     1955.clearlooks2 .mceFocus .mceClose:hover {
     1956        background-image: none;
    18021957}
     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}
    18031966
    1804 
    18051967/* Distraction Free Writing mode
    18061968 * =Overlay Styles
    18071969-------------------------------------------------------------- */
     
    19032065/* =Top bar
    19042066-------------------------------------------------------------- */
    19052067#fullscreen-topbar {
     2068        background: #f5f5f5;
     2069        border-bottom: 1px solid #fff;
     2070        height: 40px;
     2071        left: 0;
     2072        min-width: 800px;
    19062073        position: fixed;
    19072074        top: 0;
    1908         left: 0;
     2075        width: 100%;
    19092076        z-index: 150050;
    1910         border-bottom-style: solid;
    1911         border-bottom-width: 1px;
    1912         min-width: 800px;
    1913         width: 100%;
    1914         height: 40px;
    19152077}
    19162078
    19172079#wp-fullscreen-toolbar {
     
    20352197        display: none;
    20362198}
    20372199
    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 
    20432200/* =Thickbox Adjustments
    20442201-------------------------------------------------------------- */
    20452202.fullscreen-active #TB_overlay {
     
    20742231        border-color: #ccc;
    20752232}
    20762233
    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 
    20932234/* =CSS 3 transitions
    20942235-------------------------------------------------------------- */
    20952236
     
    22272368  (-o-min-device-pixel-ratio: 5/4),
    22282369  (-webkit-min-device-pixel-ratio: 1.25),
    22292370  (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 
    22692371        .wp-media-buttons .add_media span.wp-media-buttons-icon,
    22702372        #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;
    22732374        }
    22742375
    22752376        .wp_themeSkin .mceListBox .mceOpen,
  • src/wp-includes/css/media-views.css

     
    33 */
    44.media-modal,
    55.media-frame {
    6         font-family: sans-serif;
     6        font-family: "Open Sans", sans-serif;
    77        font-size: 12px;
    88}
    99
     
    4949.media-frame input[type="url"],
    5050.media-frame textarea,
    5151.media-frame select {
    52         font-family: sans-serif;
     52        font-family: "Open Sans", sans-serif;
    5353        font-size: 12px;
    5454        -moz-box-sizing: border-box;
    5555        -webkit-box-sizing: border-box;
    5656        -ms-box-sizing: border-box; /* ie8 only */
    5757        box-sizing: border-box;
    58         -webkit-border-radius: 3px;
    59         border-radius: 3px;
    6058        border-width: 1px;
    6159        border-style: solid;
    6260        border-color: #dfdfdf;
     
    114112
    115113.media-modal-close {
    116114        position: absolute;
    117         top: 7px;
    118         right: 7px;
     115        text-decoration: none;
     116        top: 5px;
     117        right: 10px;
    119118        width: 30px;
    120119        height: 30px;
    121120        z-index: 1000;
    122121}
    123 .media-modal-close span {
     122
     123.media-modal-close span.media-modal-icon {
    124124        display: block;
    125125        margin: 8px auto 0;
    126126        width: 15px;
    127127        height: 15px;
    128         background-position: -100px 0;
     128        background-image: none;
    129129}
    130130
     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
    131144.media-modal-close:active {
    132145        outline: 0;
    133146}
     
    261274        max-width: 65%;
    262275}
    263276
    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;
    266280        float: none;
    267         margin-top: 8px;
     281        margin: 8px 3px 0;
    268282        padding: 0;
    269283}
    270284
     
    282296
    283297.media-sidebar .setting input,
    284298.media-sidebar .setting textarea {
     299        margin: 1px;
    285300        width: 65%;
    286301        float: right;
    287302}
     
    336351
    337352.compat-item .field {
    338353        float: right;
    339         width: 65%;
    340         padding-right: 1px;
     354        width: 66%;
    341355}
    342356
    343357.compat-item .field input {
     
    357371        bottom: 0;
    358372        margin: 0;
    359373        padding: 16px 0;
    360         border-right: 1px solid #d9d9d9;
    361         box-shadow: inset -6px 0 6px -6px rgba( 0, 0, 0, 0.2 );
     374        border-right-width: 1px;
     375        border-right-style: solid;
    362376        -webkit-user-select: none;
    363377        -moz-user-select: none;
    364378        -ms-user-select: none;
     
    368382.media-menu > a {
    369383        display: block;
    370384        position: relative;
    371         padding: 4px 20px;
     385        padding: 8px 20px;
    372386        margin: 0;
    373387        line-height: 18px;
    374388        font-size: 14px;
    375389        color: #21759B;
    376         text-shadow: 0 1px 0 #fff;
    377390        text-decoration: none;
    378391}
    379392
     
    417430.media-router > a {
    418431        position: relative;
    419432        float: left;
    420         padding: 2px 10px;
     433        padding: 8px 10px 9px;
    421434        margin: 0;
    422435        height: 18px;
    423436        line-height: 18px;
    424437        font-size: 14px;
    425         border-right: 1px solid #dfdfdf;
    426438        text-shadow: 0 1px 0 #fff;
    427439        text-decoration: none;
    428440}
     
    441453        color: #333;
    442454}
    443455
     456.media-router .active,
     457.media-router > a.active:last-child {
     458        margin: -1px -1px 0;
     459}
     460
    444461.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;
    459463}
    460464
    461465/**
     
    484488        top: 0;
    485489        left: 200px;
    486490        right: 0;
    487         height: 45px;
     491        height: 56px;
    488492        z-index: 200;
    489493}
    490494
    491495.media-frame-router {
    492496        position: absolute;
    493         top: 45px;
     497        top: 56px;
    494498        left: 200px;
    495499        right: 0;
    496         height: 30px;
     500        height: 36px;
    497501        z-index: 200;
    498         border-bottom: 1px solid #dfdfdf;
    499         box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    500502}
    501503
    502504.media-frame-content {
    503505        position: absolute;
    504         top: 75px;
     506        top: 90px;
    505507        left: 200px;
    506508        right: 0;
    507509        bottom: 61px;
     
    509511        width: auto;
    510512        margin: 0;
    511513        overflow: auto;
     514        border-top-width: 1px;
     515        border-top-style: solid;
     516        border-bottom-width: 1px;
     517        border-bottom-style: solid;
    512518}
    513519
    514520.media-frame-toolbar {
     
    518524        bottom: 0;
    519525        height: 60px;
    520526        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 );
    524527}
    525528
    526529.media-frame.hide-menu .media-frame-title,
     
    543546}
    544547
    545548.media-frame.hide-router .media-frame-content {
    546         top: 45px;
     549        top: 56px;
    547550}
    548551
    549552.media-frame.hide-router .media-frame-router {
     
    563566        padding: 0 16px;
    564567        font-size: 22px;
    565568        font-weight: 200;
    566         line-height: 45px;
     569        line-height: 60px;
    567570        margin: 0;
    568571}
    569572
     
    598601        line-height: 18px;
    599602        font-size: 13px;
    600603        color: #464646;
    601         font-family: sans-serif;
     604        font-family: "Open Sans", sans-serif;
    602605        -webkit-appearance: none;
    603606}
    604607
     
    641644                0 0 0 3px #ccc;
    642645}
    643646
    644 .details.attachment {
    645         box-shadow:
    646                 0 0 0 1px #fff,
    647                 0 0 0 5px #1e8cbe;
    648 }
    649 
    650647.attachment-preview {
    651648        position: relative;
    652649        width: 199px;
     
    779776        outline: none;
    780777
    781778        border: 1px solid #fff;
    782         border-radius: 3px;
    783779        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);
    791780}
    792781
    793782.attachment .check div {
     
    10321021}
    10331022
    10341023.uploader-window h3 {
     1024        margin: -0.5em 0 0;
    10351025        position: absolute;
    10361026        top: 50%;
    10371027        left: 0;
     
    10421032        -o-transform:      translateY( -50% );
    10431033        transform:         translateY( -50% );
    10441034
    1045         font-size: 20px;
     1035        font-size: 40px;
    10461036        font-weight: 200;
    10471037        color: #fff;
    10481038        padding: 0;
     
    12521242 */
    12531243
    12541244.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;
    12571247        display: none;
    12581248        opacity: 0.7;
    12591249        filter: alpha(opacity=70);
    1260         width: 16px;
    1261         height: 16px;
     1250        width: 20px;
     1251        height: 20px;
    12621252        margin: 0;
    12631253}
    12641254
     
    14021392.embed-url {
    14031393        display: block;
    14041394        position: relative;
    1405         padding: 0 16px 7px;
     1395        padding: 16px;
    14061396        margin: 0;
    14071397        z-index: 250;
    14081398        background: #fff;
    1409         border-bottom: 1px solid #dfdfdf;
    1410         box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    14111399        font-size: 18px;
    14121400        font-weight: 200;
    14131401}
     
    14331421.embed-link-settings,
    14341422.embed-image-settings {
    14351423        position: absolute;
    1436         background: #f5f5f5;
    1437         top: 57px;
     1424        top: 60px;
    14381425        left: 0;
    14391426        right: 0;
    14401427        bottom: 0;
     
    16271614        .media-menu .separator {
    16281615                margin: 12px 10px;
    16291616        }
     1617
     1618        .media-modal-close {
     1619                right: 20px;
     1620        }
    16301621}
    16311622
    16321623@media only screen and (max-width: 800px) {
     
    16621653  (-o-min-device-pixel-ratio: 5/4),
    16631654  (-webkit-min-device-pixel-ratio: 1.25),
    16641655  (min-resolution: 120dpi) {
     1656
    16651657        .media-modal-icon {
    16661658                background-image: url(../images/uploader-icons-2x.png);
    16671659                background-size: 134px 15px;
    16681660        }
    16691661
    16701662        .media-frame .spinner {
    1671                 background-image: url(../images/wpspin-2x.gif);
     1663                background-image: url('../images/spinner-2x.gif');
    16721664        }
    16731665}
     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 {   
    52        padding: 0 0 10px;
    63        position: relative;
    74        font-size: 13px;
    8 
    95        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);
    219}
    2210
    2311.wp-pointer-content h3 {
     
    2715        line-height: 1.4em;
    2816        font-size: 14px;
    2917        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;
    3819}
    3920
    4021.wp-pointer-content h3:before {
     
    6445}
    6546
    6647.wp-pointer-buttons a.close {
    67         padding-left:3px;
     48        padding-left: 3px;
    6849        position: relative;
    6950}
    7051
    7152.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;
    7859}
    7960
    8061.wp-pointer-buttons a.close:hover:before {
     
    9172
    9273.wp-pointer-arrow {
    9374        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;
    9578}
    9679
    9780.wp-pointer-arrow-inner {
     
    121104.wp-pointer-bottom .wp-pointer-arrow,
    122105.wp-pointer-undefined .wp-pointer-arrow {
    123106        left: 50px;
    124         width: 30px;
    125         height: 14px;
    126107}
    127108
    128109.wp-pointer-left .wp-pointer-arrow,
    129110.wp-pointer-right .wp-pointer-arrow {
    130111        top: 50%;
    131112        margin-top: -15px;
    132         width: 14px;
    133         height: 30px;
    134113}
    135114
    136115/* Arrow Sprite */
    137116.wp-pointer-top .wp-pointer-arrow,
    138117.wp-pointer-undefined .wp-pointer-arrow {
    139118        top: 0;
    140         background-position: 0 0;
     119        border-width: 0 17px 15px 17px;
     120        border-bottom-color: #2ea2cc;
    141121}
    142122
    143123.wp-pointer-bottom .wp-pointer-arrow {
    144124        bottom: 0;
    145         background-position: 0 -46px;
     125        border-width: 15px 17px 0 17px;
     126        border-top-color: #fff;
    146127}
    147128
    148129.wp-pointer-left .wp-pointer-arrow {
    149130        left: 0;
    150         background-position: 0 -15px;
     131        border-width: 17px 15px 17px 0;
     132        border-right-color: #fff;
    151133}
    152134
    153135.wp-pointer-right .wp-pointer-arrow {
    154136        right:0;
    155         background-position:-16px -15px;
     137        border-width: 17px 0 17px 15px;
     138        border-left-color: #fff;
    156139}
    157140
    158141/* - RTL
     
    185168.rtl .wp-pointer-undefined .wp-pointer-arrow {
    186169        right: 50px;
    187170}
    188 
    189 /**
    190  * HiDPI Displays
    191  */
    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

     
    21052105                array( '#5589aa', '#cfdfe9', '#d1e5ee', '#eff8ff' ) );
    21062106        wp_admin_css_color( 'fresh', _x( 'Gray', 'admin color scheme' ), admin_url( 'css/colors-fresh.min.css' ),
    21072107                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' ) );
    21082110}
    21092111
    21102112/**
  • 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

     
     1html {
     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}
    15
    26body.mceForceColors {background:#FFF; color:#000;}
    37body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;}
     
    3943/* WordPress styles */
    4044body {
    4145        font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
    42         font-size: 13px;
    43         line-height: 19px;
     46        font-size: 14px;
     47        line-height: 1.5em;
    4448        color: #333;
    45         margin: 10px;
     49        background-color: #fff;
     50        margin: 0;
     51        padding: 10px;
    4652}
    4753
     54p {
     55        margin-bottom: 1.3em;
     56}
     57
    4858.aligncenter,
    4959dl.aligncenter {
    5060        display: block;
     
    8393
    8494.wp-caption-dd {
    8595        font-size: 11px;
    86         line-height: 17px;
     96        line-height: 1.5;
    8797        padding: 0 4px 5px;
    8898        margin: 0;
    8999}
     
    104114        border: 0;
    105115        border-top: 1px dotted #cccccc;
    106116        display: block;
    107         width: 95%;
    108117        height: 12px;
    109         margin: 15px auto 0;
     118        margin: 1.2em auto 0;
    110119}
    111120
    112121img.mce-wp-more {
    113122        background: transparent url("img/more_bug.gif") no-repeat right top;
     123        background-size: 52px 11px;
    114124}
    115125
    116126img.mce-wp-nextpage {
    117127    background: transparent url("img/page_bug.gif") no-repeat right top;
     128    background-size: 76px 11px;
    118129}
    119130
    120131img.wp-gallery {
    121132        border: 1px dashed #888;
    122133        background: #f2f8ff url("img/gallery.png") no-repeat scroll center center;
    123         width: 99%;
     134        background-size: 40px 40px;
     135        width: 100%;
    124136        height: 250px;
    125137}
    126138
     
    130142        width: 300px;
    131143        height: 250px;
    132144}
     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
    13/* Generic */
    24body {
    3 font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
    4 background:#f1f1f1;
     5font-family: "Open Sans", sans-serif;
     6font-size:13px;
     7background:#fcfcfc;
    58padding:0;
    69margin:8px 8px 0 8px;
    710}
    811
    9 html {background:#f1f1f1;}
    10 td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
    1112textarea {resize:none;outline:none;}
    12 a:link, a:visited {color:black;}
    13 a:hover {color:#2B6FB6;}
     13
     14a:link, a:hover {
     15        color: #2B6FB6;
     16}
     17
     18a:visited {
     19        color: #3C2BB6;
     20}
     21
    1422.nowrap {white-space: nowrap}
    1523
    1624/* Forms */
     
    3442.mceActionPanel .button,
    3543input.mceButton,
    3644.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;
    4655        -webkit-border-radius: 3px;
     56        -webkit-appearance: none;
    4757        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;
    5473}
    5574
    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
    5789#cancel:hover,
    5890input.mceButton:hover,
    5991.updateButton:hover,
    60 #insert:focus,
    6192#cancel:focus,
    6293input.mceButton:focus,
    6394.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;
    65104}
    66105
     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
    67119.mceActionPanel #insert {
    68120        float: right;
    69121}
     
    103155.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
    104156.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
    105157
     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
    106168/* Panels */
    107169.panel_wrapper div.panel {display:none;}
    108170.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
  • src/wp-includes/script-loader.php

     
    393393        $scripts->add( 'media-editor', "/wp-includes/js/media-editor$suffix.js", array( 'shortcode', 'media-views' ), false, 1 );
    394394        $scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models' ), false, 1 );
    395395
     396        $scripts->add( 'svg-painter', '/wp-includes/js/svg-painter.js' );
     397
    396398        if ( is_admin() ) {
    397399                $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 );
    398400                did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array(
     
    553555        // Any rtl stylesheets that don't have a .min version
    554556        $no_suffix = array( 'farbtastic' );
    555557
    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' ) );
    557559
    558560        $styles->add( 'ie', "/wp-admin/css/ie$suffix.css" );
    559561        $styles->add_data( 'ie', 'conditional', 'lte IE 7' );
    560562
     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
    561569        // 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' ) );
    563571
    564572        // do not refer to these directly, the right one is queued by the above "meta" colors handle
    565573        $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') );
    566574        $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' ) );
    567576
    568577        $styles->add( 'media', "/wp-admin/css/media$suffix.css" );
    569578        $styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') );
     
    572581        $styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" );
    573582        $styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.12' );
    574583        $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' ) );
    576585        $styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" );
    577586        $styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" );
    578587        $styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" );