Make WordPress Core

Ticket #26669: modules.2.diff

File modules.2.diff, 485.6 KB (added by jorbin, 11 years ago)
  • Gruntfile.js

     
    22module.exports = function(grunt) {
    33        var path = require('path'),
    44                SOURCE_DIR = 'src/',
    5                 BUILD_DIR = 'build/';
     5                BUILD_DIR = 'build/',
     6                wp_admin_source = [
     7                        'toc',
     8                        'common',
     9                        'text',
     10                        'forms',
     11                        'actions',
     12                        'notifications',
     13                        'tinymce',
     14                        'header',
     15                        'navmenu',
     16                        'layoutblocks',
     17                        'dashboard',
     18                        'lists',
     19                        'edit',
     20                        'categories',
     21                        'tags',
     22                        'media',
     23                        'comments',
     24                        'themes',
     25                        'plugins',
     26                        'users',
     27                        'tools',
     28                        'settings',
     29                        'footer',
     30                        'about',
     31                        'overlay_with_sidebar',
     32                        'customize_loader',
     33                        'tabbed_admin_screen',
     34                        'misc',
     35                        'localization',
     36                        'uncatagorized'
     37                ];
    638
    739        // Load tasks.
    840        require('matchdep').filterDev('grunt-*').forEach( grunt.loadNpmTasks );
     
    3668                                                src: [
    3769                                                        '**',
    3870                                                        '!**/.{svn,git}/**', // Ignore version control directories.
    39                                                         '!wp-includes/version.php' // Exclude version.php
     71                                                        '!wp-includes/version.php'  // Exclude version.php
    4072                                                ],
    4173                                                dest: BUILD_DIR
    4274                                        },
     
    74106                                                return src.replace( /([^\.])*\.\.\/src/ig , '/../build' );
    75107                                        }
    76108                                }
     109                        },
     110                        'wp-admin': {
     111                                src: SOURCE_DIR + 'wp-admin/css/wp-admin.css',
     112                                dest: BUILD_DIR + 'wp-admin/css/wp-admin.css'
     113
    77114                        }
    78115                },
    79116                sass: {
     
    99136                                        'wp-includes/css/*.css',
    100137                                        // Exceptions
    101138                                        '!wp-admin/css/theme.css', // Temporary file
     139                                        '!wp-admin/css/wp-admin-*.css',
    102140                                        '!wp-admin/css/farbtastic.css'
    103141                                ]
    104142                        },
     143                        'wp-admin': {
     144                                expand: true,
     145                                cwd: BUILD_DIR,
     146                                dest: BUILD_DIR,
     147                                ext: '.min.css',
     148                                src: [
     149                                        'wp-admin/css/wp-admin.css'
     150                                ]
     151                        },
    105152                        rtl: {
    106153                                expand: true,
    107154                                cwd: BUILD_DIR,
     
    133180                                ext: '-rtl.css',
    134181                                src: [
    135182                                        'wp-admin/css/*.css',
    136                                         'wp-includes/css/*.css'
     183                                        'wp-includes/css/*.css',
     184                                        '!wp-admin/css/wp-admin-*.css'
    137185                                ]
    138186                        },
     187                        'wp-admin': {
     188                                options: {
     189                                        swapLtrRtlInUrl: false
     190                                },
     191                                expand: true,
     192                                cwd: BUILD_DIR,
     193                                dest: BUILD_DIR,
     194                                ext: '-rtl.css',
     195                                src: [
     196                                        'wp-admin/css/wp-admin.css'
     197                                ]
     198                        },
    139199                        colors: {
    140200                                options: {
    141201                                        processContent: function( src ) {
     
    309369                                        BUILD_DIR + 'wp-includes/js/tinymce/mark_loaded.js'
    310370                                ],
    311371                                dest: BUILD_DIR + 'wp-includes/js/tinymce/wp-tinymce.js'
    312                         }
     372                        },
     373            'wp-admin': {
     374                options: {
     375                    separator: '\n'
     376                },
     377                src: wp_admin_source.map(function(file){
     378                                        return SOURCE_DIR + 'wp-admin/css/wp-admin-' + file + '.css';
     379                                }),
     380                dest: BUILD_DIR + 'wp-admin/css/wp-admin.css'
     381
     382            }
    313383                },
    314384                compress: {
    315385                        tinymce: {
     
    356426                        }
    357427                }
    358428        });
     429        grunt.registerTask('build:wpadmincss', ['concat:wp-admin', 'cssmin:wp-admin', 'cssjanus:wp-admin']);
    359430
    360         // Register tasks.
    361 
    362431        // Copy task.
    363432        grunt.registerTask('copy:all', ['copy:files', 'copy:version']);
    364433
    365434        // RTL task.
    366         grunt.registerTask('rtl', ['cssjanus:core', 'cssjanus:colors']);
     435        grunt.registerTask('rtl', ['cssjanus:core', 'cssjanus:colors' ]);
    367436
    368437        // Color schemes task.
    369438        grunt.registerTask('colors', ['sass:colors']);
    370439
    371440        // Build task.
    372441        grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', 'rtl', 'cssmin:rtl', 'cssmin:colors',
    373                 'uglify:core', 'uglify:tinymce', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce']);
     442                'build:wpadmincss', 'uglify:core', 'uglify:tinymce', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce']);
    374443
    375444        // Testing tasks.
    376445        grunt.registerMultiTask('phpunit', 'Runs PHPUnit tests, including the ajax and multisite tests.', function() {
  • src/wp-admin/css/wp-admin-about.css

     
     1/*------------------------------------------------------------------------------
     2  22.0 - About Pages
     3------------------------------------------------------------------------------*/
     4
     5.about-wrap {
     6        position: relative;
     7        margin: 25px 40px 0 20px;
     8        max-width: 1050px; /* readability */
     9        font-size: 15px;
     10}
     11
     12.about-wrap div.updated,
     13.about-wrap div.error {
     14        display: none !important;
     15}
     16
     17.about-wrap hr {
     18        border: 0;
     19        height: 0;
     20        margin: 0;
     21        border-top: 1px solid rgba(0, 0, 0, 0.1);
     22}
     23
     24.about-wrap img {
     25        margin: 0.5em 0 0.5em 5px;
     26        max-width: 100%;
     27}
     28
     29/* Typography */
     30
     31.about-wrap p {
     32        line-height: 1.6em;
     33        font-size: 14px;
     34}
     35
     36.about-wrap h1 {
     37        margin: 0.2em 200px 0 0;
     38        line-height: 1.2em;
     39        font-size: 2.8em;
     40        font-weight: 400;
     41}
     42
     43.about-wrap .about-text,
     44.about-wrap p.about-description,
     45.about-wrap li.wp-person a.web {
     46        font-weight: normal;
     47        line-height: 1.6em;
     48        font-size: 19px;
     49}
     50
     51.about-description {
     52        margin-top: 1.4em;
     53}
     54
     55.about-text {
     56        margin: 1em 200px 1em 0;
     57        min-height: 60px;
     58        font-size: 24px;
     59}
     60
     61.about-wrap .changelog h2.about-headline-callout {
     62        margin: 1.1em 0 0.2em;
     63        font-size: 2.4em;
     64        font-weight: 300;
     65        line-height: 1.3;
     66        text-align: center;
     67}
     68
     69.about-wrap h3 {
     70        margin: 1em 0 .6em;
     71        font-size: 1.5em;
     72        line-height: 1.5em;
     73}
     74
     75.about-wrap .feature-section h4 {
     76        margin: 1.4em 0 0.6em 0;
     77        font-size: 1.2em;
     78}
     79
     80.about-wrap .feature-section p {
     81        margin-top: 0.6em;
     82}
     83
     84.about-wrap code,
     85.about-wrap ol li p {
     86        font-size: 14px;
     87}
     88
     89/* 3.8 Images */
     90
     91.about-wrap .about-colors-img {
     92        bottom: -25px;
     93}
     94
     95.about-wrap .about-themes-img {
     96        bottom: -38px;
     97}
     98
     99.about-wrap .about-overview-img {
     100        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     101        margin: 0;
     102}
     103
     104.about-colors-img img,
     105.about-themes-img img {
     106        margin: 0 0;
     107        padding: 0;
     108        line-height: 1;
     109}
     110
     111/* Point Releases */
     112
     113.about-wrap .point-releases {
     114        margin-top: 5px;
     115}
     116
     117.about-wrap .changelog.point-releases h3 {
     118        padding-top: 35px;
     119}
     120
     121.about-wrap .changelog.point-releases h3:first-child {
     122        padding-top: 7px;
     123}
     124
     125/* WordPress Version Badge */
     126
     127.wp-badge {
     128        background: url('../images/w-logo-white.png?ver=20131202') no-repeat;
     129        background: none, url('../images/wordpress-logo-white.svg?ver=20131110') no-repeat;
     130        background-position: center 24px;
     131        background-size: 85px 85px;
     132        font-size: 14px;
     133        text-align: center;
     134        font-weight: 600;
     135        margin: 5px 0 0;
     136        padding-top: 120px;
     137        height: 40px;
     138        display: inline-block;
     139        width: 150px;
     140        text-rendering: optimizeLegibility;
     141}
     142
     143
     144.about-wrap .wp-badge {
     145        position: absolute;
     146        top: 0;
     147        right: 0;
     148}
     149
     150/* Tabs */
     151
     152.about-wrap h2.nav-tab-wrapper {
     153        padding-left: 6px;
     154}
     155
     156.about-wrap h2 .nav-tab {
     157        padding: 4px 15px 6px;
     158        margin: 0 3px -1px 0;
     159        font-size: 18px;
     160        vertical-align: top;
     161        border-width: 1px;
     162}
     163
     164.about-wrap h2 .nav-tab-active {
     165        font-weight: bold;
     166}
     167
     168/* Changelog / Update screen */
     169
     170.about-wrap .feature-section {
     171        padding-bottom: 20px;
     172}
     173
     174.about-wrap .feature-section.col {
     175        margin-bottom: 0;
     176}
     177
     178.about-wrap .feature-section.center-col > div {
     179        margin: auto;
     180        width: 60%;
     181}
     182
     183.about-wrap .about-colors .one-col > div {
     184        width: 100%;
     185}
     186
     187.about-wrap .feature-section.two-col > div {
     188        position: relative;
     189        width: 50%;
     190        float: left;
     191}
     192
     193.about-wrap .feature-section.three-col > div {
     194        position: relative;
     195        width: 29.95%;
     196        margin-right: 4.999999999%;
     197        float: left;
     198}
     199
     200.about-wrap .feature-section.col .last-feature {
     201        margin-right: 0;
     202}
     203
     204.about-wrap .about-updates img,
     205.about-wrap .about-twentyfourteen img {
     206        margin: 2em 0 0 0;
     207        border: 1px solid #ddd;
     208        -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     209        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
     210}
     211
     212.about-wrap .about-twentyfourteen img {
     213        margin-top: 1em;
     214}
     215
     216.about-wrap .changelog .feature-section {
     217        overflow: hidden;
     218}
     219
     220.about-wrap .about-colors .scheme-list {
     221        margin-bottom: 1em;
     222}
     223
     224.about-wrap .about-colors .color-option {
     225        padding-top: 10px;
     226}
     227.about-wrap .about-colors .color-option label {
     228        display: inline-block;
     229        margin: 0.25em 0 0.5em;
     230}
     231
     232.about-wrap .feature-section.two-col div p {
     233        margin-right: 3%;
     234}
     235
     236.about-wrap .feature-section div p img {
     237        float: right;
     238        margin-left: 10px;
     239        max-width: 20%;
     240}
     241
     242.about-wrap .changelog li {
     243        list-style-type: disc;
     244        margin-left: 3em;
     245}
     246
     247/* Return to Dashboard Home link */
     248
     249.about-wrap .return-to-dashboard {
     250        margin: 30px 0 0 -5px;
     251        font-size: 14px;
     252        font-weight: bold;
     253}
     254
     255.about-wrap .return-to-dashboard a {
     256        text-decoration: none;
     257        padding: 0 5px;
     258}
     259
     260/* Credits */
     261
     262.about-wrap h4.wp-people-group {
     263        margin-top: 2.6em;
     264        font-size: 16px;
     265}
     266
     267.about-wrap ul.wp-people-group {
     268        overflow: hidden;
     269        padding: 0 5px;
     270        margin: 0 -15px 0 -5px;
     271}
     272
     273.about-wrap ul.compact {
     274        margin-bottom: 0
     275}
     276
     277.about-wrap li.wp-person {
     278        float: left;
     279        margin-right: 10px;
     280}
     281
     282.about-wrap li.wp-person img.gravatar {
     283        float: left;
     284        margin: 0 10px 10px 0;
     285        padding: 2px;
     286        width: 60px;
     287        height: 60px;
     288}
     289
     290.about-wrap ul.compact li.wp-person img.gravatar {
     291        width: 30px;
     292        height: 30px;
     293}
     294
     295.about-wrap li.wp-person {
     296        height: 70px;
     297        width: 280px;
     298        padding-bottom: 15px;
     299}
     300
     301.about-wrap ul.compact li.wp-person {
     302        height: auto;
     303        width: 180px;
     304        padding-bottom: 0;
     305        margin-bottom: 0;
     306}
     307
     308.about-wrap #wp-people-group-validators + p.wp-credits-list {
     309        margin-top: 0;
     310}
     311
     312.about-wrap li.wp-person a.web {
     313        display: block;
     314        margin: 6px 0 2px;
     315        font-size: 16px;
     316        text-decoration: none;
     317}
     318
     319.about-wrap p.wp-credits-list a {
     320        white-space: nowrap;
     321}
     322
     323/* Freedoms */
     324
     325.freedoms-php .about-wrap ol {
     326        margin: 40px 60px;
     327}
     328
     329.freedoms-php .about-wrap ol li {
     330        list-style-type: decimal;
     331        font-weight: bold;
     332}
     333
     334.freedoms-php .about-wrap ol p {
     335        font-weight: normal;
     336        margin: 0.6em 0;
     337}
     338
  • src/wp-admin/css/wp-admin-actions.css

    Property changes on: src/wp-admin/css/wp-admin-about.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  3.0 - Actions
     3------------------------------------------------------------------------------*/
     4
     5#major-publishing-actions {
     6        padding: 10px;
     7        clear: both;
     8        border-top: 1px solid #ddd;
     9        background: #f5f5f5;
     10}
     11
     12#delete-action {
     13        line-height: 28px;
     14        vertical-align: middle;
     15        text-align: left;
     16        float: left;
     17}
     18
     19#publishing-action {
     20        text-align: right;
     21        float: right;
     22        line-height: 23px;
     23}
     24
     25#publishing-action .spinner {
     26        float: left;
     27}
     28
     29#misc-publishing-actions {
     30        padding: 6px 0 0;
     31}
     32
     33.misc-pub-section {
     34        padding: 6px 10px 8px;
     35}
     36
     37.misc-pub-section:first-child {
     38        border-top-width: 0;
     39}
     40
     41.misc-pub-section-last {
     42        border-bottom-width: 0;
     43}
     44
     45#minor-publishing-actions {
     46        padding: 10px 10px 0 10px;
     47        text-align: right;
     48}
     49
     50#save-post {
     51        float: left;
     52}
     53
     54.preview {
     55        float: right;
     56}
     57
     58#sticky-span {
     59        margin-left: 18px;
     60}
     61
     62.side-info {
     63        margin: 0;
     64        padding: 4px;
     65        font-size: 11px;
     66}
     67
     68.side-info h5 {
     69        padding-bottom: 7px;
     70        font-size: 14px;
     71        margin: 12px 2px 5px;
     72        border-bottom-width: 1px;
     73        border-bottom-style: solid;
     74}
     75
     76.side-info ul {
     77        margin: 0;
     78        padding-left: 18px;
     79        list-style: square;
     80}
     81
     82.approve,
     83.unapproved .unapprove {
     84        display: none;
     85}
     86
     87.unapproved .approve,
     88.spam .approve,
     89.trash .approve {
     90        display: inline;
     91}
     92
     93td.action-links,
     94th.action-links {
     95        text-align: right;
     96}
     97
     98
  • src/wp-admin/css/wp-admin-categories.css

    Property changes on: src/wp-admin/css/wp-admin-actions.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  12.0 - Categories
     3------------------------------------------------------------------------------*/
     4
     5.category-adder {
     6        margin-left: 120px;
     7        padding: 4px 0;
     8}
     9
     10.category-adder h4 {
     11        margin: 0 0 8px;
     12}
     13
     14#side-sortables .category-adder {
     15        margin: 0;
     16}
     17
     18#post-body ul.add-menu-item-tabs {
     19        float: left;
     20        width: 120px;
     21        text-align: right;
     22        /* Negative margin for the sake of those without JS: all tabs display */
     23        margin: 0 -120px 0 5px;
     24        padding: 0;
     25}
     26
     27ul.add-menu-item-tabs li {
     28        padding: 3px 5px 3px 8px;
     29}
     30
     31#post-body ul.add-menu-item-tabs li.tabs {
     32        -webkit-border-top-left-radius: 3px;
     33        -webkit-border-bottom-left-radius: 3px;
     34        border-top-left-radius: 3px;
     35        border-bottom-left-radius: 3px;
     36}
     37
     38.wp-tab-panel,
     39.categorydiv div.tabs-panel,
     40.customlinkdiv div.tabs-panel,
     41.posttypediv div.tabs-panel,
     42.taxonomydiv div.tabs-panel {
     43        min-height: 42px;
     44        max-height: 200px;
     45        overflow: auto;
     46        padding: 0 0.9em;
     47        border-style: solid;
     48        border-width: 1px;
     49}
     50
     51div.tabs-panel-active {
     52        display:block;
     53}
     54
     55div.tabs-panel-inactive {
     56        display:none;
     57}
     58
     59#front-page-warning,
     60#front-static-pages ul,
     61ul.export-filters,
     62.inline-editor ul.cat-checklist ul,
     63.categorydiv ul.categorychecklist ul,
     64.customlinkdiv ul.categorychecklist ul,
     65.posttypediv ul.categorychecklist ul,
     66.taxonomydiv ul.categorychecklist ul {
     67        margin-left: 18px;
     68}
     69
     70ul.categorychecklist li {
     71        margin: 0;
     72        padding: 0;
     73        line-height: 22px;
     74        word-wrap: break-word;
     75}
     76
     77.categorydiv .tabs-panel,
     78.customlinkdiv .tabs-panel,
     79.posttypediv .tabs-panel,
     80.taxonomydiv .tabs-panel {
     81        border-width: 3px;
     82        border-style: solid;
     83}
     84
     85.form-wrap p,
     86.form-wrap label {
     87        font-size: 11px;
     88}
     89
     90.form-wrap label {
     91        display: block;
     92        padding: 2px;
     93        font-size: 12px;
     94}
     95
     96.form-field input,
     97.form-field textarea {
     98        border-style: solid;
     99        border-width: 1px;
     100        width: 95%;
     101}
     102
     103p.description,
     104.form-wrap p {
     105        margin: 2px 0 5px;
     106}
     107
     108p.help,
     109p.description,
     110span.description,
     111.form-wrap p {
     112        font-size: 13px;
     113        font-style: italic;
     114}
     115
     116.form-wrap .form-field {
     117        margin: 0 0 10px;
     118        padding: 8px 0;
     119}
     120
     121.form-wrap .form-field #parent {
     122        max-width: 100%;
     123}
     124
     125.col-wrap h3 {
     126        margin: 12px 0;
     127        font-size: 1.1em;
     128}
     129
     130.col-wrap p.submit {
     131        margin-top: -10px;
     132}
     133
     134
  • src/wp-admin/css/wp-admin-comments.css

    Property changes on: src/wp-admin/css/wp-admin-categories.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  15.0 - Comments Screen
     3------------------------------------------------------------------------------*/
     4
     5.form-table {
     6        border-collapse: collapse;
     7        margin-top: 0.5em;
     8        width: 100%;
     9        clear: both;
     10}
     11
     12.form-table,
     13.form-table td,
     14.form-table th,
     15.form-table td p,
     16.form-wrap label {
     17        font-size: 14px;
     18}
     19
     20.form-table td {
     21        margin-bottom: 9px;
     22        padding: 15px 10px;
     23        line-height: 1.3;
     24        vertical-align: middle;
     25}
     26
     27.form-table th,
     28.form-wrap label {
     29        font-weight: normal;
     30        text-shadow: none;
     31        vertical-align: baseline;
     32}
     33
     34.form-table th {
     35        vertical-align: top;
     36        text-align: left;
     37        padding: 20px 10px 20px 0;
     38        width: 200px;
     39        line-height: 1.3;
     40        font-weight: 600;
     41}
     42
     43.form-table th.th-full {
     44        width: auto;
     45        font-weight: 400;
     46}
     47
     48.form-table input.tog {
     49        margin-top: 2px;
     50        margin-right: 2px;
     51        float: left;
     52}
     53
     54.form-table td p {
     55        margin-top: 4px;
     56        margin-bottom: 0;
     57}
     58
     59.form-table td fieldset label {
     60        margin: 0.25em 0 0.5em !important;
     61        display: inline-block;
     62}
     63
     64.form-table td fieldset label,
     65.form-table td fieldset p,
     66.form-table td fieldset li {
     67        line-height: 1.4em;
     68}
     69
     70.form-table input.tog,
     71.form-table input[type=radio] {
     72        margin-top: -4px;
     73        margin-right: 4px;
     74        float: none;
     75}
     76
     77.commentlist li {
     78        padding: 1em 1em .2em;
     79        margin: 0;
     80        border-bottom-width: 1px;
     81        border-bottom-style: solid;
     82}
     83
     84.commentlist li li {
     85        border-bottom: 0;
     86        padding: 0;
     87}
     88
     89.commentlist p {
     90        padding: 0;
     91        margin: 0 0 .8em;
     92}
     93
     94/* reply to comments */
     95#replyrow input {
     96        border-width: 1px;
     97        border-style: solid;
     98}
     99
     100#replyrow td {
     101        padding: 2px;
     102}
     103
     104#replysubmit {
     105        margin: 0;
     106        padding: 0 5px 3px;
     107        text-align: center;
     108}
     109
     110#replysubmit .spinner {
     111        padding: 2px 0 0;
     112        vertical-align: top;
     113        float: right;
     114}
     115
     116#replysubmit .button {
     117        margin-right: 5px;
     118}
     119
     120#replysubmit .error {
     121        color: red;
     122        line-height: 21px;
     123        text-align: center;
     124}
     125
     126#replyrow h5 {
     127        margin: .2em 0 0;
     128        padding: 0 5px;
     129        line-height: 1.4em;
     130        font-size: 1em;
     131}
     132
     133#edithead .inside {
     134        float: left;
     135        padding: 3px 0 2px 5px;
     136        margin: 0;
     137        text-align: center;
     138}
     139
     140#edithead .inside input {
     141        width: 180px;
     142}
     143
     144#edithead label {
     145        padding: 2px 0;
     146}
     147
     148#replycontainer {
     149        padding: 5px;
     150}
     151
     152#replycontent {
     153        height: 120px;
     154        -webkit-box-shadow: none;
     155        box-shadow: none;
     156}
     157
     158.comment-php .wp-editor-area {
     159        height: 200px;
     160}
     161
     162.comment-ays {
     163        margin-bottom: 0;
     164        border-bottom-style: solid;
     165        border-bottom-width: 1px;
     166}
     167
     168.comment-ays .alt {
     169        background-color: transparent;
     170}
     171
     172.trash-undo-inside,
     173.spam-undo-inside {
     174        margin: 1px 8px 1px 0;
     175        line-height: 16px;
     176}
     177
     178.spam-undo-inside .avatar,
     179.trash-undo-inside .avatar {
     180        height: 20px;
     181        width: 20px;
     182        margin-right: 8px;
     183        vertical-align: middle;
     184}
     185
     186.stuffbox .editcomment {
     187        clear: none;
     188}
     189
     190#comment-status-radio p {
     191        margin: 3px 0 5px;
     192}
     193
     194#comment-status-radio input {
     195        margin: 2px 3px 5px 0;
     196        vertical-align: middle;
     197}
     198
     199#comment-status-radio label {
     200        padding: 5px 0;
     201}
     202
     203.commentlist .avatar {
     204        vertical-align: text-top;
     205}
     206
     207#the-comment-list .unapproved th.check-column input {
     208        margin-left: 4px;
     209}
     210
  • src/wp-admin/css/wp-admin-common.css

    Property changes on: src/wp-admin/css/wp-admin-comments.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  0.0 - Common Styles
     3------------------------------------------------------------------------------*/
     4/* 2 column liquid layout */
     5#wpwrap {
     6        height: auto;
     7        min-height: 100%;
     8        width: 100%;
     9        position: relative;
     10        -webkit-font-smoothing: subpixel-antialiased;
     11}
     12
     13#wpcontent {
     14        height: 100%;
     15}
     16
     17#wpcontent,
     18#wpfooter {
     19        margin-left: 180px;
     20}
     21
     22.folded #wpcontent,
     23.folded #wpfooter {
     24        margin-left: 56px;
     25}
     26
     27#wpbody-content {
     28        padding-bottom: 65px;
     29        float: left;
     30        width: 100%;
     31        overflow: visible !important;
     32}
     33
     34#adminmenuback,
     35#adminmenuwrap,
     36#adminmenu,
     37#adminmenu .wp-submenu {
     38        width: 160px;
     39}
     40
     41#adminmenuback {
     42        position: absolute;
     43        top: 0;
     44        bottom: 0;
     45        z-index: -1;
     46}
     47
     48#adminmenu {
     49        clear: left;
     50        margin: 12px 0 0;
     51        padding: 0;
     52        list-style: none;
     53}
     54
     55.folded #adminmenuback,
     56.folded #adminmenuwrap,
     57.folded #adminmenu,
     58.folded #adminmenu li.menu-top {
     59        width: 36px;
     60}
     61
     62/* inner 2 column liquid layout */
     63
     64.inner-sidebar {
     65        float: right;
     66        clear: right;
     67        display: none;
     68        width: 281px;
     69        position: relative;
     70}
     71
     72.columns-2 .inner-sidebar {
     73        margin-right: auto;
     74        width: 286px;
     75        display: block;
     76}
     77
     78.inner-sidebar #side-sortables,
     79.columns-2 .inner-sidebar #side-sortables {
     80        min-height: 300px;
     81        width: 280px;
     82        padding: 0;
     83}
     84
     85.has-right-sidebar .inner-sidebar {
     86        display: block;
     87}
     88
     89.has-right-sidebar #post-body {
     90        float: left;
     91        clear: left;
     92        width: 100%;
     93        margin-right: -2000px;
     94}
     95
     96.has-right-sidebar #post-body-content {
     97        margin-right: 300px;
     98        float: none;
     99        width: auto;
     100}
     101
     102/* 2 columns main area */
     103
     104#col-container,
     105#col-left,
     106#col-right {
     107        overflow: hidden;
     108        padding: 0;
     109        margin: 0;
     110}
     111
     112#col-left {
     113        width: 35%;
     114}
     115
     116#col-right {
     117        float: right;
     118        clear: right;
     119        width: 65%;
     120}
     121
     122.col-wrap {
     123        padding: 0 7px;
     124}
     125
     126/* utility classes */
     127.alignleft {
     128        float: left;
     129}
     130
     131.alignright {
     132        float: right;
     133}
     134
     135.textleft {
     136        text-align: left;
     137}
     138
     139.textright {
     140        text-align: right;
     141}
     142
     143.clear {
     144        clear: both;
     145}
     146
     147/* Hide visually but not from screen readers */
     148.screen-reader-text,
     149.screen-reader-text span,
     150.ui-helper-hidden-accessible {
     151        position: absolute;
     152        margin: -1px;
     153        padding: 0;
     154        height: 1px;
     155        width: 1px;
     156        overflow: hidden;
     157        clip: rect(0 0 0 0);
     158        border: 0;
     159}
     160
     161.screen-reader-shortcut {
     162        position: absolute;
     163        top: -1000em;
     164}
     165
     166.screen-reader-shortcut:focus {
     167        left: 6px;
     168        top: -25px;
     169        height: auto;
     170        width: auto;
     171        display: block;
     172        font-size: 14px;
     173        font-weight: 600;
     174        padding: 15px 23px 14px;
     175        background: #f1f1f1;
     176        color: #21759b;
     177        z-index: 100000;
     178        line-height: normal;
     179        -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
     180        box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
     181        text-decoration: none;
     182        outline: none;
     183}
     184
     185.hidden,
     186.js .closed .inside,
     187.js .hide-if-js,
     188.no-js .hide-if-no-js,
     189.js.wp-core-ui .hide-if-js,
     190.js .wp-core-ui .hide-if-js,
     191.no-js.wp-core-ui .hide-if-no-js,
     192.no-js .wp-core-ui .hide-if-no-js {
     193        display: none;
     194}
     195
     196/* include margin and padding in the width calculation of input and textarea */
     197input,
     198input[type="text"],
     199input[type="password"],
     200input[type="number"],
     201input[type="search"],
     202input[type="email"],
     203input[type="url"],
     204textarea {
     205        -moz-box-sizing: border-box;
     206        -webkit-box-sizing: border-box;
     207        -ms-box-sizing: border-box; /* ie8 only */
     208        box-sizing: border-box;
     209}
     210
     211input[type="checkbox"],
     212input[type="radio"] {
     213        border-width: 1px;
     214        border-style: solid;
     215        clear: none;
     216        cursor: pointer;
     217        display: inline-block;
     218        line-height: 0;
     219        height: 16px;
     220        margin: -4px 4px 0 0;
     221        outline: 0;
     222        padding: 0 !important;
     223        text-align: center;
     224        vertical-align: middle;
     225        width: 16px;
     226        min-width: 16px;
     227        -webkit-appearance: none;
     228        -webkit-box-sizing: border-box;
     229        box-sizing: border-box;
     230}
     231
     232td > input[type="checkbox"],
     233.wp-admin p input[type=checkbox],
     234.wp-admin p input[type=radio] {
     235        margin-top: 0;
     236}
     237
     238.wp-admin p label input[type=checkbox] {
     239        margin-top: -4px;
     240}
     241
     242.wp-admin p label input[type=radio] {
     243        margin-top: -2px;
     244}
     245
     246input[type=radio] {
     247        border-radius: 50%;
     248        margin-right: 4px;
     249        line-height: 10px;
     250}
     251
     252input[type=checkbox]:disabled,
     253input[type=radio]:disabled,
     254input[type=checkbox]:disabled:checked:before,
     255input[type=radio]:disabled:checked:before {
     256        opacity: 0.7;
     257}
     258
     259input[type=checkbox]:checked:before,
     260input[type=radio]:checked:before {
     261        float: left;
     262        display: inline-block;
     263        vertical-align: middle;
     264        width: 16px;
     265        font: normal 21px/1 'dashicons';
     266        speak: none;
     267        -webkit-font-smoothing: antialiased;
     268        -moz-osx-font-smoothing: grayscale;
     269}
     270
     271input[type=checkbox]:checked:before {
     272        content: '\f147';
     273        margin: -3px 0 0 -4px;
     274}
     275
     276input[type=radio]:checked:before {
     277        content: '\2022';
     278        text-indent: -9999px;
     279        border-radius: 50px;
     280        font-size: 24px;
     281        width: 6px;
     282        height: 6px;
     283        margin: 4px;
     284        line-height: 16px;
     285}
     286
     287@-moz-document url-prefix() {
     288        input[type=checkbox],
     289        input[type=radio],
     290        .form-table input.tog {
     291                margin-bottom: -1px;
     292        }
     293}
     294
     295/* Search */
     296input[type="search"] {
     297        -webkit-appearance: textfield;
     298}
     299
     300input[type="search"]::-webkit-search-decoration {
     301        display: none;
     302}
     303
     304.ie8 input[type="password"],
     305.ie8 .login form .input {
     306        font-family: sans-serif;
     307}
     308
     309/* general */
     310html,
     311body {
     312        height: 100%;
     313        margin: 0;
     314        padding: 0;
     315}
     316
     317body {
     318        font-family: "Open Sans", sans-serif;
     319        font-size: 13px;
     320        line-height: 1.4em;
     321        min-width: 600px;
     322}
     323
     324body.iframe {
     325        min-width: 0;
     326        padding-top: 1px;
     327}
     328
     329body.login {
     330        background: #fbfbfb;
     331        min-width: 0;
     332}
     333
     334iframe,
     335img {
     336        border: 0;
     337}
     338
     339td,
     340textarea,
     341input,
     342select,
     343button {
     344        font-family: inherit;
     345        font-size: inherit;
     346        font-weight: inherit;
     347}
     348
     349td,
     350textarea {
     351        line-height: inherit;
     352}
     353
     354textarea {
     355        overflow: auto;
     356}
     357
     358textarea,
     359input,
     360select {
     361        font-size: 14px;
     362        padding: 3px 5px;
     363        line-height: 15px;
     364        border-radius: 0; /* Reset mobile webkit's default element styling */
     365}
     366
     367textarea {
     368        padding: 2px 6px;
     369        line-height: 1.4;
     370}
     371
     372a,
     373input[type="text"],
     374input[type="password"],
     375input[type="number"],
     376input[type="search"],
     377input[type="email"],
     378input[type="url"],
     379textarea,
     380div,
     381select {
     382        outline: 0;
     383}
     384
     385.wp-admin input[type="file"] {
     386        padding: 3px 0;
     387}
     388
     389a:focus,
     390a:active {
     391        outline: thin dotted;
     392}
     393
     394#adminmenu a:focus,
     395#adminmenu a:active,
     396.screen-reader-text:focus {
     397        outline: none;
     398}
     399
     400blockquote,
     401q {
     402        quotes: none;
     403}
     404
     405blockquote:before,
     406blockquote:after,
     407q:before,
     408q:after {
     409        content: '';
     410        content: none;
     411}
     412
     413p,
     414.wp_attachment_details label[for="content"] {
     415        font-size: 13px;
     416        line-height: 1.5;
     417        margin: 1em 0;
     418}
     419
     420blockquote {
     421        margin: 1em;
     422}
     423
     424label {
     425        cursor: pointer;
     426}
     427
     428li,
     429dd {
     430        margin-bottom: 6px;
     431}
     432
     433input,
     434select {
     435        margin: 1px;
     436        padding: 3px 5px;
     437}
     438
     439h1,
     440h2,
     441h3,
     442h4,
     443h5,
     444h6 {
     445        display: block;
     446        font-weight: 600;
     447}
     448
     449h1 {
     450        font-size: 2em;
     451        margin: .67em 0;
     452}
     453
     454h2 {
     455        font-size: 1.5em;
     456        margin: .83em 0;
     457        font-weight: 400;
     458}
     459
     460h3 {
     461        font-size: 1.3em;
     462        margin: 1em 0;
     463}
     464
     465h4 {
     466        font-size: 1em;
     467        margin: 1.33em 0;
     468}
     469
     470h5 {
     471        font-size: 0.83em;
     472        margin: 1.67em 0;
     473}
     474
     475h6 {
     476        font-size: 0.67em;
     477        margin: 2.33em 0;
     478}
     479
     480ul,
     481ol {
     482        padding: 0;
     483}
     484
     485ul {
     486        list-style: none;
     487}
     488
     489ol {
     490        list-style-type: decimal;
     491        margin-left: 2em;
     492}
     493
     494ul.ul-disc {
     495        list-style: disc outside;
     496}
     497
     498ul.ul-square {
     499        list-style: square outside;
     500}
     501
     502ol.ol-decimal {
     503        list-style: decimal outside;
     504}
     505
     506ul.ul-disc,
     507ul.ul-square,
     508ol.ol-decimal {
     509        margin-left: 1.8em;
     510}
     511
     512ul.ul-disc > li,
     513ul.ul-square > li,
     514ol.ol-decimal > li {
     515        margin: 0 0 0.5em;
     516}
     517
     518.code,
     519code {
     520        font-family: Consolas, Monaco, monospace;
     521}
     522
     523input.code {
     524        padding-top: 6px;
     525}
     526
     527textarea.code {
     528        line-height: 1.4;
     529        padding: 4px 6px 1px 6px;
     530}
     531
     532kbd,
     533code {
     534        padding: 3px 5px 2px 5px;
     535        margin: 0 1px;
     536        font-size: 13px;
     537}
     538
     539.subsubsub {
     540        list-style: none;
     541        margin: 8px 0 0;
     542        padding: 0;
     543        font-size: 13px;
     544        float: left;
     545}
     546
     547.subsubsub a {
     548        line-height: 2;
     549        padding: .2em;
     550        text-decoration: none;
     551}
     552
     553.subsubsub a .count,
     554.subsubsub a.current .count {
     555        color: #999;
     556        font-weight: normal;
     557}
     558
     559.subsubsub a.current {
     560        font-weight: 600;
     561        border: none;
     562}
     563
     564.subsubsub li {
     565        display: inline-block;
     566        margin: 0;
     567        padding: 0;
     568        white-space: nowrap;
     569}
     570
     571textarea,
     572input[type="text"],
     573input[type="password"],
     574input[type="email"],
     575input[type="number"],
     576input[type="search"],
     577input[type="tel"],
     578input[type="url"],
     579select,
     580.tablenav-pages span.current,
     581#titlediv #title,
     582#postcustomstuff table,
     583#postcustomstuff input,
     584#postcustomstuff textarea,
     585.imgedit-menu div,
     586.plugin-update-tr .update-message,
     587#poststuff .inside .the-tagcloud,
     588.nav-menus-php .list-container,
     589.menu-item-handle,
     590.link-to-original,
     591.nav-menus-php .major-publishing-actions .form-invalid,
     592#TB_window,
     593.tbtitle,
     594.highlight {
     595        border-width: 1px;
     596        border-style: solid;
     597}
     598
     599/* .widefat - main style for tables */
     600.widefat {
     601        border-spacing: 0;
     602        width: 100%;
     603        clear: both;
     604        margin: 0;
     605}
     606
     607.widefat * {
     608        word-wrap: break-word;
     609}
     610
     611.widefat a {
     612        text-decoration: none;
     613}
     614
     615.widefat td,
     616.widefat th {
     617        padding: 8px 10px;
     618}
     619.widefat tfoot th {
     620        border-bottom: none;
     621}
     622
     623.widefat .no-items td {
     624        border-bottom-width: 0;
     625}
     626
     627.widefat td {
     628        vertical-align: top;
     629}
     630
     631.widefat td,
     632.widefat td p,
     633.widefat td ol,
     634.widefat td ul {
     635        font-size: 13px;
     636        line-height: 1.5em;
     637}
     638
     639.widefat th {
     640        text-align: left;
     641        line-height: 1.3em;
     642        font-size: 14px;
     643}
     644
     645.widefat th input {
     646        margin: 0 0 0 8px;
     647        padding: 0;
     648        vertical-align: text-top;
     649}
     650
     651.widefat .check-column {
     652        width: 2.2em;
     653        padding: 6px 0 25px;
     654        vertical-align: top;
     655}
     656
     657.widefat th input[type=checkbox] {
     658        margin-top: -1px;
     659}
     660
     661.widefat tbody th.check-column {
     662        padding: 9px 0 22px;
     663}
     664
     665.widefat.media .check-column {
     666        padding-top: 8px;
     667}
     668
     669.widefat thead th.check-column,
     670.widefat tbody th.check-column,
     671.widefat tfoot th.check-column {
     672        padding: 11px 0 0 3px;
     673}
     674
     675.widefat thead th.check-column {
     676        padding-top: 10px;
     677}
     678
     679#update-plugins-table tbody th.check-column,
     680.plugins tbody th.check-column,
     681.plugins tbody {
     682        padding: 8px 0 0 2px;
     683}
     684
     685.plugins tbody th.check-column input[type=checkbox] {
     686        margin-top: 4px;
     687}
     688
     689#update-plugins-table tbody td p {
     690        margin-top: 0;
     691}
     692
     693#update-plugins-table tbody td p strong {
     694        font-size: 14px;
     695}
     696
     697.plugins thead th.check-column,
     698.plugins tfoot th.check-column,
     699.plugins .inactive th.check-column,
     700#update-plugins-table thead th.check-column,
     701#update-plugins-table tfoot th.check-column {
     702        padding-left: 6px;
     703}
     704
     705#update-plugins-table thead th.check-column,
     706#update-plugins-table tfoot th.check-column {
     707        padding-top: 11px;
     708}
     709
     710.update-php div.updated,
     711.update-php div.error {
     712        margin-left: 0;
     713}
     714
     715.no-js .widefat thead .check-column input,
     716.no-js .widefat tfoot .check-column input {
     717        display: none;
     718}
     719
     720.widefat .num,
     721.column-comments,
     722.column-links,
     723.column-posts {
     724        text-align: center;
     725}
     726
     727.widefat th#comments {
     728        vertical-align: middle;
     729}
     730
     731.wrap {
     732        margin: 10px 20px 0 2px;
     733}
     734
     735div.updated,
     736div.error {
     737        padding: 0 0.6em;
     738        margin: 5px 15px 2px;
     739}
     740
     741div.updated p,
     742div.error p {
     743        margin: 0.5em 0;
     744        padding: 2px;
     745}
     746
     747.wrap div.updated,
     748.wrap div.error,
     749.media-upload-form div.error {
     750        margin: 5px 0 15px;
     751}
     752
     753div.updated,
     754.login .message,
     755.press-this #message {
     756        border: none;
     757        padding: 1px 12px;
     758}
     759
     760div.error,
     761.login #login_error {
     762        border: none;
     763}
     764
     765div.error {
     766        padding: 1px 12px;
     767}
     768
     769.wrap h2,
     770.subtitle {
     771        font-weight: normal;
     772        margin: 0;
     773}
     774
     775.wrap h2 {
     776        font-size: 23px;
     777        font-weight: 400;
     778        padding: 9px 15px 4px 0;
     779        line-height: 29px;
     780}
     781
     782.subtitle {
     783        font-size: 14px;
     784        padding-left: 25px;
     785}
     786
     787.wrap .add-new-h2,
     788.wrap .add-new-h2:active {
     789        margin-left: 4px;
     790        padding: 4px 8px;
     791        position: relative;
     792        top: -3px;
     793        text-decoration: none;
     794        border: none;
     795        border-radius: 2px;
     796        text-shadow: none;
     797        font-weight: 600;
     798        font-size: 13px;
     799}
     800
     801.wrap h2.long-header {
     802        padding-right: 0;
     803}
     804
     805html,
     806.wp-dialog {
     807        background-color: #fff;
     808}
     809
     810textarea,
     811input[type="text"],
     812input[type="password"],
     813input[type="email"],
     814input[type="number"],
     815input[type="search"],
     816input[type="tel"],
     817input[type="url"],
     818select {
     819        background-color: #fff;
     820        color: #333;
     821}
     822
     823select[disabled] {
     824        color: #7f7f7f;
     825}
     826
     827select:focus {
     828        border-color: #aaa;
     829}
     830
     831textarea:focus,
     832input[type="text"]:focus,
     833input[type="password"]:focus,
     834input[type="email"]:focus,
     835input[type="number"]:focus,
     836input[type="search"]:focus,
     837input[type="tel"]:focus,
     838input[type="url"]:focus,
     839input[type="checkbox"]:focus,
     840input[type="radio"]:focus,
     841select:focus,
     842.widgets-chooser ul,
     843#widgets-left .widget-in-question .widget-top,
     844#available-widgets .widget-top:hover,
     845div#widgets-right .widget-top:hover {
     846        -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
     847        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
     848}
     849
     850input[readonly] {
     851        background-color: #eee;
     852}
     853
     854:-moz-placeholder,
     855.wp-core-ui :-moz-placeholder {
     856   color: #a9a9a9;
     857}
     858
  • src/wp-admin/css/wp-admin-customize_loader.css

    Property changes on: src/wp-admin/css/wp-admin-common.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  24.0 - Customize Loader
     3------------------------------------------------------------------------------*/
     4
     5.no-customize-support .hide-if-no-customize,
     6.customize-support .hide-if-customize,
     7.no-customize-support.wp-core-ui .hide-if-no-customize,
     8.no-customize-support .wp-core-ui .hide-if-no-customize,
     9.customize-support.wp-core-ui .hide-if-customize,
     10.customize-support .wp-core-ui .hide-if-customize {
     11        display: none;
     12}
     13
     14#customize-container {
     15        display: none;
     16        background: #fff;
     17        z-index: 500000;
     18        position: fixed;
     19        overflow: visible;
     20        top: 0;
     21        bottom: 0;
     22        left: 0;
     23        right: 0;
     24        height: 100%;
     25}
     26
     27.customize-active #customize-container {
     28        display: block;
     29}
     30
     31.customize-loading #customize-container iframe {
     32        opacity: 0;
     33}
     34
     35.customize-loading #customize-container {
     36        background: #fff url('../images/spinner.gif') no-repeat fixed center center;
     37        background-size: 20px 20px;
     38}
     39
     40#customize-container iframe,
     41#theme-installer iframe {
     42        height: 100%;
     43        width: 100%;
     44        z-index: 20;
     45
     46        -webkit-transition: opacity 0.3s;
     47        -moz-transition:    opacity 0.3s;
     48        -ms-transition:     opacity 0.3s;
     49        -o-transition:      opacity 0.3s;
     50        transition:         opacity 0.3s;
     51}
     52
     53#customize-container .collapse-sidebar {
     54        bottom: 16px;
     55}
     56
     57#customize-controls {
     58        margin-top: 0;
     59}
     60
     61#theme-installer {
     62        display: none;
     63}
     64
     65#theme-installer.single-theme {
     66        display: block;
     67}
     68
     69.install-theme-info {
     70        display: none;
     71        padding: 10px 20px 20px;
     72}
     73
     74.single-theme .install-theme-info {
     75        padding-top: 15px;
     76}
     77
     78#theme-installer .install-theme-info {
     79        display: block;
     80}
     81
     82.install-theme-info .theme-install {
     83        float: right;
     84        margin-top: 18px;
     85}
     86
     87.install-theme-info .theme-name {
     88        font-size: 16px;
     89        line-height: 24px;
     90        margin-bottom: 0;
     91        margin-top: 0;
     92}
     93
     94.install-theme-info .theme-screenshot {
     95        margin-top: 15px;
     96        width: 258px;
     97        border: 1px solid #ccc;
     98}
     99
     100.install-theme-info .theme-details {
     101        overflow: hidden;
     102}
     103
     104.theme-details .theme-version {
     105        margin: 15px 0;
     106        float: left;
     107}
     108
     109.theme-details .star-rating {
     110        margin: 7px 0;
     111        float: right;
     112}
     113
     114.theme-details .theme-description {
     115        float: left;
     116        color: #777;
     117        line-height: 20px;
     118}
     119
     120#theme-installer .wp-full-overlay-header {
     121        margin-top: 9px;
     122}
     123
     124#theme-installer .wp-full-overlay-header .theme-install {
     125        float: right;
     126        /* For when .theme-install is a span rather than a.button-primary (already installed theme) */
     127        line-height: 26px;
     128}
     129
     130#theme-installer .wp-full-overlay-sidebar {
     131        background: #EEE;
     132        border-right: 1px solid #DDD;
     133}
     134
     135#theme-installer .wp-full-overlay-main {
     136        background: #fff url('../images/spinner.gif') no-repeat fixed center center;
     137        background-size: 20px 20px;
     138}
     139
     140
  • src/wp-admin/css/wp-admin-dashboard.css

    Property changes on: src/wp-admin/css/wp-admin-customize_loader.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  9.0 - Dashboard
     3------------------------------------------------------------------------------*/
     4
     5#dashboard-widgets-wrap {
     6        margin: 0 -8px;
     7}
     8
     9#wpbody-content .metabox-holder {
     10        padding-top: 10px;
     11}
     12
     13#dashboard-widgets .meta-box-sortables {
     14        margin: 0 8px;
     15        min-height: 100px;
     16}
     17
     18#the-comment-list td.comment p.comment-author {
     19        margin-top: 0;
     20        margin-left: 0;
     21}
     22
     23#the-comment-list p.comment-author img {
     24        float: left;
     25        margin-right: 8px;
     26}
     27
     28#the-comment-list p.comment-author strong a {
     29        border: none;
     30}
     31
     32#the-comment-list td {
     33        vertical-align: top;
     34}
     35
     36#the-comment-list td.comment {
     37        word-wrap: break-word;
     38}
     39
     40/* Welcome Panel */
     41.welcome-panel {
     42        position: relative;
     43        overflow: auto;
     44        margin: 16px 0;
     45        padding: 23px 10px 0;
     46        font-size: 13px;
     47        line-height: 2.1em;
     48}
     49
     50.welcome-panel h3 {
     51        margin: 0;
     52        font-size: 21px;
     53        font-weight: normal;
     54        line-height: 1.2;
     55}
     56
     57.welcome-panel h4 {
     58        margin: 1.33em 0 0;
     59        font-size: 16px;
     60}
     61
     62.welcome-panel li {
     63        font-size: 14px;
     64}
     65
     66.welcome-panel .about-description {
     67        font-size: 16px;
     68        margin: 0;
     69}
     70
     71.welcome-panel .welcome-panel-close {
     72        position: absolute;
     73        top: 5px;
     74        right: 10px;
     75        padding: 20px 15px 0 3px;
     76        font-size: 13px;
     77        text-decoration: none;
     78        line-height: 1;
     79}
     80
     81#welcome-panel.welcome-panel .welcome-panel-close::before,
     82.tagchecklist span a:before,
     83#bulk-titles div a:before {
     84        content: '\f153';
     85        display: block !important;
     86        font: normal 16px/1 'dashicons';
     87        speak: none;
     88        height: 20px;
     89        margin: 2px 0;
     90        text-align: center;
     91        width: 20px;
     92        -webkit-font-smoothing: antialiased !important;
     93}
     94
     95#welcome-panel.welcome-panel .welcome-panel-close::before {
     96        position: absolute;
     97        left: -18px;
     98        margin-top: -2px;
     99        -webkit-transition: all .1s ease-in-out;
     100        -moz-transition:    all .1s ease-in-out;
     101        transition:         all .1s ease-in-out;
     102}
     103
     104.wp-core-ui .welcome-panel .button.button-hero {
     105        margin: 15px 0 3px;
     106}
     107
     108.welcome-panel-content {
     109        margin-left: 13px;
     110        max-width: 1500px;
     111}
     112
     113.welcome-panel .welcome-panel-column-container {
     114        clear: both;
     115        overflow: hidden;
     116        position: relative;
     117}
     118
     119.welcome-panel .welcome-panel-column {
     120        width: 32%;
     121        min-width: 200px;
     122        float: left;
     123}
     124
     125.ie8 .welcome-panel .welcome-panel-column {
     126        min-width: 230px;
     127}
     128
     129.welcome-panel .welcome-panel-column:first-child {
     130        width: 36%;
     131}
     132
     133.welcome-panel-column p.hide-if-no-customize {
     134        margin-top: 10px;
     135}
     136
     137.welcome-panel-column p {
     138        margin-top: 7px;
     139}
     140
     141.welcome-panel .welcome-icon {
     142        display: block;
     143        padding: 0 0 8px;
     144        background: transparent !important;
     145}
     146
     147.welcome-panel .welcome-icon:before {
     148        font: normal 20px/1 'dashicons';
     149        speak: none;
     150        display: inline-block;
     151        padding: 0 10px 0 0;
     152        top: -1px;
     153        position: relative;
     154        -webkit-font-smoothing: antialiased;
     155        -moz-osx-font-smoothing: grayscale;
     156        text-decoration: none !important;
     157        vertical-align: top;
     158}
     159
     160.welcome-panel .welcome-write-blog:before,
     161.welcome-panel .welcome-edit-page:before {
     162        content:'\f119';
     163        top: -3px;
     164}
     165
     166.welcome-panel .welcome-add-page:before {
     167        content:'\f132';
     168}
     169
     170.welcome-panel .welcome-view-site:before {
     171        content:'\f115';
     172        top: -2px;
     173}
     174
     175.welcome-panel .welcome-widgets-menus:before {
     176        content:'\f116';
     177        top: -2px;
     178}
     179
     180.welcome-panel .welcome-comments:before {
     181        content:'\f117';
     182        top: -1px;
     183}
     184
     185.welcome-panel .welcome-learn-more:before {
     186        content:'\f118';
     187        top: -1px;
     188}
     189
     190.welcome-panel .welcome-widgets-menus {
     191        line-height: 16px;
     192}
     193
     194.welcome-panel .welcome-panel-column ul {
     195        margin: 0.8em 1em 1em 0;
     196}
     197
     198.welcome-panel .welcome-panel-column li {
     199        line-height: 16px;
     200        list-style-type: none;
     201}
     202
     203/* Dashboard WordPress news */
     204
     205#dashboard_primary .inside {
     206        margin: 0;
     207        padding: 0;
     208}
     209
     210#dashboard_primary .widget-loading,
     211#dashboard_primary .dashboard-widget-control-form {
     212        padding: 12px 12px 0;
     213}
     214
     215body #dashboard-widgets .postbox form .submit {
     216        margin: 0;
     217}
     218
     219.dashboard-widget-control-form {
     220        overflow: hidden;
     221}
     222
     223.dashboard-widget-control-form p {
     224        margin-top: 0;
     225}
     226
     227.rssSummary {
     228        color: #777;
     229        margin-top: 4px;
     230}
     231
     232#dashboard_primary .rss-widget {
     233        border-bottom: 1px solid #eee;
     234        font-size: 13px;
     235        padding: 8px 12px 10px;
     236}
     237
     238#dashboard_primary .rss-widget:last-child {
     239        border-bottom: none;
     240        padding-bottom: 8px;
     241}
     242
     243#dashboard_primary .rss-widget a {
     244        font-weight: normal;
     245}
     246
     247#dashboard_primary .rss-widget span,
     248#dashboard_primary .rss-widget span.rss-date {
     249        color: #777;
     250}
     251
     252#dashboard_primary .rss-widget span.rss-date {
     253        margin-left: 12px;
     254}
     255
     256#dashboard_primary .rss-widget ul li {
     257        margin-bottom: 8px;
     258}
     259
     260/* Dashboard right now */
     261
     262#dashboard_right_now ul {
     263        margin: 0;
     264        overflow: hidden;
     265}
     266
     267#dashboard_right_now li {
     268        width: 50%;
     269        float: left;
     270        margin-bottom: 10px;
     271}
     272
     273#dashboard_right_now .inside {
     274        overflow: hidden;
     275        padding: 0;
     276}
     277
     278#dashboard_right_now .main {
     279        padding: 0 12px 11px;
     280}
     281
     282#dashboard_right_now .main p {
     283        margin: 0;
     284}
     285
     286.mu-storage {
     287        overflow: hidden;
     288}
     289
     290#dashboard-widgets h4.mu-storage {
     291        margin-bottom: 10px;
     292}
     293
     294/* Dashboard right now - Colors */
     295
     296#dashboard_right_now li a:before {
     297        color: #888;
     298}
     299
     300#dashboard_right_now .sub {
     301        color: #777;
     302        background: #f5f5f5;
     303        border-top: 1px solid #eee;
     304        padding: 10px 12px 6px 12px;
     305}
     306
     307#dashboard_right_now .sub h4 {
     308        color: #555;
     309}
     310
     311#dashboard_right_now .sub p {
     312        margin: 0 0 1em;
     313}
     314
     315#dashboard_right_now .warning a:before {
     316        color: #d54e21;
     317}
     318
     319/* Dashboard right now - Icons */
     320#dashboard_right_now li a:before {
     321        content: '\f159';
     322        font: normal 20px/1 'dashicons';
     323        speak: none;
     324        display: block;
     325        float: left;
     326        margin: 0 5px 0 0;
     327        padding: 0;
     328        text-indent: 0;
     329        text-align: center;
     330        position: relative;
     331        -webkit-font-smoothing: antialiased;
     332        text-decoration: none !important;
     333}
     334
     335#dashboard_right_now .page-count a:before {
     336        content: '\f105';
     337}
     338
     339#dashboard_right_now .post-count a:before {
     340        content: '\f109';
     341}
     342
     343#dashboard_right_now .comment-count a:before {
     344        content: '\f101';
     345}
     346
     347#dashboard_right_now .comment-mod-count a:before {
     348        content: '\f125';
     349}
     350
     351#dashboard_right_now .storage-count a:before {
     352        content: '\f104';
     353}
     354
     355#dashboard_right_now .storage-count.warning a:before {
     356        content: '\f153';
     357}
     358
     359/* Dashboard Quick Draft */
     360
     361#dashboard_quick_press .inside {
     362        margin: 0;
     363        padding: 0;
     364}
     365
     366#dashboard_quick_press div.updated {
     367        margin-bottom: 10px;
     368        border: 1px solid #eee;
     369        border-width: 1px 1px 1px 0;
     370}
     371
     372#dashboard_quick_press form {
     373        overflow: hidden;
     374        margin: 12px;
     375}
     376
     377#dashboard_quick_press .drafts,
     378#dashboard_quick_press .easy-blogging {
     379        padding: 10px 0 0;
     380}
     381
     382/* Dashboard Quick Draft - Form styling */
     383
     384input#save-post {
     385        float: left;
     386}
     387
     388form.initial-form.quickpress-open label.prompt {
     389        font-style: normal;
     390}
     391
     392form.initial-form.quickpress-open input#title {
     393        height: auto;
     394}
     395
     396#dashboard_quick_press input,
     397#dashboard_quick_press textarea {
     398        box-sizing: border-box;
     399        -moz-box-sizing:border-box;
     400        -webkit-box-sizing:border-box;
     401        margin: 0;
     402}
     403
     404#dashboard_quick_press textarea {
     405        resize: vertical;
     406}
     407
     408#dashboard-widgets .postbox form .submit {
     409        margin: -39px 0;
     410        float: right;
     411}
     412
     413#description-wrap {
     414        margin-top: 12px;
     415}
     416
     417#title-wrap #title-prompt-text,
     418.textarea-wrap #content-prompt-text {
     419        color: #777;
     420}
     421
     422#title-wrap #title-prompt-text {
     423        font-size: 1.1em;
     424        padding: 7px 8px;
     425}
     426
     427.input-text-wrap,
     428.textarea-wrap {
     429        position: relative;
     430}
     431
     432.input-text-wrap .prompt,
     433.textarea-wrap .prompt {
     434        position: absolute;
     435}
     436
     437.textarea-wrap #content-prompt-text {
     438        font-size: 1.1em;
     439        padding: 7px 8px;
     440}
     441
     442.textarea-wrap textarea#content {
     443        margin: 0 0 8px;
     444        padding: 6px 7px;
     445}
     446
     447#quick-press textarea#content {
     448        min-height: 90px;
     449        max-height: 1300px;
     450        resize: none;
     451}
     452
     453/* Dashboard Quick Draft - Drafts list */
     454
     455.js #dashboard_quick_press .drafts {
     456        border-top: 1px solid #eee;
     457}
     458
     459#dashboard_quick_press .drafts abbr {
     460        border: none;
     461}
     462
     463#dashboard_quick_press .drafts h4 {
     464        margin: 0 12px 8px;
     465        font-weight: normal;
     466}
     467
     468#dashboard_quick_press .drafts .view-all {
     469        float: right;
     470        margin: 0 12px 0 0;
     471}
     472
     473#dashboard_primary a.rsswidget {
     474        font-weight: normal;
     475}
     476
     477#dashboard_quick_press .drafts ul {
     478        margin: 0 12px;
     479}
     480
     481#dashboard_quick_press .drafts li {
     482        margin-bottom: 1em;
     483}
     484#dashboard_quick_press .drafts li time {
     485        color: #777;
     486}
     487
     488#dashboard_quick_press .drafts p {
     489        margin: 0;
     490}
     491
     492#dashboard_quick_press .draft-title {
     493        overflow: hidden;
     494}
     495
     496#dashboard_quick_press .draft-title a,
     497#dashboard_quick_press .draft-title time {
     498        float: left;
     499        margin: 0 5px 0 0;
     500}
     501
     502/* Dashboard activity widget */
     503
     504#dashboard-widgets #dashboard_activity h4 {
     505        margin: 0 0 8px 12px;
     506        font-weight: normal;
     507}
     508
     509#dashboard-widgets #dashboard_activity h4.comment-meta {
     510        margin: 0;
     511}
     512
     513#dashboard_activity h4.comment-meta {
     514        overflow: hidden;
     515        text-overflow: ellipsis;
     516        white-space: nowrap;
     517        margin-bottom: 4px;
     518}
     519
     520#dashboard_activity ul {
     521        padding: 0 12px;
     522}
     523
     524#dashboard_activity .comment-meta span.approve:before {
     525        content: '\f227';
     526        font: 20px/.5 "dashicons";
     527        margin-left: 12px;
     528        vertical-align: middle;
     529        position: relative;
     530        top: -1px;
     531        margin-right: 2px;
     532}
     533
     534#dashboard_activity .inside {
     535        padding: 0;
     536        margin: 0;
     537}
     538
     539#dashboard_activity .no-activity {
     540        overflow: hidden;
     541        padding: 0 12px 12px;
     542        text-align: center;
     543}
     544
     545#dashboard_activity .no-activity p {
     546        color: #999;
     547        font-size: 16px;
     548}
     549
     550#dashboard_activity .no-activity .smiley {
     551        margin-top: 0;
     552}
     553
     554#dashboard_activity .no-activity .smiley:before {
     555        content: '\f328';
     556        font: normal 120px/1 'dashicons';
     557        speak: none;
     558        display: block;
     559        margin: 0 5px 0 0;
     560        padding: 0;
     561        text-indent: 0;
     562        text-align: center;
     563        position: relative;
     564        -webkit-font-smoothing: antialiased;
     565        text-decoration: none !important;
     566}
     567
     568#dashboard_activity .subsubsub {
     569        float: none;
     570        border-top: 1px solid #eeeeee;
     571        margin-top: 0;
     572        padding: 8px 12px 4px;
     573}
     574
     575#future-posts .show-more,
     576#published-posts .show-more {
     577        float: right;
     578        margin-right: 12px;
     579}
     580
     581#future-posts ul,
     582#published-posts ul {
     583        clear: both;
     584        margin-bottom: 0;
     585}
     586
     587#future-posts li,
     588#published-posts li {
     589        overflow: hidden;
     590        margin-bottom: 8px;
     591}
     592
     593#future-posts ul span,
     594#published-posts ul span {
     595        color: #777;
     596        float: left;
     597        margin-right: 8px;
     598        min-width: 150px;
     599}
     600
     601.activity-block {
     602        border-bottom: 1px solid #eee;
     603        overflow: hidden;
     604        padding: 8px 0 4px;
     605}
     606
     607.activity-block:last-child {
     608        border-bottom: none;
     609}
     610
     611.activity-block .subsubsub li {
     612        color: #ddd;
     613}
     614
     615/* Dashboard activity widget - Comments */
     616
     617#activity-widget #the-comment-list tr.undo,
     618#activity-widget #the-comment-list div.undo {
     619        background: none;
     620        padding: 6px 0;
     621}
     622
     623#activity-widget #the-comment-list .alternate,
     624#activity-widget #the-comment-list .alt {
     625        background: none;
     626}
     627
     628#activity-widget #the-comment-list .comment {
     629        background: #fafafa;
     630        padding: 12px;
     631        position: relative;
     632}
     633
     634#activity-widget #the-comment-list img {
     635        position: absolute;
     636        left: 13px;
     637        top: 13px;
     638}
     639
     640#activity-widget #the-comment-list .dashboard-comment-wrap {
     641        padding-left: 63px;
     642}
     643
     644#activity-widget #the-comment-list .dashboard-comment-wrap blockquote {
     645        margin: 1em 0;
     646}
     647
     648#activity-widget #the-comment-list .comment-item h4 {
     649        font-size: 13px;
     650        color: #999;
     651}
     652
     653#activity-widget #the-comment-list .comment-item p.row-actions {
     654        margin: 4px 0 0 0;
     655}
     656
     657#activity-widget #the-comment-list .comment-item:first-child {
     658        border-top: 1px solid #eeeeee;
     659}
     660
     661#activity-widget #the-comment-list .unapproved:before {
     662        content: "";
     663        display: block;
     664        position: absolute;
     665        left: 0;
     666        top: 0;
     667        bottom: 0;
     668        background: #d54e21;
     669        width: 4px;
     670}
     671
     672#activity-widget #the-comment-list .spam-undo-inside .avatar,
     673#activity-widget #the-comment-list .trash-undo-inside .avatar {
     674        margin-right: 20px;
     675        position: relative;
     676        top: 0;
     677}
     678
     679/* Browse happy box */
     680
     681#dashboard-widgets #dashboard_browser_nag.postbox .inside {
     682        margin: 10px;
     683}
     684
     685@media screen and (max-width: 870px) {
     686        .welcome-panel .welcome-panel-column,
     687        .welcome-panel .welcome-panel-column:first-child {
     688                display: block;
     689                float: none;
     690                width: 100%;
     691        }
     692
     693        .welcome-panel .welcome-panel-column li {
     694                display: inline-block;
     695                margin-right: 13px;
     696        }
     697
     698        .welcome-panel .welcome-panel-column ul {
     699                margin: 0.4em 0 0;
     700        }
     701
     702}
     703
  • src/wp-admin/css/wp-admin-edit.css

    Property changes on: src/wp-admin/css/wp-admin-dashboard.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  11.0 - Write/Edit Post Screen
     3------------------------------------------------------------------------------*/
     4
     5#show-comments {
     6        overflow: hidden;
     7}
     8
     9#save-action .spinner,
     10#show-comments a,
     11#show-comments .spinner {
     12        float: left;
     13}
     14
     15#lost-connection-notice .spinner {
     16        display: block;
     17        float: left;
     18        margin: 0 5px 0 0;
     19}
     20
     21#titlediv {
     22        position: relative;
     23        margin-bottom: 10px;
     24}
     25
     26#titlediv label {
     27        cursor: text;
     28}
     29
     30#titlediv div.inside {
     31        margin: 0;
     32}
     33
     34#poststuff #titlewrap {
     35        border: 0;
     36        padding: 0;
     37}
     38
     39#titlediv #title {
     40        padding: 3px 8px;
     41        font-size: 1.7em;
     42        line-height: 100%;
     43        height: 1.7em;
     44        width: 100%;
     45        outline: none;
     46        margin: 0;
     47}
     48
     49#titlediv #title-prompt-text,
     50#wp-fullscreen-title-prompt-text {
     51        color: #777;
     52        position: absolute;
     53        font-size: 1.7em;
     54        padding: 11px 10px;
     55}
     56
     57#wp-fullscreen-save .fs-saved {
     58        color: #999;
     59        float: right;
     60        margin-top: 4px;
     61}
     62
     63#wp-fullscreen-title-prompt-text {
     64        padding: 11px;
     65}
     66
     67#poststuff .inside-submitbox,
     68#side-sortables .inside-submitbox {
     69        margin: 0 3px;
     70        font-size: 11px;
     71}
     72
     73input#link_description,
     74input#link_url {
     75        width: 98%;
     76}
     77
     78#pending {
     79        background: 0 none;
     80        border: 0 none;
     81        padding: 0;
     82        font-size: 11px;
     83        margin-top: -1px;
     84}
     85
     86#edit-slug-box {
     87        line-height: 24px;
     88        min-height: 25px; /* Yes, line-height + 1 */
     89        margin-top: 5px;
     90        padding: 0 10px;
     91}
     92
     93#edit-slug-box .cancel {
     94        margin-right: 10px;
     95        font-size: 11px;
     96}
     97
     98#editable-post-name-full {
     99        display: none;
     100}
     101
     102#editable-post-name input {
     103        font-size: 13px;
     104        height: 22px;
     105        margin: 0;
     106        width: 16em;
     107}
     108
     109.postarea h3 label {
     110        float: left;
     111}
     112
     113.submitbox .submit {
     114        text-align: left;
     115        padding: 12px 10px 10px;
     116        font-size: 11px;
     117}
     118
     119.submitbox .submitdelete {
     120        text-decoration: none;
     121        padding: 1px 2px;
     122}
     123
     124.submitbox .submit a:hover {
     125        text-decoration: underline;
     126}
     127
     128.submitbox .submit input {
     129        margin-bottom: 8px;
     130        margin-right: 4px;
     131        padding: 6px;
     132}
     133
     134.inside-submitbox #post_status {
     135        margin: 2px 0 2px -2px;
     136}
     137
     138#post-status-select {
     139        margin-top: 3px;
     140}
     141
     142/* Post Screen */
     143#post-body #normal-sortables {
     144        min-height: 50px;
     145}
     146
     147.postbox {
     148        position: relative;
     149        min-width: 255px;
     150}
     151
     152#trackback_url {
     153        width: 99%;
     154}
     155
     156#normal-sortables .postbox .submit {
     157        background: transparent none;
     158        border: 0 none;
     159        float: right;
     160        padding: 0 12px;
     161        margin:0;
     162}
     163
     164.category-add input[type="text"],
     165.category-add select {
     166        width: 100%;
     167        max-width: 260px;
     168        vertical-align: baseline;
     169}
     170
     171#side-sortables .category-add input[type="text"],
     172#side-sortables .category-add select {
     173        margin: 0 0 1em;
     174}
     175
     176.press-this #side-sortables .category-tabs li,
     177ul.category-tabs li,
     178#side-sortables .add-menu-item-tabs li,
     179.wp-tab-bar li {
     180        display: inline;
     181        line-height: 1.35em;
     182}
     183
     184.no-js .category-tabs li.hide-if-no-js {
     185        display: none;
     186}
     187
     188.category-tabs a,
     189#side-sortables .add-menu-item-tabs a,
     190.wp-tab-bar a {
     191        text-decoration: none;
     192}
     193
     194.category-tabs {
     195        margin: 8px 0 5px;
     196}
     197
     198#category-adder h4 {
     199        margin: 10px 0;
     200}
     201
     202#side-sortables .add-menu-item-tabs,
     203.wp-tab-bar {
     204        margin-bottom: 3px;
     205}
     206
     207#normal-sortables .postbox #replyrow .submit {
     208        float: none;
     209        margin: 0;
     210        padding: 0 7px 5px;
     211}
     212
     213#side-sortables .submitbox .submit input,
     214#side-sortables .submitbox .submit .preview,
     215#side-sortables .submitbox .submit a.preview:hover {
     216        border: 0 none;
     217}
     218
     219#side-sortables .inside-submitbox .insidebox,
     220.stuffbox .insidebox {
     221        margin: 11px 0;
     222}
     223
     224ul.category-tabs,
     225ul.add-menu-item-tabs,
     226ul.wp-tab-bar {
     227        margin-top: 12px;
     228}
     229
     230ul.category-tabs li {
     231        border-style: solid;
     232        border-width: 1px;
     233        position: relative;
     234}
     235
     236ul.add-menu-item-tabs li.tabs,
     237.wp-tab-active {
     238        border-style: solid solid none;
     239        border-width: 1px 1px 0;
     240}
     241
     242ul.add-menu-item-tabs li.tabs {
     243        padding-bottom: 3px;
     244        position: relative;
     245}
     246
     247#post-body .add-menu-item-tabs li.tabs {
     248        border-style: solid none solid solid;
     249        border-width: 1px 0 1px 1px;
     250        margin-right: -1px;
     251}
     252
     253ul.category-tabs li,
     254ul.add-menu-item-tabs li,
     255ul.wp-tab-bar li {
     256        padding: 3px 5px 5px;
     257}
     258
     259#postimagediv .inside img {
     260        max-width: 100%;
     261        height: auto;
     262}
     263
     264form#tags-filter {
     265        position: relative;
     266}
     267
     268/* Edit posts */
     269td.post-title strong,
     270td.plugin-title strong {
     271        display: block;
     272        margin-bottom: .2em;
     273        font-size: 14px;
     274}
     275
     276td.post-title p,
     277td.plugin-title p {
     278        margin: 6px 0;
     279}
     280
     281/* Global classes */
     282.wp-hidden-children .wp-hidden-child,
     283.ui-tabs-hide {
     284        display: none;
     285}
     286
     287.commentlist .avatar {
     288        vertical-align: text-top;
     289}
     290
     291#post-body .tagsdiv #newtag {
     292        margin-right: 5px;
     293        width: 16em;
     294}
     295
     296#side-sortables input#post_password {
     297        width: 94%
     298}
     299
     300#side-sortables .tagsdiv #newtag {
     301        width: 68%;
     302}
     303
     304#post-status-info {
     305        width: 100%;
     306}
     307
     308#post-status-info td {
     309        font-size: 12px;
     310}
     311
     312.autosave-info {
     313        padding: 2px 15px;
     314        text-align: right;
     315}
     316
     317#editorcontent #post-status-info {
     318        border: none;
     319}
     320
     321#content-resize-handle,
     322#post-body .wp_themeSkin .mceStatusbar a.mceResize {
     323        background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
     324        width: 12px;
     325        height: 12px;
     326        cursor: se-resize;
     327}
     328
     329.rtl #content-resize-handle,
     330.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
     331        background: transparent url('../images/resize-rtl.gif') no-repeat scroll right bottom;
     332}
     333
     334#post-body .wp_themeSkin .mceStatusbar a.mceResize {
     335        bottom: 3px;
     336        position: absolute;
     337        right: 3px;
     338}
     339
     340#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
     341        bottom: -20px;
     342}
     343
     344#content-resize-handle {
     345        position: absolute;
     346        right: 3px;
     347        bottom: -20px;
     348}
     349
     350.press-this #content-resize-handle {
     351        bottom: 2px;
     352}
     353
     354.tmce-active #content-resize-handle {
     355        display: none;
     356}
     357
     358#wp-word-count {
     359        display: block;
     360        padding: 2px 10px;
     361}
     362
     363#timestampdiv select {
     364        height: 21px;
     365        line-height: 14px;
     366        padding: 0;
     367        vertical-align: top;
     368        font-size: 12px;
     369}
     370
     371#aa, #jj, #hh, #mn {
     372        padding: 1px;
     373        font-size: 12px;
     374}
     375
     376#jj, #hh, #mn {
     377        width: 2em;
     378}
     379
     380#aa {
     381        width: 3.4em;
     382}
     383
     384.curtime #timestamp {
     385        padding: 2px 0 1px 0;
     386        display: inline !important;
     387        height: auto !important;
     388}
     389
     390#post-body #visibility:before,
     391.curtime #timestamp:before,
     392#post-body .misc-pub-revisions:before {
     393        font: normal 20px/1 'dashicons';
     394        speak: none;
     395        display: inline-block;
     396        padding: 0 2px 0 0;
     397        top: 0;
     398        left: -1px;
     399        position: relative;
     400        vertical-align: top;
     401        -webkit-font-smoothing: antialiased;
     402        -moz-osx-font-smoothing: grayscale;
     403        text-decoration: none !important;
     404}
     405
     406#post-body #visibility:before {
     407        content: '\f177';
     408}
     409
     410.curtime #timestamp:before {
     411        content: '\f145';
     412        top: -1px;
     413}
     414
     415#post-body .misc-pub-revisions:before {
     416        content: '\f321';
     417}
     418
     419#timestampdiv {
     420        padding-top: 5px;
     421        line-height: 23px;
     422}
     423
     424#timestampdiv p {
     425        margin: 8px 0 6px;
     426}
     427
     428#timestampdiv input {
     429        border-width: 1px;
     430        border-style: solid;
     431}
     432
     433.notification-dialog {
     434        position: fixed;
     435        top: 30%;
     436        left: 50%;
     437        width: 450px;
     438        margin-left: -225px;
     439        background: #fff;
     440        line-height: 1.5;
     441        z-index: 1000005;
     442}
     443
     444.notification-dialog-background {
     445        position: fixed;
     446        top: 0;
     447        left: 0;
     448        right: 0;
     449        bottom: 0;
     450        background: #000;
     451        opacity: 0.5;
     452        filter: alpha(opacity=50);
     453        z-index: 1000000;
     454}
     455
     456#post-lock-dialog .post-locked-message,
     457#post-lock-dialog .post-taken-over {
     458        margin: 25px;
     459}
     460
     461#post-lock-dialog .post-locked-message a.button {
     462        margin-right: 10px;
     463}
     464
     465#post-lock-dialog .post-locked-avatar {
     466        float: left;
     467        margin: 0 20px 20px 0;
     468}
     469
     470#post-lock-dialog .wp-tab-first {
     471        outline: 0;
     472}
     473
     474#post-lock-dialog .locked-saving img {
     475        float: left;
     476        margin-right: 3px;
     477}
     478
     479#post-lock-dialog.saving .locked-saving,
     480#post-lock-dialog.saved .locked-saved {
     481        display: inline;
     482}
     483
     484/*------------------------------------------------------------------------------
     485  11.1 - Custom Fields
     486------------------------------------------------------------------------------*/
     487
     488#postcustomstuff thead th {
     489        padding: 5px 8px 8px;
     490}
     491
     492#postcustom #postcustomstuff .submit {
     493        border: 0 none;
     494        float: none;
     495        padding: 0 8px 8px;
     496}
     497
     498#side-sortables #postcustom #postcustomstuff .submit {
     499        margin: 0;
     500        padding: 0;
     501}
     502
     503#side-sortables #postcustom #postcustomstuff #the-list textarea {
     504        height: 85px;
     505}
     506
     507#side-sortables #postcustom #postcustomstuff td.left input,
     508#side-sortables #postcustom #postcustomstuff td.left select,
     509#side-sortables #postcustomstuff #newmetaleft a {
     510        margin: 3px 3px 0;
     511}
     512
     513#postcustomstuff table {
     514        margin: 0;
     515        width: 100%;
     516        border-width: 1px;
     517        border-style: solid;
     518        border-spacing: 0;
     519}
     520
     521#postcustomstuff tr {
     522        vertical-align: top;
     523}
     524
     525#postcustomstuff table input,
     526#postcustomstuff table select,
     527#postcustomstuff table textarea {
     528        width: 96%;
     529        margin: 8px;
     530}
     531
     532#side-sortables #postcustomstuff table input,
     533#side-sortables #postcustomstuff table select,
     534#side-sortables #postcustomstuff table textarea {
     535        margin: 3px;
     536}
     537
     538#postcustomstuff th.left,
     539#postcustomstuff td.left {
     540        width: 38%;
     541}
     542
     543#postcustomstuff .submit input {
     544        margin: 0;
     545        width: auto;
     546}
     547
     548#postcustomstuff #newmetaleft a {
     549        display: inline-block;
     550        margin: 0 8px 8px;
     551        text-decoration: none;
     552}
     553
     554.no-js #postcustomstuff #enternew {
     555        display: none;
     556}
     557
     558#post-body-content .compat-attachment-fields {
     559        margin-bottom: 20px;
     560}
     561
     562.compat-attachment-fields th {
     563        padding-top: 5px;
     564        padding-right: 10px;
     565}
     566
     567/*------------------------------------------------------------------------------
     568  11.2 - Post Revisions
     569------------------------------------------------------------------------------*/
     570.revisions-control-frame,
     571.revisions-diff-frame {
     572        position: relative;
     573}
     574
     575.revisions-controls {
     576        padding-top: 40px;
     577        height: 100px;
     578        z-index: 1;
     579}
     580
     581.revisions-controls input[type="checkbox"] {
     582        position: relative;
     583        top: -1px;
     584        vertical-align: text-bottom;
     585}
     586
     587.revisions.pinned .revisions-controls {
     588        position: fixed;
     589        top: 0;
     590        height: 82px;
     591}
     592
     593.revisions-tickmarks {
     594        position: relative;
     595        margin: 0 auto;
     596        height: 0.7em;
     597        top: 7px;
     598        max-width: 70%;
     599        -moz-box-sizing: border-box;
     600        -webkit-box-sizing: border-box;
     601        box-sizing: border-box;
     602}
     603
     604.revisions-tickmarks > div {
     605        position: absolute;
     606        height: 100%;
     607        border-style: solid;
     608        border-width: 0 1px 0 0;
     609        -moz-box-sizing: border-box;
     610        -webkit-box-sizing: border-box;
     611        box-sizing: border-box;
     612}
     613
     614.revisions-tickmarks > div:first-child {
     615        border-width: 0;
     616}
     617
     618.comparing-two-revisions .revisions-controls {
     619        height: 140px;
     620}
     621
     622.comparing-two-revisions.pinned .revisions-controls {
     623        height: 124px;
     624}
     625
     626.revisions .diff-error {
     627        position: absolute;
     628        text-align: center;
     629        margin: 0 auto;
     630        width: 100%;
     631        display: none;
     632}
     633
     634.revisions.diff-error .diff-error {
     635        display: block;
     636}
     637
     638.revisions .loading-indicator {
     639        position: fixed;
     640        vertical-align: middle;
     641        opacity: 0;
     642        width: 100%;
     643        top: 50%;
     644        margin-left: -90px;
     645        -webkit-transition: opacity 0.5s;
     646        -moz-transition:    opacity 0.5s;
     647        -ms-transition:     opacity 0.5s;
     648        -o-transition:      opacity 0.5s;
     649        transition:         opacity 0.5s;
     650        filter: alpha(opacity=0); /* ie8 and earlier */
     651}
     652
     653body.folded .revisions .loading-indicator {
     654        margin-left: -32px;
     655}
     656
     657.revisions .loading-indicator span.spinner {
     658        display: block;
     659        margin: 0 auto;
     660        float: none;
     661}
     662
     663.revisions.loading .loading-indicator {
     664        opacity: 1;
     665        filter: alpha(opacity=100); /* ie8 and earlier */
     666}
     667
     668.revisions .diff {
     669        -webkit-transition: opacity 0.5s;
     670        -moz-transition:    opacity 0.5s;
     671        -ms-transition:     opacity 0.5s;
     672        -o-transition:      opacity 0.5s;
     673        transition:         opacity 0.5s;
     674}
     675
     676.revisions.loading .diff {
     677        opacity: 0.5;
     678        filter: alpha(opacity=50); /* ie8 and earlier */
     679}
     680
     681.revisions.diff-error .diff {
     682        visibility: hidden;
     683}
     684
     685.revisions-meta {
     686        margin-top: 20px;
     687}
     688
     689.revision-toggle-compare-mode {
     690        position: absolute;
     691        top: 0;
     692        right: 0;
     693}
     694
     695.comparing-two-revisions .revisions-previous,
     696.comparing-two-revisions .revisions-next,
     697.revisions-meta .diff-meta-to strong {
     698        display: none;
     699}
     700
     701.revisions-controls .author-card .date {
     702        color: #777;
     703}
     704
     705.revisions-controls .author-card.autosave {
     706        color: #d54e21;
     707}
     708
     709.revisions-controls .author-card .author-name {
     710        font-weight: bold;
     711}
     712
     713.comparing-two-revisions .diff-meta-to strong {
     714        display: block;
     715}
     716
     717.revisions.pinned .revisions-buttons {
     718        padding: 0 11px;
     719}
     720
     721.revisions-previous,
     722.revisions-next {
     723        position: relative;
     724        z-index: 1;
     725}
     726
     727.revisions-previous {
     728        float: left;
     729}
     730
     731.revisions-next {
     732        float: right;
     733}
     734
     735.revisions-controls .wp-slider {
     736        max-width: 70%;
     737        margin: 0 auto;
     738        top: -3px;
     739}
     740
     741.revisions-diff {
     742        padding: 15px;
     743}
     744
     745.revisions-diff h3:first-child {
     746        margin-top: 0;
     747}
     748
     749/* Revision meta box */
     750.post-revisions li img,
     751#revisions-meta-restored img {
     752        vertical-align: middle;
     753}
     754
     755table.diff tbody tr td:nth-child(2) {
     756        width: 4%;
     757}
     758
     759table.diff {
     760        width: 100%;
     761        white-space: pre-wrap;
     762}
     763
     764table.diff col.content {
     765        width: auto;
     766}
     767
     768table.diff col.content.diffsplit {
     769        width: 48%;
     770}
     771
     772table.diff col.diffsplit.middle {
     773        width: auto;
     774}
     775
     776table.diff col.ltype {
     777        width: 30px;
     778}
     779
     780table.diff tr {
     781        background-color: transparent;
     782}
     783
     784table.diff td,
     785table.diff th {
     786        font-family: Consolas, Monaco, monospace;
     787        font-size: 14px;
     788        line-height: 1.618;
     789        padding: .5em;
     790}
     791
     792table.diff td h1,
     793table.diff td h2,
     794table.diff td h3,
     795table.diff td h4,
     796table.diff td h5,
     797table.diff td h6 {
     798        margin: 0;
     799}
     800
     801table.diff .diff-deletedline del,
     802table.diff .diff-addedline ins {
     803        text-decoration: none;
     804}
     805
     806.diff-meta {
     807        padding: 5px;
     808        clear: both;
     809        min-height: 32px;
     810}
     811
     812.diff-title strong {
     813        line-height: 32px;
     814        min-width: 60px;
     815        text-align: right;
     816        float: left;
     817        margin-right: 5px;
     818}
     819
     820.revisions-controls .author-card .author-info {
     821        font-size: 12px;
     822        line-height: 16px;
     823}
     824
     825.revisions-controls .author-card .avatar,
     826.revisions-controls .author-card .author-info {
     827        float: left;
     828        margin-left: 6px;
     829        margin-right: 6px;
     830}
     831
     832.revisions-controls .author-card .byline {
     833        display: block;
     834        font-size: 12px;
     835}
     836
     837.revisions-controls .author-card .avatar {
     838        vertical-align: middle;
     839}
     840
     841.diff-meta input.restore-revision {
     842        float: right;
     843        margin-left: 6px;
     844        margin-right: 6px;
     845        margin-top: 4px;
     846}
     847
     848.diff-meta-from {
     849        display: none;
     850}
     851
     852.comparing-two-revisions .diff-meta-from {
     853        display: block;
     854}
     855
     856.revisions-tooltip {
     857        position: absolute;
     858        bottom: 105px;
     859        margin-right: 0;
     860        margin-left: -69px;
     861        z-index: 0;
     862        max-width: 350px;
     863        min-width: 130px;
     864        padding: 8px 4px;
     865        display: none;
     866        opacity: 0;
     867}
     868
     869.revisions-tooltip.flipped {
     870        margin-left: 0;
     871        margin-right: -70px;
     872}
     873
     874.revisions.pinned .revisions-tooltip {
     875        display: none !important;
     876}
     877
     878.comparing-two-revisions .revisions-tooltip {
     879        bottom: 145px;
     880}
     881
     882.revisions-tooltip-arrow {
     883        width: 70px;
     884        height: 15px;
     885        overflow: hidden;
     886        position: absolute;
     887        left: 0;
     888        margin-left: 35px;
     889        bottom: -15px;
     890}
     891
     892.revisions-tooltip.flipped .revisions-tooltip-arrow {
     893        margin-left: 0;
     894        margin-right: 35px;
     895        left: auto;
     896        right: 0;
     897}
     898
     899.revisions-tooltip-arrow > span {
     900        content: "";
     901        position: absolute;
     902        left: 20px;
     903        top: -20px;
     904        width: 25px;
     905        height: 25px;
     906        -webkit-transform: rotate(45deg);
     907        -moz-transform:    rotate(45deg);
     908        -ms-transform:     rotate(45deg);
     909        -o-transform:      rotate(45deg);
     910        transform:         rotate(45deg);
     911}
     912
     913.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
     914        left: auto;
     915        right: 20px;
     916}
     917
     918.ie8 .revisions-tooltip-arrow > span {
     919        left: 15px;
     920        top: -25px;
     921        -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
     922}
     923
     924.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
     925        right: 25px;
     926}
     927
     928.revisions-tooltip,
     929.revisions-tooltip-arrow > span {
     930        border-width: 1px;
     931        border-style: solid;
     932}
     933
     934
     935
     936
     937.revisions-tooltip {
     938        display: none;
     939}
     940
     941.arrow {
     942        width: 70px;
     943        height: 16px;
     944        overflow: hidden;
     945        position: absolute;
     946        left: 0;
     947        margin-left: -35px;
     948        bottom: 90px;
     949        z-index: 10000;
     950}
     951
     952.arrow::after {
     953        z-index: 9999;
     954}
     955
     956.arrow.top {
     957        top: -16px;
     958        bottom: auto;
     959}
     960
     961.arrow.left {
     962        left: 20%;
     963}
     964
     965.arrow:after {
     966        content: "";
     967        position: absolute;
     968        left: 20px;
     969        top: -20px;
     970        width: 25px;
     971        height: 25px;
     972        -webkit-transform: rotate(45deg);
     973        -moz-transform: rotate(45deg);
     974        -ms-transform: rotate(45deg);
     975        -o-transform: rotate(45deg);
     976        transform: rotate(45deg);
     977}
     978
     979.revisions-tooltip,
     980.revisions-tooltip-arrow:after {
     981        border-width: 1px;
     982        border-style: solid;
     983}
     984
     985div.revisions-controls > .wp-slider > .ui-slider-handle {
     986        margin-left: -10px;
     987}
     988
     989.rtl div.revisions-controls > .wp-slider > .ui-slider-handle {
     990        margin-right: -10px;
     991}
     992
     993 /* jQuery UI Slider */
     994.wp-slider.ui-slider {
     995        position: relative;
     996        border-width: 1px;
     997        border-style: solid;
     998        text-align: left;
     999        cursor: pointer;
     1000}
     1001
     1002.wp-slider .ui-slider-handle {
     1003        border-radius: 50%;
     1004        height: 18px;
     1005        margin-top: -3px;
     1006        outline: none;
     1007        position: absolute;
     1008        width: 18px;
     1009        z-index: 2;
     1010}
     1011
     1012.wp-slider .ui-slider-handle:before {
     1013        background: none;
     1014        position: absolute;
     1015        top: 0;
     1016        left: 0;
     1017        content: "\f229";
     1018        font: normal 18px/1 'dashicons';
     1019        speak: none;
     1020        -webkit-font-smoothing:antialiased;
     1021        -moz-osx-font-smoothing: grayscale;
     1022}
     1023
     1024.wp-slider .ui-slider-handle.from-handle:before,
     1025.wp-slider .ui-slider-handle.to-handle:before {
     1026        font-size: 20px !important;
     1027        margin: -1px 0 0 -1px;
     1028}
     1029
     1030.wp-slider .ui-slider-handle.from-handle:before {
     1031        content: '\f139';
     1032}
     1033
     1034.wp-slider .ui-slider-handle.to-handle:before {
     1035        content: '\f141';
     1036}
     1037
     1038.rtl .wp-slider .ui-slider-handle.from-handle:before {
     1039        content: '\f141';
     1040}
     1041
     1042.rtl .wp-slider .ui-slider-handle.to-handle:before {
     1043        content: '\f139';
     1044        right: -1px;
     1045}
     1046
     1047.wp-slider .ui-slider-range {
     1048        position: absolute;
     1049        font-size: .7em;
     1050        display: block;
     1051        border: 0;
     1052        background-color: transparent;
     1053        background-image: none;
     1054}
     1055
     1056.wp-slider.ui-slider-horizontal {
     1057        height: .7em;
     1058}
     1059
     1060.wp-slider.ui-slider-horizontal .ui-slider-handle {
     1061        top: -.25em;
     1062        margin-left: -.6em;
     1063}
     1064
     1065.wp-slider.ui-slider-horizontal .ui-slider-range {
     1066        top: 0;
     1067        height: 100%;
     1068}
     1069
     1070.wp-slider.ui-slider-horizontal .ui-slider-range-min {
     1071        left: 0;
     1072}
     1073
     1074.wp-slider.ui-slider-horizontal .ui-slider-range-max {
     1075        right: 0;
     1076}
     1077
     1078
     1079/*------------------------------------------------------------------------------
     1080  11.3 - Featured Images
     1081------------------------------------------------------------------------------*/
     1082
     1083#select-featured-image {
     1084        padding: 4px 0;
     1085        overflow: hidden;
     1086}
     1087
     1088#select-featured-image img {
     1089        max-width: 100%;
     1090        height: auto;
     1091        margin-bottom: 10px;
     1092}
     1093
     1094#select-featured-image a {
     1095        float: left;
     1096        clear: both;
     1097}
     1098
     1099#select-featured-image .remove {
     1100        display: none;
     1101        margin-top: 10px;
     1102}
     1103
     1104.js #select-featured-image.has-featured-image .remove {
     1105        display: inline-block;
     1106}
     1107
     1108.no-js #select-featured-image .choose {
     1109        display: none;
     1110}
     1111
     1112/*------------------------------------------------------------------------------
     1113  11.4 - Post formats
     1114------------------------------------------------------------------------------*/
     1115
     1116.post-state-format {
     1117        overflow: hidden;
     1118        display: inline-block;
     1119        vertical-align: middle;
     1120        height: 20px;
     1121        width: 20px;
     1122        margin-right: 5px;
     1123        margin-top: -4px;
     1124}
     1125
     1126.post-state-format:before {
     1127        display: block;
     1128        height: 20px;
     1129        width: 20px;
     1130        font: normal 20px/1 'dashicons' !important;
     1131        speak: none;
     1132        -webkit-font-smoothing: antialiased;
     1133        -moz-osx-font-smoothing: grayscale;
     1134}
     1135
     1136#post-formats-select {
     1137        line-height: 2em;
     1138}
     1139
     1140#post-formats-select .post-format-icon:before {
     1141        top: 5px;
     1142}
     1143
     1144input.post-format {
     1145        margin-top: 1px;
     1146}
     1147
     1148label.post-format-icon {
     1149        margin-left: 0px;
     1150        padding: 2px 0 2px 0px;
     1151}
     1152
     1153.post-format-icon:before {
     1154        position: relative;
     1155        display: inline-block;
     1156        margin-right: 7px;
     1157        font: normal 20px/1 'dashicons';
     1158        speak: none;
     1159        -webkit-font-smoothing: antialiased;
     1160        -moz-osx-font-smoothing: grayscale;
     1161}
     1162
     1163.post-state-format.post-format-standard:before,
     1164.post-format-icon.post-format-standard:before,
     1165a.post-state-format.format-standard:before {
     1166        content: '\f109';
     1167}
     1168
     1169.post-state-format.post-format-image:before,
     1170.post-format-icon.post-format-image:before,
     1171a.post-state-format.format-image:before {
     1172        content: '\f128';
     1173}
     1174
     1175.post-state-format.post-format-gallery:before,
     1176.post-format-icon.post-format-gallery:before,
     1177a.post-state-format.format-gallery:before {
     1178        content: '\f161';
     1179}
     1180
     1181.post-state-format.post-format-audio:before,
     1182.post-format-icon.post-format-audio:before,
     1183a.post-state-format.format-audio:before {
     1184        content: '\f127';
     1185}
     1186
     1187.post-state-format.post-format-video:before,
     1188.post-format-icon.post-format-video:before,
     1189a.post-state-format.format-video:before {
     1190        content: '\f126';
     1191}
     1192
     1193.post-state-format.post-format-chat:before,
     1194.post-format-icon.post-format-chat:before,
     1195a.post-state-format.format-chat:before {
     1196        content: '\f125';
     1197}
     1198
     1199.post-state-format.post-format-status:before,
     1200.post-format-icon.post-format-status:before,
     1201a.post-state-format.format-status:before {
     1202        content: '\f130';
     1203}
     1204
     1205.post-state-format.post-format-aside:before,
     1206.post-format-icon.post-format-aside:before,
     1207a.post-state-format.format-aside:before {
     1208        content: '\f123';
     1209}
     1210
     1211.post-state-format.post-format-quote:before,
     1212.post-format-icon.post-format-quote:before,
     1213a.post-state-format.format-quote:before {
     1214        content: '\f122';
     1215}
     1216
     1217.post-state-format.post-format-link:before,
     1218.post-format-icon.post-format-link:before,
     1219a.post-state-format.format-link:before {
     1220        content: '\f103';
     1221}
  • src/wp-admin/css/wp-admin-footer.css

    Property changes on: src/wp-admin/css/wp-admin-edit.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  21.0 - Admin Footer
     3------------------------------------------------------------------------------*/
     4
     5#wpfooter {
     6        position: absolute;
     7        bottom: 0;
     8        left: 0;
     9        right: 0;
     10        padding: 10px 0;
     11        margin-right: 20px;
     12        border-top-width: 1px;
     13        border-top-style: solid;
     14}
     15
     16#wpfooter p {
     17        font-size: 13px;
     18        margin: 0;
     19        line-height: 20px;
     20}
     21
     22#footer-thankyou {
     23        font-style: italic;
     24}
     25
     26#wpfooter a {
     27        text-decoration: none;
     28}
     29
     30#wpfooter a:hover {
     31        text-decoration: underline;
     32}
     33
  • src/wp-admin/css/wp-admin-forms.css

    Property changes on: src/wp-admin/css/wp-admin-footer.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  2.0 - Forms
     3------------------------------------------------------------------------------*/
     4
     5
     6.wp-admin select {
     7        padding: 2px;
     8        line-height: 28px;
     9        height: 28px;
     10        vertical-align: middle;
     11}
     12
     13.wp-admin .button-cancel {
     14        padding: 0 5px;
     15        line-height: 2;
     16}
     17
     18.meta-box-sortables select {
     19        max-width: 100%;
     20}
     21
     22.wp-admin select[multiple] {
     23        height: auto;
     24}
     25
     26.submit {
     27        padding: 1.5em 0;
     28        margin: 5px 0;
     29        -webkit-border-bottom-left-radius: 3px;
     30        -webkit-border-bottom-right-radius: 3px;
     31        border-bottom-left-radius: 3px;
     32        border-bottom-right-radius: 3px;
     33}
     34
     35form p.submit a.cancel:hover {
     36        text-decoration: none;
     37}
     38
     39p.submit {
     40        text-align: left;
     41        max-width: 100%;
     42        margin-top: 20px;
     43        padding-top: 10px;
     44}
     45
     46.textright p.submit {
     47        border: none;
     48        text-align: right;
     49}
     50
     51table.form-table + p.submit,
     52table.form-table + input + p.submit,
     53table.form-table + input + input + p.submit {
     54        border-top: none;
     55        padding-top: 0;
     56}
     57
     58table.widefat span.delete a:hover,
     59table.widefat span.trash a:hover,
     60table.widefat span.spam a:hover,
     61#dashboard_recent_comments .delete a:hover,
     62#dashboard_recent_comments .trash a:hover,
     63#dashboard_recent_comments .spam a:hover,
     64.plugins a.delete:hover,
     65#all-plugins-table .plugins a.delete:hover,
     66#search-plugins-table .plugins a.delete:hover,
     67.submitbox .submitdelete:hover,
     68#media-items a.delete:hover,
     69#media-items a.delete-permanently:hover,
     70#nav-menu-footer .menu-delete:hover {
     71        text-decoration: none;
     72        border: none;
     73}
     74
     75#minor-publishing-actions input,
     76#major-publishing-actions input,
     77#minor-publishing-actions .preview {
     78        text-align: center;
     79}
     80
     81textarea.all-options,
     82input.all-options {
     83        width: 250px;
     84}
     85
     86input.large-text,
     87textarea.large-text {
     88        width: 99%;
     89}
     90
     91input.regular-text,
     92#adduser .form-field input {
     93        width: 25em;
     94}
     95
     96input.small-text {
     97        width: 50px;
     98        padding: 1px 6px;
     99}
     100
     101input[type="number"].small-text {
     102        width: 65px;
     103}
     104
     105#doaction,
     106#doaction2,
     107#post-query-submit {
     108        margin: 1px 8px 0 0;
     109}
     110
     111.tablenav #changeit,
     112.tablenav #delete_all,
     113.tablenav #clear-recent-list {
     114        margin-top: 1px;
     115}
     116
     117.tablenav .actions select {
     118        float: left;
     119        margin-right: 6px;
     120        max-width: 200px;
     121}
     122
     123.ie8 .tablenav .actions select {
     124        width: 155px;
     125}
     126
     127.ie8 .tablenav .actions select#cat {
     128        width: 200px;
     129}
     130
     131#timezone_string option {
     132        margin-left: 1em;
     133}
     134
     135label,
     136#your-profile label + a {
     137        vertical-align: middle;
     138}
     139
     140fieldset label,
     141#your-profile label + a {
     142        vertical-align: middle;
     143}
     144
     145.options-media-php label[for*="_size_"],
     146#misc-publishing-actions label {
     147        vertical-align: baseline;
     148}
     149
     150#misc-publishing-actions label[for="post_status"]:before {
     151        content: '\f173';
     152        display: inline-block;
     153        font: normal 20px/1 'dashicons';
     154        speak: none;
     155        left: -1px;
     156        padding: 0 5px 0 0;
     157        position: relative;
     158        top: 0;
     159        text-decoration: none !important;
     160        vertical-align: top;
     161
     162        -webkit-font-smoothing: antialiased;
     163        -moz-osx-font-smoothing: grayscale;
     164}
     165
     166#pass-strength-result {
     167        border-style: solid;
     168        border-width: 1px;
     169        float: left;
     170        margin: 13px 5px 5px 1px;
     171        padding: 3px 5px;
     172        text-align: center;
     173        width: 200px;
     174        display: none;
     175}
     176.indicator-hint {
     177        padding-top: 8px;
     178}
     179
     180p.search-box {
     181        float: right;
     182        margin: 0;
     183}
     184
     185.search-box input[name="s"],
     186#search-plugins input[name="s"],
     187.tagsdiv .newtag {
     188        float: left;
     189        height: 28px;
     190        margin: 0 4px 0 0;
     191}
     192
     193input[type="text"].ui-autocomplete-loading {
     194        background: transparent url('../images/loading.gif') no-repeat right center;
     195        visibility: visible;
     196}
     197
     198ul#add-to-blog-users {
     199        margin: 0 0 0 14px;
     200}
     201
     202.ui-autocomplete-input.open {
     203        border-bottom-right-radius: 0;
     204        border-bottom-left-radius: 0;
     205}
     206
     207.ui-autocomplete {
     208        padding: 0;
     209        margin: 0;
     210        list-style: none;
     211        position: absolute;
     212        z-index: 10000;
     213        border-bottom-right-radius: 3px;
     214        border-bottom-left-radius: 3px;
     215        border-width: 1px;
     216        border-style: solid;
     217}
     218
     219.ui-autocomplete li {
     220        margin-bottom: 0;
     221        white-space: nowrap;
     222        text-align: left;
     223}
     224
     225.ui-autocomplete li a {
     226        display: block;
     227        height: 100%;
     228        padding: 4px 10px;
     229}
     230
     231.ui-autocomplete li a.ui-state-focus {
     232        cursor: pointer;
     233}
  • src/wp-admin/css/wp-admin-header.css

    Property changes on: src/wp-admin/css/wp-admin-forms.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  6.0 - Admin Header
     3------------------------------------------------------------------------------*/
     4#adminmenu a,
     5#sidemenu a,
     6#taglist a,
     7#catlist a {
     8        text-decoration: none;
     9}
     10
     11/*------------------------------------------------------------------------------
     12  6.1 - Screen Options Tabs
     13------------------------------------------------------------------------------*/
     14
     15#screen-options-wrap,
     16#contextual-help-wrap {
     17        margin: 0;
     18        padding: 8px 20px 12px;
     19        position: relative;
     20}
     21
     22#contextual-help-wrap {
     23        overflow: auto;
     24        margin-left: 0 !important;
     25}
     26
     27#screen-meta .screen-reader-text {
     28        visibility: hidden;
     29}
     30
     31#screen-meta-links {
     32        margin: 0 20px 0 0;
     33}
     34
     35#screen-meta-links a {
     36        padding: 3px 6px 3px 16px;
     37}
     38
     39#screen-meta-links a:focus {
     40        outline: none;
     41}
     42
     43/* screen options and help tabs revert */
     44#screen-meta {
     45        display: none;
     46        margin: 0 20px -1px 0px;
     47        position: relative;
     48}
     49
     50#screen-options-link-wrap,
     51#contextual-help-link-wrap {
     52        float: right;
     53        height: 28px;
     54        margin: 0 0 0 6px;
     55}
     56
     57#screen-meta-links .screen-meta-toggle {
     58        position: relative;
     59        top: 0;
     60}
     61
     62#screen-meta-links a.show-settings {
     63        display: block;
     64        font-size: 13px;
     65        height: 22px;
     66        line-height: 22px;
     67        text-decoration: none;
     68        z-index: 1;
     69}
     70
     71#screen-meta-links a:after {
     72        right: 0;
     73        content: '\f140';
     74        font: normal 20px/1 'dashicons';
     75        speak: none;
     76        display: inline-block;
     77        padding: 0 5px 0 0;
     78        bottom: 2px;
     79        position: relative;
     80        vertical-align: bottom;
     81        -webkit-font-smoothing: antialiased;
     82        -moz-osx-font-smoothing: grayscale;
     83        text-decoration: none !important;
     84}
     85
     86#screen-meta-links a.screen-meta-active:after {
     87        content: '\f142';
     88}
     89
     90#screen-meta-links a.show-settings:hover {
     91        text-decoration: none;
     92}
     93/* end screen options and help tabs */
     94
     95.toggle-arrow {
     96        background-repeat: no-repeat;
     97        background-position: top left;
     98        background-color: transparent;
     99        height: 22px;
     100        line-height: 22px;
     101        display: block;
     102}
     103
     104.toggle-arrow-active {
     105        background-position: bottom left;
     106}
     107
     108#screen-options-wrap h5,
     109#contextual-help-wrap h5 {
     110        margin: 8px 0;
     111        font-size: 13px;
     112}
     113
     114.metabox-prefs label {
     115        display: inline-block;
     116        padding-right: 15px;
     117        line-height: 30px;
     118}
     119
     120.metabox-prefs label input[type=checkbox] {
     121        margin-top: -4px;
     122        margin-right: 6px;
     123}
     124
     125.metabox-prefs label input {
     126        margin: 0 5px 0 2px;
     127}
     128
     129.metabox-prefs .columns-prefs label input {
     130        margin: 0 2px;
     131}
     132
     133.metabox-prefs label a {
     134        display: none;
     135}
     136
     137/*------------------------------------------------------------------------------
     138  6.2 - Help Menu
     139------------------------------------------------------------------------------*/
     140
     141#contextual-help-wrap {
     142        padding: 0;
     143}
     144
     145#contextual-help-columns {
     146        position: relative;
     147}
     148
     149#contextual-help-back {
     150        position: absolute;
     151        top: 0;
     152        bottom: 0;
     153        left: 150px;
     154        right: 170px;
     155        border-width: 0 1px;
     156        border-style: solid;
     157}
     158
     159#contextual-help-wrap.no-sidebar #contextual-help-back {
     160        right: 0;
     161
     162        border-right-width: 0;
     163        -webkit-border-bottom-right-radius: 2px;
     164        border-bottom-right-radius: 2px;
     165}
     166
     167.contextual-help-tabs {
     168        float: left;
     169        width: 150px;
     170        margin: 0;
     171}
     172
     173.contextual-help-tabs ul {
     174        margin: 1em 0;
     175}
     176
     177.contextual-help-tabs li {
     178        margin-bottom: 0;
     179        list-style-type: none;
     180        border-style: solid;
     181        border-width: 0 0 0 2px;
     182        border-color: transparent;
     183}
     184
     185.contextual-help-tabs a {
     186        display: block;
     187        padding: 5px 5px 5px 12px;
     188        line-height: 18px;
     189        text-decoration: none;
     190        border-style: solid;
     191        border-width: 1px 0 1px 0;
     192        border-color: transparent;
     193}
     194
     195.contextual-help-tabs .active {
     196        padding: 0;
     197        margin: 0 -1px 0 0;
     198        border-width: 0 0 0 2px;
     199        border-style: solid;
     200}
     201
     202.contextual-help-tabs-wrap {
     203        padding: 0 20px;
     204        overflow: auto;
     205}
     206
     207.help-tab-content {
     208        display: none;
     209        margin: 0 22px 12px 0;
     210        line-height: 1.6em;
     211}
     212
     213.help-tab-content.active {
     214        display: block;
     215}
     216
     217.help-tab-content ul li {
     218        list-style-type: disc;
     219        margin-left: 18px;
     220}
     221
     222.contextual-help-sidebar {
     223        width: 150px;
     224        float: right;
     225        padding: 0 8px 0 12px;
     226        overflow: auto;
     227}
     228
     229
  • src/wp-admin/css/wp-admin-layoutblocks.css

    Property changes on: src/wp-admin/css/wp-admin-header.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  8.0 - Layout Blocks
     3------------------------------------------------------------------------------*/
     4
     5html.wp-toolbar {
     6        padding-top: 32px;
     7        -webkit-box-sizing: border-box;
     8        -moz-box-sizing: border-box;
     9        box-sizing: border-box;
     10}
     11
     12.narrow {
     13        width: 70%;
     14        margin-bottom: 40px;
     15}
     16
     17.narrow p {
     18        line-height: 150%;
     19}
     20
     21.widefat th,
     22.widefat td {
     23        overflow: hidden;
     24}
     25
     26.widefat th {
     27        font-weight: normal;
     28}
     29
     30.widefat td p {
     31        margin: 2px 0 0.8em;
     32}
     33
     34.widefat .column-comment p {
     35        margin: 0.6em 0;
     36}
     37
     38/* Screens with postboxes */
     39.postbox-container {
     40        float: left;
     41}
     42
     43#wpbody-content #dashboard-widgets.columns-1 .postbox-container {
     44        width: 100%;
     45}
     46
     47#wpbody-content #dashboard-widgets.columns-2 .postbox-container {
     48        width: 49.5%;
     49}
     50
     51#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,
     52#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,
     53#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 {
     54        float: right;
     55        width: 50.5%;
     56}
     57
     58#wpbody-content #dashboard-widgets.columns-3 .postbox-container {
     59        width: 33.5%;
     60}
     61
     62#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 {
     63        width: 33%;
     64}
     65
     66#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,
     67#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 {
     68        float: right;
     69}
     70
     71#wpbody-content #dashboard-widgets.columns-4 .postbox-container {
     72        width: 25%;
     73}
     74
     75.postbox-container .meta-box-sortables {
     76        -moz-box-sizing: border-box;
     77        -webkit-box-sizing: border-box;
     78        -ms-box-sizing: border-box;
     79        box-sizing: border-box;
     80}
     81
     82.metabox-holder .postbox-container .empty-container {
     83        border: 3px dashed #bbb;
     84        height: 250px;
     85}
     86
     87.metabox-holder.columns-1 .postbox-container .empty-container,
     88.columns-2 #postbox-container-3 .empty-container,
     89.columns-2 #postbox-container-4 .empty-container,
     90.columns-3 #postbox-container-4 .empty-container {
     91        border: 0 none;
     92        height: 0;
     93        min-height: 0;
     94}
     95
     96.ie8 #wpbody-content #dashboard-widgets .postbox-container {
     97        width: 49.5%;
     98}
     99
     100.ie8 #wpbody-content #dashboard-widgets #postbox-container-2,
     101.ie8 #wpbody-content #dashboard-widgets #postbox-container-3,
     102.ie8 #wpbody-content #dashboard-widgets #postbox-container-4 {
     103        float: right;
     104        width: 50.5%;
     105}
     106
     107.ie8 #dashboard-widgets #postbox-container-3 .empty-container,
     108.ie8 #dashboard-widgets #postbox-container-4 .empty-container {
     109        border: 0 none;
     110        height: 0;
     111        min-height: 0;
     112}
     113
     114#poststuff {
     115        padding-top: 10px;
     116        min-width: 763px;
     117}
     118
     119#poststuff #post-body {
     120        padding: 0;
     121}
     122
     123#post-body-content {
     124        width: 100%;
     125        min-width: 463px;
     126        float: left;
     127}
     128
     129#poststuff .postbox-container {
     130        width: 100%;
     131}
     132
     133#poststuff #post-body.columns-2 {
     134        margin-right: 300px;
     135}
     136
     137#post-body.columns-2 #postbox-container-1 {
     138        float: right;
     139        margin-right: -300px;
     140        width: 280px;
     141}
     142
     143#post-body.columns-2 #side-sortables {
     144        min-height: 250px;
     145}
     146
     147#dashboard-widgets .postbox-container {
     148        width: 25%;
     149}
     150
     151#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container {
     152        border: none !important;
     153}
     154
     155#dashboard-widgets-wrap {
     156        overflow: hidden;
     157}
     158
     159/* one column on the dash */
     160@media only screen and (max-width: 799px) {
     161        #wpbody-content #dashboard-widgets .postbox-container {
     162                width: 100%;
     163        }
     164
     165        #wpbody-content .metabox-holder .postbox-container .empty-container {
     166                border: 0 none;
     167                height: 0;
     168                min-height: 0;
     169        }
     170}
     171
     172/* two columns on the dash, but keep the setting if one is selected */
     173@media only screen and (min-width: 800px) and (max-width: 1499px) {
     174        #wpbody-content #dashboard-widgets .postbox-container {
     175                width: 49.5%;
     176        }
     177
     178        #wpbody-content #dashboard-widgets #postbox-container-2,
     179        #wpbody-content #dashboard-widgets #postbox-container-3,
     180        #wpbody-content #dashboard-widgets #postbox-container-4 {
     181                float: right;
     182                width: 50.5%;
     183        }
     184
     185        #dashboard-widgets #postbox-container-3 .empty-container,
     186        #dashboard-widgets #postbox-container-4 .empty-container {
     187                border: 0 none;
     188                height: 0;
     189                min-height: 0;
     190        }
     191
     192        #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
     193                width: 100%;
     194        }
     195
     196        #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
     197                border: 0 none;
     198                height: 0;
     199                min-height: 0;
     200        }
     201
     202        /* show the radio buttons for column prefs only for one or two columns */
     203        .index-php .screen-layout,
     204        .index-php .columns-prefs {
     205                display: block;
     206        }
     207
     208        .columns-prefs .columns-prefs-3,
     209        .columns-prefs .columns-prefs-4 {
     210                display: none;
     211        }
     212}
     213
     214/* three columns on the dash */
     215@media only screen and (min-width: 1500px) and (max-width: 1800px) {
     216        #wpbody-content #dashboard-widgets .postbox-container {
     217                width: 33.5%;
     218        }
     219
     220        #wpbody-content #dashboard-widgets #postbox-container-1 {
     221                width: 33%;
     222        }
     223
     224        #wpbody-content #dashboard-widgets #postbox-container-3,
     225        #wpbody-content #dashboard-widgets #postbox-container-4 {
     226                float: right;
     227        }
     228
     229        #dashboard-widgets #postbox-container-4 .empty-container {
     230                border: 0 none;
     231                height: 0;
     232                min-height: 0;
     233        }
     234}
     235
     236/* one column on the post write/edit screen */
     237@media only screen and (max-width: 850px) {
     238        #poststuff {
     239                min-width: 0;
     240        }
     241
     242        #wpbody-content #poststuff #post-body {
     243                margin: 0;
     244        }
     245
     246        #wpbody-content #post-body.columns-2 #postbox-container-1 {
     247                margin-right: 0;
     248                width: 100%;
     249        }
     250
     251        #poststuff #postbox-container-1 .empty-container,
     252        #poststuff #postbox-container-1 #side-sortables:empty {
     253                border: 0 none;
     254                height: 0;
     255                min-height: 0;
     256        }
     257
     258        #poststuff #post-body.columns-2 #side-sortables {
     259                min-height: 0;
     260        }
     261
     262        /* hide the radio buttons for column prefs */
     263        .screen-layout,
     264        .columns-prefs {
     265                display: none;
     266        }
     267}
     268
     269.js .postbox .hndle {
     270        cursor: move;
     271}
     272
     273.hndle a {
     274        font-size: 11px;
     275        font-weight: normal;
     276}
     277
     278.postbox .handlediv {
     279        float: right;
     280        width: 27px;
     281        height: 30px;
     282}
     283
     284.js .postbox .handlediv {
     285        cursor: pointer;
     286}
     287
     288.sortable-placeholder {
     289        border-width: 1px;
     290        border-style: dashed;
     291        margin-bottom: 20px;
     292}
     293
     294.postbox,
     295.stuffbox {
     296        margin-bottom: 20px;
     297        padding: 0;
     298        line-height: 1;
     299}
     300
     301.postbox h3,
     302.stuffbox h3 {
     303        margin-top: 1px;
     304        -webkit-user-select: none;
     305        -moz-user-select: none;
     306        user-select: none;
     307}
     308
     309.js .widget .widget-top,
     310.js .postbox h3 {
     311        cursor: move;
     312}
     313
     314.postbox .inside,
     315.stuffbox .inside {
     316        padding: 0 12px 12px;
     317        line-height: 1.4em;
     318        font-size: 13px;
     319}
     320
     321.postbox .inside {
     322        margin: 11px 0;
     323        position: relative;
     324}
     325
     326#dashboard-widgets .postbox .inside {
     327        margin-bottom: 0;
     328}
     329
     330.postbox .inside > p:last-child,
     331.rss-widget ul li:last-child {
     332        margin-bottom: 1px !important;
     333}
     334
     335.postbox.closed h3 {
     336        border: none;
     337        -webkit-box-shadow: none;
     338        box-shadow: none;
     339}
     340
     341.postbox table.form-table {
     342        margin-bottom: 0;
     343}
     344
     345.temp-border {
     346        border: 1px dotted #ccc;
     347}
     348
     349.columns-prefs label {
     350        padding: 0 5px;
     351}
     352
     353
  • src/wp-admin/css/wp-admin-lists.css

    Property changes on: src/wp-admin/css/wp-admin-layoutblocks.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  10.0 - List Posts (/Pages/etc)
     3------------------------------------------------------------------------------*/
     4
     5table.fixed {
     6        table-layout: fixed;
     7}
     8
     9.fixed .column-rating,
     10.fixed .column-visible {
     11        width: 8%;
     12}
     13
     14.fixed .column-posts,
     15.fixed .column-date,
     16.fixed .column-parent,
     17.fixed .column-links,
     18.fixed .column-author,
     19.fixed .column-format {
     20        width: 10%;
     21}
     22
     23.fixed .column-response,
     24.fixed .column-categories,
     25.fixed .column-tags,
     26.fixed .column-rel,
     27.fixed .column-role {
     28        width: 15%;
     29}
     30
     31.fixed .column-slug {
     32        width: 25%;
     33}
     34
     35.fixed .column-locations {
     36        width: 35%;
     37}
     38
     39.fixed .column-comments {
     40        width: 4em;
     41        padding: 8px 0;
     42        text-align: left;
     43}
     44
     45.fixed .column-comments .vers {
     46        padding-left: 3px;
     47}
     48
     49.fixed .column-comments a {
     50        float: left;
     51}
     52
     53.fixed .column-icon {
     54        width: 80px;
     55}
     56
     57#comments-form .fixed .column-author {
     58        width: 20%;
     59}
     60
     61#commentsdiv.postbox .inside {
     62        margin: 0;
     63        padding: 0;
     64}
     65
     66#commentsdiv .inside .row-actions {
     67        line-height:18px;
     68}
     69
     70#commentsdiv .inside .column-author {
     71        width: 25%;
     72}
     73
     74#commentsdiv .column-comment p {
     75        margin: 0.6em 0;
     76        padding: 0;
     77}
     78
     79#commentsdiv #replyrow td {
     80        padding: 0;
     81}
     82
     83#commentsdiv p {
     84        padding: 8px 10px;
     85        margin: 0;
     86}
     87
     88#commentsdiv .comments-box {
     89        border: 0 none;
     90}
     91
     92#commentsdiv .comments-box thead th {
     93        background: transparent;
     94        padding: 0 7px 4px;
     95        font-style: italic;
     96}
     97
     98#commentsdiv .comments-box tr:last-child td {
     99        border-bottom: 0 none;
     100}
     101
     102#commentsdiv .spinner {
     103        padding-left: 5px;
     104}
     105
     106.sorting-indicator {
     107        display: none;
     108        width: 10px;
     109        height: 4px;
     110        margin-top: 8px;
     111        margin-left: 7px;
     112}
     113
     114.sorting-indicator:before {
     115        background: none;
     116        content: '\f142';
     117        font: normal 20px/1 'dashicons';
     118        speak: none;
     119        display: inline-block;
     120        padding: 0;
     121        top: -4px;
     122        left: -8px;
     123        color: #444;
     124        line-height: 10px;
     125        position: relative;
     126        vertical-align: top;
     127        -webkit-font-smoothing: antialiased;
     128        -moz-osx-font-smoothing: grayscale;
     129        text-decoration: none !important;
     130}
     131
     132.column-comments .sorting-indicator:before {
     133        top: 0;
     134        left: -10px;
     135}
     136
     137th.sorted.asc .sorting-indicator:before,
     138th.desc:hover span.sorting-indicator:before {
     139        content: '\f142';
     140}
     141
     142th.sorted.desc .sorting-indicator:before,
     143th.asc:hover span.sorting-indicator:before {
     144        content: '\f140';
     145}
     146
     147tr.wp-locked .locked-indicator {
     148        background: url('../images/lock.png') no-repeat;
     149        margin: -2px 0 0 6px;
     150        height: 20px;
     151        width: 16px;
     152}
     153
     154tr.wp-locked .check-column label,
     155tr.wp-locked .check-column input[type="checkbox"],
     156tr.wp-locked .row-actions .inline,
     157tr.wp-locked .row-actions .trash {
     158        display: none;
     159}
     160
     161tr .locked-info {
     162        height: 0;
     163        opacity: 0;
     164}
     165
     166tr.wp-locked .locked-info {
     167        margin-top: 8px;
     168        height: auto;
     169        opacity: 1;
     170}
     171
     172.locked-text {
     173        vertical-align: top;
     174}
     175
     176tr.locked-info, tr.wp-locked .locked-info {
     177        -webkit-transition: height 1s, opacity 500ms;
     178        -moz-transition:    height 1s, opacity 500ms;
     179        -ms-transition:     height 1s, opacity 500ms;
     180        -o-transition:      height 1s, opacity 500ms;
     181        transition:         height 1s, opacity 500ms;
     182}
     183
     184.fixed .column-comments .sorting-indicator {
     185        margin-top: 3px;
     186}
     187
     188#menu-locations-wrap .widefat {
     189        width: 60%;
     190}
     191
     192.widefat th.sortable,
     193.widefat th.sorted {
     194        padding: 0;
     195}
     196
     197th.sortable a,
     198th.sorted a {
     199        display: block;
     200        overflow: hidden;
     201        padding: 7px 7px 8px 10px;
     202}
     203
     204.fixed .column-comments.sortable a,
     205.fixed .column-comments.sorted a {
     206        padding: 8px 0;
     207}
     208
     209th.sortable a span,
     210th.sorted a span {
     211        float: left;
     212        cursor: pointer;
     213}
     214
     215th.sorted.asc .sorting-indicator,
     216th.desc:hover span.sorting-indicator {
     217        display: block;
     218        background-position: 0 0;
     219}
     220
     221th.sorted.desc .sorting-indicator,
     222th.asc:hover span.sorting-indicator {
     223        display: block;
     224        background-position: -7px 0;
     225}
     226
     227/* Bulk Actions */
     228.tablenav-pages a {
     229        font-weight: 600;
     230        margin-right: 1px;
     231        padding: 0 2px;
     232}
     233.tablenav-pages .current-page {
     234        padding-top: 0;
     235        text-align: center;
     236}
     237.tablenav-pages .next-page {
     238        margin-left: 2px;
     239}
     240
     241.tablenav a.button-secondary {
     242        display: block;
     243        margin: 3px 8px 0 0;
     244}
     245
     246.tablenav {
     247        clear: both;
     248        height: 30px;
     249        margin: 6px 0 4px;
     250        vertical-align: middle;
     251}
     252
     253.tablenav.themes {
     254        max-width: 98%;
     255}
     256
     257.tablenav .tablenav-pages {
     258        float: right;
     259        display: block;
     260        cursor: default;
     261        height: 30px;
     262        line-height: 30px;
     263        font-size: 12px;
     264}
     265
     266.tablenav .no-pages,
     267.tablenav .one-page .pagination-links {
     268        display: none;
     269}
     270
     271.tablenav .tablenav-pages a,
     272.tablenav-pages span.current  {
     273        text-decoration: none;
     274        padding: 3px 6px;
     275}
     276
     277.tablenav .tablenav-pages a {
     278        padding: 0 10px 3px;
     279        font-size: 16px;
     280        font-weight: normal;
     281}
     282
     283.tablenav .tablenav-pages a.disabled:hover ,
     284.tablenav .tablenav-pages a.disabled:active {
     285        cursor: default;
     286}
     287
     288.tablenav .displaying-num {
     289        margin-right: 2px;
     290        font-size: 12px;
     291        font-style: italic;
     292}
     293
     294.tablenav .actions {
     295        overflow: hidden;
     296        padding: 2px 8px 0 0;
     297}
     298
     299.tablenav .delete {
     300        margin-right: 20px;
     301}
     302
     303.view-switch {
     304        float: right;
     305        margin: 5px 16px 0 8px;
     306}
     307
     308.view-switch img {
     309        display: none;
     310}
     311
     312.view-switch a {
     313        text-decoration: none;
     314}
     315
     316.view-switch > a {
     317        display: inline-block;
     318        width: 18px;
     319        height: 18px;
     320}
     321
     322.view-switch > a:before {
     323        content: '\f163';
     324        display: inline-block;
     325        float: left;
     326        font: normal 20px/1 'dashicons';
     327        speak: none;
     328        vertical-align: middle;
     329        margin-left: 0;
     330        -webkit-font-smoothing: antialiased;
     331        -moz-osx-font-smoothing: grayscale;
     332}
     333
     334.view-switch > a + a:before {
     335        margin-left: 5px;
     336        content: '\f164';
     337}
     338
     339.filter {
     340        float: left;
     341        margin: -5px 0 0 10px;
     342}
     343
     344.filter .subsubsub {
     345        margin-left: -10px;
     346        margin-top: 13px;
     347}
     348.screen-per-page {
     349        width: 4em;
     350}
     351
     352#posts-filter fieldset {
     353        float: left;
     354        margin: 0 1.5ex 1em 0;
     355        padding: 0;
     356}
     357
     358#posts-filter fieldset legend {
     359        padding: 0 0 .2em 1px;
     360}
     361
     362
     363/*------------------------------------------------------------------------------
     364  10.1 - Inline Editing
     365------------------------------------------------------------------------------*/
     366
     367/*
     368.quick-edit* is for Quick Edit
     369.bulk-edit* is for Bulk Edit
     370.inline-edit* is for everything
     371*/
     372
     373/*      Layout */
     374
     375#wpbody-content .inline-edit-row fieldset {
     376        font-size: 12px;
     377        float: left;
     378        margin: 0;
     379        padding: 0;
     380        width: 100%;
     381}
     382
     383tr.inline-edit-row td,
     384#wpbody-content .inline-edit-row fieldset .inline-edit-col {
     385        padding: 0 0.5em;
     386}
     387
     388#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
     389        border-width: 0 0 0 1px;
     390        border-style: none none none solid;
     391}
     392
     393#wpbody-content .quick-edit-row-post .inline-edit-col-left {
     394        width: 40%;
     395}
     396
     397#wpbody-content .quick-edit-row-post .inline-edit-col-right {
     398        width: 39%;
     399}
     400
     401#wpbody-content .inline-edit-row-post .inline-edit-col-center {
     402        width: 20%;
     403}
     404
     405#wpbody-content .quick-edit-row-page .inline-edit-col-left {
     406        width: 50%;
     407}
     408
     409#wpbody-content .quick-edit-row-page .inline-edit-col-right,
     410#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
     411        width: 49%;
     412}
     413
     414#wpbody-content .bulk-edit-row .inline-edit-col-left {
     415        width: 30%;
     416}
     417
     418#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
     419        width: 69%;
     420}
     421
     422#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
     423        float: right;
     424        width: 69%;
     425}
     426
     427#wpbody-content .inline-edit-row-page .inline-edit-col-right {
     428        margin-top: 27px;
     429}
     430
     431.inline-edit-row fieldset .inline-edit-group {
     432        clear: both;
     433}
     434
     435.inline-edit-row fieldset .inline-edit-group:after {
     436        content: ".";
     437        display: block;
     438        height: 0;
     439        clear: both;
     440        visibility: hidden;
     441}
     442
     443.inline-edit-row p.submit {
     444        clear: both;
     445        padding: 0.5em;
     446        margin: 0.5em 0 0;
     447}
     448
     449.inline-edit-row span.error {
     450        line-height: 22px;
     451        margin: 0 15px;
     452        padding: 3px 5px;
     453}
     454
     455/*      Positioning */
     456.inline-edit-row h4 {
     457        margin: .2em 0;
     458        padding: 0;
     459        line-height: 23px;
     460}
     461.inline-edit-row fieldset span.title,
     462.inline-edit-row fieldset span.checkbox-title {
     463        margin: 0;
     464        padding: 0;
     465        line-height: 27px;
     466}
     467
     468.inline-edit-row fieldset label,
     469.inline-edit-row fieldset span.inline-edit-categories-label {
     470        display: block;
     471        margin: .2em 0;
     472}
     473
     474.inline-edit-row fieldset label.inline-edit-tags {
     475        margin-top: 0;
     476}
     477
     478.inline-edit-row fieldset label.inline-edit-tags span.title {
     479        margin: .2em 0;
     480        width: auto;
     481}
     482
     483.inline-edit-row fieldset label span.title {
     484        display: block;
     485        float: left;
     486        width: 5em;
     487}
     488
     489.inline-edit-row fieldset label span.input-text-wrap {
     490        display: block;
     491        margin-left: 5em;
     492}
     493
     494.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
     495        width: auto;
     496        padding-right: 0.5em;
     497}
     498
     499.inline-edit-row .input-text-wrap input[type=text] {
     500        width: 100%;
     501}
     502
     503.inline-edit-row fieldset label input[type=checkbox] {
     504        vertical-align: text-bottom;
     505}
     506
     507.inline-edit-row fieldset label textarea {
     508        width: 100%;
     509        height: 4em;
     510}
     511
     512#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
     513        max-width: 50%;
     514}
     515
     516#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
     517        margin-right: 0.5em
     518}
     519
     520.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
     521        width: 6em;
     522}
     523
     524.inline-edit-save .spinner {
     525        padding: 4px 10px 0;
     526        vertical-align: top;
     527        float: right;
     528}
     529
     530/*      Styling */
     531.inline-edit-row h4 {
     532        text-transform: uppercase;
     533}
     534
     535.inline-edit-row fieldset span.title,
     536.inline-edit-row fieldset span.checkbox-title {
     537        font-style: italic;
     538        line-height: 1.8em;
     539}
     540
     541/*      Specific Elements */
     542.inline-edit-row fieldset input[type="text"],
     543.inline-edit-row fieldset textarea {
     544        border-style: solid;
     545        border-width: 1px;
     546}
     547
     548.inline-edit-row fieldset .inline-edit-date {
     549        float: left;
     550}
     551
     552.inline-edit-row fieldset input[name=jj],
     553.inline-edit-row fieldset input[name=hh],
     554.inline-edit-row fieldset input[name=mn] {
     555        font-size: 12px;
     556        width: 2.1em;
     557}
     558
     559.inline-edit-row fieldset input[name=aa] {
     560        font-size: 12px;
     561        width: 3.5em;
     562}
     563
     564.inline-edit-row fieldset label input.inline-edit-password-input {
     565        width: 8em;
     566}
     567
     568ul.cat-checklist {
     569        height: 12em;
     570        border-style: solid;
     571        border-width: 1px;
     572        overflow-y: scroll;
     573        padding: 0 5px;
     574        margin: 0;
     575}
     576
     577#bulk-titles {
     578        display: block;
     579        height: 12em;
     580        border-style: solid;
     581        border-width: 1px;
     582        overflow-y: scroll;
     583        padding: 0 5px;
     584        margin: 0 0 5px;
     585}
     586
     587.inline-edit-row fieldset ul.cat-checklist li,
     588.inline-edit-row fieldset ul.cat-checklist input {
     589        margin: 0;
     590}
     591
     592.inline-edit-row fieldset ul.cat-checklist label,
     593.inline-edit-row #bulk-titles div {
     594        font-style: normal;
     595        font-size: 11px;
     596}
     597
     598.inline-edit-row fieldset label input.inline-edit-menu-order-input {
     599        width: 3em;
     600}
     601
     602.inline-edit-row fieldset label input.inline-edit-slug-input {
     603        width: 75%;
     604}
     605
     606.quick-edit-row-post fieldset label.inline-edit-status {
     607        float: left;
     608}
     609
     610#bulk-titles {
     611        line-height: 140%;
     612}
     613#bulk-titles div {
     614        margin: 0.2em 0.3em;
     615}
     616
     617#bulk-titles div a {
     618        cursor: pointer;
     619        display: block;
     620        float: left;
     621        height: 18px;
     622        margin: 0 3px 0 -2px;
     623        overflow: hidden;
     624        position: relative;
     625        width: 20px;
     626}
     627
     628#bulk-titles div a:before {
     629        position: relative;
     630        top: -3px;
     631}
     632
     633
  • src/wp-admin/css/wp-admin-localization.css

    Property changes on: src/wp-admin/css/wp-admin-lists.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  27.0 - Localization
     3------------------------------------------------------------------------------*/
     4
     5/* RTL except Hebrew (see below): Tahoma as the first font; */
     6body.rtl,
     7body.rtl .press-this a.wp-switch-editor {
     8        font-family: Tahoma, Arial, sans-serif;
     9}
     10
     11
     12/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
     13body.locale-he-il,
     14body.locale-he-il .press-this a.wp-switch-editor {
     15        font-family: Arial, sans-serif;
     16}
     17
     18/* he_IL: Have <em> be bold rather than italic. */
     19.locale-he-il em {
     20        font-style: normal;
     21        font-weight: bold;
     22}
     23
     24
  • src/wp-admin/css/wp-admin-media.css

    Property changes on: src/wp-admin/css/wp-admin-localization.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  14.0 - Media Screen
     3------------------------------------------------------------------------------*/
     4
     5.media-item .describe {
     6        border-collapse: collapse;
     7        width: 100%;
     8        border-top-style: solid;
     9        border-top-width: 1px;
     10        clear: both;
     11        cursor: default;
     12}
     13
     14.media-item.media-blank .describe {
     15        border: 0;
     16}
     17
     18.media-item .describe th {
     19        vertical-align: top;
     20        text-align: left;
     21        padding: 5px 10px 10px;
     22        width: 140px;
     23}
     24
     25.media-item .describe .align th {
     26        padding-top: 0;
     27}
     28
     29.media-item .media-item-info tr {
     30        background-color: transparent;
     31}
     32
     33.media-item .describe td {
     34        padding: 0 8px 8px 0;
     35        vertical-align: top;
     36}
     37
     38.media-item thead.media-item-info td {
     39        padding: 4px 10px 0;
     40}
     41
     42.media-item .media-item-info .A1B1 {
     43        padding: 0 0 0 10px;
     44}
     45
     46.media-item td.savesend {
     47        padding-bottom: 15px;
     48}
     49
     50.media-item .thumbnail {
     51        max-height: 128px;
     52        max-width: 128px;
     53}
     54
     55#wpbody-content #async-upload-wrap a {
     56        display: none;
     57}
     58
     59.media-upload-form {
     60        margin-top: 20px;
     61}
     62
     63.media-upload-form td label {
     64        margin-right: 6px;
     65        margin-left: 2px;
     66}
     67
     68.media-upload-form .align .field label {
     69        display: inline;
     70        padding: 0 0 0 23px;
     71        margin: 0 1em 0 3px;
     72        font-weight: 600;
     73}
     74
     75.media-upload-form tr.image-size label {
     76        margin: 0 0 0 5px;
     77        font-weight: 600;
     78}
     79
     80.media-upload-form th.label label {
     81        font-weight: 600;
     82        margin: 0.5em;
     83        font-size: 13px;
     84}
     85
     86.media-upload-form th.label label span {
     87        padding: 0 5px;
     88}
     89
     90abbr.required {
     91        border: medium none;
     92        text-decoration: none;
     93}
     94
     95.media-item .describe input[type="text"],
     96.media-item .describe textarea {
     97        width: 460px;
     98}
     99
     100.media-item .describe p.help {
     101        margin: 0;
     102        padding: 0 0 0 5px;
     103}
     104
     105.media-item .edit-attachment,
     106.describe-toggle-on,
     107.describe-toggle-off {
     108        display: block;
     109        line-height: 36px;
     110        float: right;
     111}
     112
     113.media-item .describe-toggle-off,
     114.media-item.open .describe-toggle-on {
     115        display: none;
     116}
     117
     118.media-item.open .describe-toggle-off {
     119        display: block;
     120}
     121
     122#media-items .media-item {
     123        border-bottom-style: solid;
     124        border-bottom-width: 1px;
     125        min-height: 36px;
     126        position: relative;
     127        width: 100%;
     128}
     129
     130#media-items {
     131        width: 623px;
     132}
     133
     134.media-new-php #media-items {
     135        margin: 1em 0;
     136}
     137
     138#media-items:empty {
     139        border: 0 none;
     140}
     141
     142.media-item .filename {
     143        line-height: 36px;
     144        overflow: hidden;
     145}
     146
     147.media-item .error-div {
     148        padding-left: 10px;
     149}
     150
     151.media-item .pinkynail {
     152        float: left;
     153        margin: 2px 10px 0 0;
     154        max-width: 40px;
     155        max-height: 32px;
     156}
     157
     158.media-item .startopen,
     159.media-item .startclosed {
     160        display: none;
     161}
     162
     163.media-item .original {
     164        position: relative;
     165        height: 34px;
     166}
     167
     168.media-item .progress {
     169        float: right;
     170        height: 22px;
     171        margin: 7px 0 0;
     172        width: 200px;
     173        line-height: 2em;
     174        padding: 0;
     175        overflow: hidden;
     176        margin-bottom: 2px;
     177        border-radius: 22px;
     178        background: #ddd;
     179        -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
     180        box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
     181}
     182
     183.media-item .bar {
     184        z-index: 9;
     185        width: 0;
     186        height: 100%;
     187        margin-top: -22px;
     188        border-radius: 22px;
     189        background-color: #0074a2;
     190        -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
     191        box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
     192}
     193
     194.media-item .progress .percent {
     195        z-index: 10;
     196        position: relative;
     197        width: 200px;
     198        padding: 0;
     199        color: #fff;
     200        text-align: center;
     201        line-height: 22px;
     202        font-weight: 400;
     203        text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
     204}
     205
     206.upload-php .fixed .column-parent {
     207        width: 15%;
     208}
     209
     210.js .html-uploader #plupload-upload-ui {
     211        display: none;
     212}
     213
     214.js .html-uploader #html-upload-ui {
     215        display: block;
     216}
     217
     218.media-upload-form .media-item.error {
     219        margin: 0;
     220        padding: 0;
     221}
     222
     223.media-upload-form .media-item.error p,
     224.media-item .error-div {
     225        line-height: 16px;
     226        margin: 5px 10px;
     227        padding: 0;
     228}
     229
     230.media-item .error-div a.dismiss {
     231        display: block;
     232        float: right;
     233        margin: 5px 4px 0 15px;
     234}
     235
     236/*------------------------------------------------------------------------------
     237  14.1 - Media Library
     238------------------------------------------------------------------------------*/
     239
     240.find-box {
     241        width: 600px;
     242        height: 300px;
     243        overflow: hidden;
     244        padding: 33px 0 51px;
     245        position: absolute;
     246        z-index: 1000;
     247}
     248
     249.find-box-head {
     250        cursor: move;
     251        font-weight: 600;
     252        height: 2em;
     253        line-height: 2em;
     254        padding: 1px 12px;
     255        position: absolute;
     256        top: 5px;
     257        width: 100%;
     258}
     259
     260.find-box-inside {
     261        overflow: auto;
     262        padding: 6px;
     263        height: 100%;
     264}
     265
     266.find-box-search {
     267        overflow: hidden;
     268        padding: 9px;
     269        position: relative;
     270}
     271
     272.find-box-search .spinner {
     273        float: none;
     274        left: 125px;
     275        position: absolute;
     276        top: 9px;
     277}
     278
     279#find-posts-input {
     280        float: left;
     281        width: 140px;
     282        height: 24px;
     283}
     284
     285#find-posts-search {
     286        float: left;
     287        margin: 1px 4px 0 3px;
     288}
     289
     290#find-posts-response {
     291        margin: 8px 0;
     292        padding: 0 1px 6px;
     293}
     294
     295#find-posts-response table {
     296        width: 100%;
     297}
     298
     299#find-posts-response .found-radio {
     300        padding: 3px 0 0 8px;
     301        width: 15px;
     302}
     303
     304.find-box-buttons {
     305        padding: 8px;
     306        overflow: hidden;
     307}
     308
     309.find-box #resize-se {
     310        position: absolute;
     311        right: 1px;
     312        bottom: 1px;
     313}
     314
     315.ui-find-overlay {
     316        position: absolute;
     317        top: 0;
     318        left: 0;
     319        background-color: #000;
     320        opacity: 0.6;
     321        filter: alpha(opacity=60);
     322}
     323
     324ul#dismissed-updates {
     325        display: none;
     326}
     327
     328form.upgrade {
     329        margin-top: 8px;
     330}
     331
     332form.upgrade .hint {
     333        font-style: italic;
     334        font-size: 85%;
     335        margin: -0.5em 0 2em 0;
     336}
     337
     338#poststuff .inside .the-tagcloud {
     339        margin: 5px 0 10px;
     340        padding: 8px;
     341        border-width: 1px;
     342        border-style: solid;
     343        line-height: 1.8em;
     344        word-spacing: 3px;
     345        -webkit-border-radius: 6px;
     346        border-radius: 6px;
     347}
     348
     349.drag-drop #drag-drop-area {
     350        border: 4px dashed #bbb;
     351        height: 200px;
     352}
     353
     354.drag-drop .drag-drop-inside {
     355        margin: 70px auto 0;
     356        width: 250px;
     357}
     358
     359.drag-drop-inside p {
     360        color: #aaa;
     361        font-size: 14px;
     362        margin: 5px 0;
     363        display: none;
     364}
     365
     366.drag-drop .drag-drop-inside p {
     367        text-align: center;
     368}
     369
     370.drag-drop-inside p.drag-drop-info {
     371        font-size: 20px;
     372}
     373
     374.drag-drop .drag-drop-inside p,
     375.drag-drop-inside p.drag-drop-buttons {
     376        display: block;
     377}
     378
     379/*
     380#drag-drop-area:-moz-drag-over {
     381        border-color: #83b4d8;
     382}
     383borger color while dragging a file over the uploader drop area */
     384.drag-drop.drag-over #drag-drop-area {
     385        border-color: #83b4d8;
     386}
     387
     388#plupload-upload-ui {
     389        position: relative;
     390}
     391
     392
     393/*------------------------------------------------------------------------------
     394  14.2 - Image Editor
     395------------------------------------------------------------------------------*/
     396
     397.wp_attachment_details #attachment_caption {
     398        height: 4em;
     399}
     400
     401.describe .image-editor {
     402        vertical-align: top;
     403}
     404
     405.imgedit-wrap {
     406        position: relative;
     407}
     408
     409.imgedit-settings p {
     410        margin: 8px 0;
     411}
     412
     413.post-php .imgedit-wrap table {
     414        width: 100%;
     415}
     416
     417.describe .imgedit-wrap table td,
     418.wp_attachment_holder .imgedit-wrap table td {
     419        vertical-align: top;
     420        padding-top: 0;
     421}
     422
     423.describe .imgedit-wrap table td.imgedit-settings {
     424        padding: 0 5px;
     425}
     426
     427.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
     428        width: 250px;
     429}
     430
     431td.imgedit-settings input {
     432        margin-top: 0;
     433        vertical-align: middle;
     434}
     435
     436.imgedit-wait {
     437        position: absolute;
     438        top: 0;
     439        background: #fff url('../images/spinner.gif') no-repeat scroll 22px 10px;
     440        background-size: 20px 20px;
     441        opacity: 0.7;
     442        filter: alpha(opacity=70);
     443        width: 100%;
     444        height: 500px;
     445        display: none;
     446}
     447
     448.spinner {
     449        background: url('../images/spinner.gif') no-repeat;
     450        background-size: 20px 20px;
     451        display: none;
     452        float: right;
     453        opacity: 0.7;
     454        filter: alpha(opacity=70);
     455        width: 20px;
     456        height: 20px;
     457        margin: 2px 5px 0;
     458}
     459
     460.no-float {
     461        float: none;
     462}
     463
     464.media-disabled,
     465.imgedit-settings .disabled  {
     466        color: grey;
     467}
     468
     469.wp_attachment_image,
     470.A1B1 {
     471        overflow: hidden;
     472}
     473
     474.wp_attachment_image .button,
     475.A1B1 .button {
     476        float: left;
     477}
     478
     479.no-js .wp_attachment_image .button {
     480        display: none;
     481}
     482
     483.wp_attachment_image .spinner,
     484.A1B1 .spinner {
     485        float: left;
     486        padding: 0 0 4px 0;
     487        vertical-align: bottom;
     488}
     489
     490.imgedit-menu {
     491        margin: 0 0 12px;
     492        min-width: 300px;
     493}
     494
     495.imgedit-menu div {
     496        float: left;
     497        width: 32px;
     498        background: none;
     499        margin: 0 8px 0 0;
     500        height: 32px;
     501        -webkit-font-smoothing: antialiased;
     502        -moz-osx-font-smoothing: grayscale;
     503        text-align: center;
     504        line-height: 28px;
     505}
     506
     507.imgedit-menu div:before {
     508        font: normal 20px/1 'dashicons';
     509        speak: none;
     510        vertical-align: middle;
     511}
     512
     513.imgedit-crop:before {
     514        content:'\f165';
     515}
     516
     517.imgedit-rleft:before {
     518        content:'\f166';
     519}
     520
     521.imgedit-rright:before {
     522        content:'\f167';
     523}
     524
     525.imgedit-flipv:before {
     526        content:'\f168';
     527}
     528
     529.imgedit-fliph:before {
     530        content:'\f169';
     531}
     532
     533.imgedit-undo:before {
     534        content:'\f171';
     535}
     536
     537.imgedit-redo:before {
     538        content:'\f172';
     539}
     540
     541.imgedit-crop-wrap {
     542        position: relative;
     543}
     544
     545.imgedit-crop {
     546        margin: 0 8px 0 0;
     547}
     548
     549.imgedit-rleft {
     550        margin: 0 3px;
     551}
     552
     553.imgedit-rright {
     554        margin: 0 8px 0 3px;
     555}
     556
     557.imgedit-flipv {
     558        margin: 0 3px;
     559}
     560
     561.imgedit-fliph {
     562        margin: 0 8px 0 3px;
     563}
     564
     565.imgedit-undo {
     566        margin: 0 3px;
     567}
     568
     569.imgedit-redo {
     570        margin: 0 8px 0 3px;
     571}
     572
     573.imgedit-applyto img {
     574        margin: 0 8px 0 0;
     575}
     576
     577.imgedit-group-top {
     578        margin: 5px 0;
     579}
     580
     581.imgedit-applyto .imgedit-label {
     582        padding: 2px 0 0;
     583        display: block;
     584}
     585
     586.imgedit-help {
     587        display: none;
     588        font-style: italic;
     589        margin-bottom: 8px;
     590}
     591
     592a.imgedit-help-toggle {
     593        text-decoration: none;
     594}
     595
     596.form-table td.imgedit-response {
     597        padding: 0;
     598}
     599
     600.imgedit-submit {
     601        margin: 8px 0;
     602}
     603
     604.imgedit-submit-btn {
     605        margin-left: 20px;
     606}
     607
     608.imgedit-wrap .nowrap {
     609        white-space: nowrap;
     610}
     611
     612span.imgedit-scale-warn {
     613        color: red;
     614        font-size: 20px;
     615        font-style: normal;
     616        visibility: hidden;
     617        vertical-align: middle;
     618}
     619
     620.imgedit-group {
     621        margin-bottom: 8px;
     622        padding: 2px 10px;
     623}
     624
  • src/wp-admin/css/wp-admin-misc.css

    Property changes on: src/wp-admin/css/wp-admin-media.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  26.0 - Misc
     3------------------------------------------------------------------------------*/
     4
     5#excerpt,
     6.attachmentlinks {
     7        margin: 0;
     8        height: 4em;
     9        width: 98%;
     10}
     11
     12#template div {
     13        margin-right: 190px;
     14}
     15
     16p.pagenav {
     17        margin: 0;
     18        display: inline;
     19}
     20
     21.pagenav span {
     22        font-weight: 600;
     23        margin: 0 6px;
     24}
     25
     26.row-title {
     27        font-size: 14px !important;
     28        font-weight: 600;
     29}
     30
     31.column-author img, .column-username img {
     32        float: left;
     33        margin-right: 10px;
     34        margin-top: 1px;
     35}
     36
     37.row-actions {
     38        font-size: 13px;
     39        visibility: hidden;
     40        padding: 2px 0 0;
     41}
     42
     43tr:hover .row-actions,
     44.mobile .row-actions,
     45.row-actions.visible,
     46div.comment-item:hover .row-actions {
     47        visibility: visible;
     48}
     49
     50/* deprecated */
     51.row-actions-visible {
     52        padding: 2px 0 0;
     53}
     54
     55.form-table .pre {
     56        padding: 8px;
     57        margin: 0;
     58}
     59
     60table.form-table td .updated {
     61        font-size: 13px;
     62}
     63
     64.tagchecklist {
     65        margin-left: 14px;
     66        font-size: 12px;
     67        overflow: auto;
     68}
     69.tagchecklist br {
     70        display: none;
     71}
     72.tagchecklist strong {
     73        margin-left: -8px;
     74        position: absolute;
     75}
     76.tagchecklist span {
     77        margin-right: 25px;
     78        display: block;
     79        float: left;
     80        font-size: 13px;
     81        line-height: 1.8em;
     82        white-space: nowrap;
     83        cursor: default;
     84}
     85
     86.tagchecklist span a {
     87        margin: 1px 0 0 -17px;
     88        cursor: pointer;
     89        width: 20px;
     90        height: 20px;
     91        display: block;
     92        float: left;
     93        text-indent: 0;
     94        overflow: hidden;
     95        position: absolute;
     96}
     97
     98#poststuff h2 {
     99        margin-top: 20px;
     100        font-size: 1.5em;
     101        margin-bottom: 15px;
     102        padding: 0 0 3px;
     103        clear: left;
     104}
     105
     106#poststuff h3,
     107.metabox-holder h3 {
     108        font-size: 14px;
     109        padding: 8px 12px;
     110        margin: 0;
     111        line-height: 1.4;
     112}
     113
     114#poststuff .inside {
     115        margin: 6px 0 0 0;
     116}
     117
     118#poststuff .inside #parent_id,
     119#poststuff .inside #page_template {
     120        max-width: 100%;
     121}
     122
     123.inline-edit-row #post_parent,
     124.inline-edit-row select[name="page_template"] {
     125        max-width: 80%;
     126}
     127
     128.ie8 #poststuff .inside #parent_id,
     129.ie8 #poststuff .inside #page_template,
     130.ie8 .inline-edit-row #post_parent,
     131.ie8 .inline-edit-row select[name="page_template"] {
     132        width: 250px;
     133}
     134
     135#post-visibility-select {
     136        line-height: 1.5em;
     137        margin-top: 3px;
     138}
     139
     140#poststuff #submitdiv .inside {
     141        margin: 0;
     142        padding: 0;
     143}
     144
     145.edit-form-section {
     146        margin-bottom: 20px;
     147}
     148
     149#templateside ul li a {
     150        text-decoration: none;
     151}
     152
     153.tool-box .title {
     154        margin: 8px 0;
     155        font-size: 18px;
     156        font-weight: normal;
     157        line-height: 24px;
     158}
     159
     160#sidemenu {
     161        margin: -30px 15px 0 315px;
     162        list-style: none;
     163        position: relative;
     164        float: right;
     165        padding-left: 10px;
     166        font-size: 12px;
     167}
     168
     169#sidemenu a {
     170        padding: 0 7px;
     171        display: block;
     172        float: left;
     173        line-height: 28px;
     174        border-top-width: 1px;
     175        border-top-style: solid;
     176        border-bottom-width: 1px;
     177        border-bottom-style: solid;
     178        -webkit-transition: none;
     179        -moz-transition: none;
     180        transition: none;
     181}
     182
     183#sidemenu li {
     184        display: inline;
     185        line-height: 200%;
     186        list-style: none;
     187        text-align: center;
     188        white-space: nowrap;
     189        margin: 0;
     190        padding: 0;
     191}
     192
     193#sidemenu a.current {
     194        font-weight: normal;
     195        padding-left: 6px;
     196        padding-right: 6px;
     197        -webkit-border-top-left-radius: 3px;
     198        -webkit-border-top-right-radius: 3px;
     199        border-top-left-radius: 3px;
     200        border-top-right-radius: 3px;
     201        border-width: 1px;
     202        border-style: solid;
     203}
     204
     205#sidemenu li a .count-0 {
     206        display: none;
     207}
     208
     209.plugin-install #description,
     210.plugin-install-network #description {
     211        width: 60%;
     212}
     213
     214table .vers,
     215table .column-visible,
     216table .column-rating {
     217        text-align: left;
     218}
     219
     220.error-message {
     221        color: red;
     222        font-weight: 600;
     223}
     224
     225/* Scrollbar fix for bulk upgrade iframe */
     226body.iframe {
     227        height: 98%;
     228}
     229
     230/* Upgrader styles, Specific to Language Packs */
     231.lp-show-latest p {
     232        display: none;
     233}
     234.lp-show-latest p:last-child,
     235.lp-show-latest .lp-error p {
     236        display: block;
     237}
     238
     239/* - Only used once or twice in all of WP - deprecate for global style
     240------------------------------------------------------------------------------*/
     241td.media-icon {
     242        text-align: center;
     243        width: 80px;
     244        padding-top: 8px;
     245        padding-bottom: 8px;
     246}
     247
     248td.media-icon img {
     249        max-width: 80px;
     250        max-height: 60px;
     251}
     252
     253#howto {
     254        font-size: 11px;
     255        margin: 0 5px;
     256        display: block;
     257}
     258
     259.importers td {
     260        padding-right: 14px;
     261}
     262
     263.importers {
     264        font-size: 16px;
     265        width: auto;
     266}
     267
     268#post-body #post-body-content #namediv h3 {
     269        margin-top: 0;
     270}
     271
     272#namediv h3 label {
     273        vertical-align: baseline;
     274}
     275
     276#namediv table {
     277        width: 100%;
     278}
     279
     280#namediv td.first {
     281        width: 10px;
     282        white-space: nowrap;
     283}
     284
     285#namediv input {
     286        width: 98%;
     287}
     288
     289#namediv p {
     290        margin: 10px 0;
     291}
     292
     293#submitdiv h3 {
     294        margin-bottom: 0 !important;
     295}
     296
     297/* - Used - but could/should be deprecated with a CSS reset
     298------------------------------------------------------------------------------*/
     299.zerosize {
     300        height: 0;
     301        width: 0;
     302        margin: 0;
     303        border: 0;
     304        padding: 0;
     305        overflow: hidden;
     306        position: absolute;
     307}
     308
     309br.clear {
     310        height: 2px;
     311        line-height: 2px;
     312}
     313
     314.checkbox {
     315        border: none;
     316        margin: 0;
     317        padding: 0;
     318}
     319
     320fieldset {
     321        border: 0;
     322        padding: 0;
     323        margin: 0;
     324}
     325
     326.post-categories {
     327        display: inline;
     328        margin: 0;
     329        padding: 0;
     330}
     331
     332.post-categories li {
     333        display: inline;
     334}
     335
  • src/wp-admin/css/wp-admin-navmenu.css

    Property changes on: src/wp-admin/css/wp-admin-misc.css
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1/*------------------------------------------------------------------------------
     2  7.0 - Main Navigation (Left Menu)
     3------------------------------------------------------------------------------*/
     4
     5#adminmenuwrap {
     6        position: relative;
     7        float: left;
     8}
     9
     10/* side admin menu */
     11#adminmenu * {
     12        -webkit-user-select: none;
     13        -moz-user-select: none;
     14        user-select: none;
     15}
     16
     17#adminmenu li {
     18        margin: 0;
     19        padding: 0;
     20        cursor: pointer;
     21}
     22
     23#adminmenu a {
     24        display: block;
     25        line-height: 18px;
     26        padding: 2px 5px;
     27}
     28
     29#adminmenu li.menu-top {
     30        border: none;
     31        min-height: 34px;
     32        position: relative;
     33}
     34
     35#adminmenu .wp-submenu {
     36        list-style: none;
     37        position: absolute;
     38        top: -1000em;
     39        left: 160px;
     40        overflow: visible;
     41        word-wrap: break-word;
     42}
     43
     44#adminmenu .wp-submenu,
     45.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     46.folded #adminmenu .wp-has-current-submenu .wp-submenu {
     47        padding: 7px 0 8px;
     48        z-index: 9999;
     49}
     50
     51.js #adminmenu .sub-open,
     52.js #adminmenu .opensub .wp-submenu,
     53#adminmenu a.menu-top:focus + .wp-submenu,
     54.no-js li.wp-has-submenu:hover .wp-submenu {
     55        top: -1px;
     56}
     57
     58#adminmenu .wp-has-current-submenu .wp-submenu,
     59.no-js li.wp-has-current-submenu:hover .wp-submenu,
     60#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     61#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     62#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
     63        position: relative;
     64        z-index: 3;
     65        top: auto;
     66        left: auto;
     67        right: auto;
     68        bottom: auto;
     69        border: 0 none;
     70        margin-top: 0;
     71        -webkit-box-shadow: none;
     72        box-shadow: none;
     73}
     74
     75.folded #adminmenu .wp-submenu.sub-open,
     76.folded #adminmenu .opensub .wp-submenu,
     77.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     78.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
     79.folded #adminmenu a.menu-top:focus + .wp-submenu,
     80.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
     81.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu  {
     82        top: 0;
     83        left: 36px;
     84}
     85
     86.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     87.folded #adminmenu .wp-has-current-submenu .wp-submenu {
     88        position: absolute;
     89        top: -1000em;
     90}
     91
     92#adminmenu .wp-not-current-submenu .wp-submenu,
     93.folded #adminmenu .wp-has-current-submenu .wp-submenu {
     94        min-width: 160px;
     95        width: auto;
     96}
     97
     98#adminmenu .wp-submenu a {
     99        font-size: 13px;
     100        line-height: 1.2;
     101        margin: 0;
     102        padding: 6px 0;
     103}
     104
     105#adminmenu .wp-not-current-submenu li > a,
     106.folded #adminmenu .wp-has-current-submenu li > a {
     107        padding-right: 16px;
     108        padding-left: 14px;
     109        -moz-transition: all .1s ease-in-out;
     110        -webkit-transition: all .1s ease-in-out;
     111        transition: all .1s ease-in-out;
     112}
     113
     114#adminmenu .wp-has-current-submenu ul > li > a,
     115.folded #adminmenu li.menu-top .wp-submenu > li > a {
     116        padding: 6px 12px;
     117}
     118
     119#adminmenu a.menu-top,
     120#adminmenu .wp-submenu-head {
     121        font-size: 14px;
     122        font-weight: 400;
     123        line-height: 18px;
     124        padding: 0;
     125}
     126
     127#adminmenu .wp-submenu-head,
     128.folded #adminmenu .wp-menu-name {
     129        display: none;
     130}
     131
     132.folded #adminmenu .wp-submenu-head {
     133        display: block;
     134}
     135
     136#adminmenu .wp-submenu li {
     137        padding: 0;
     138        margin: 0;
     139        overflow: hidden;
     140}
     141
     142#adminmenu .wp-menu-image img {
     143        padding: 9px 0 0 0px;
     144        opacity: 0.6;
     145        filter: alpha(opacity=60);
     146}
     147
     148#adminmenu div.wp-menu-name {
     149        padding: 8px 0;
     150}
     151
     152#adminmenu div.wp-menu-image {
     153        float: left;
     154        width: 36px;
     155        height: 30px;
     156        margin: 0;
     157        text-align: center;
     158}
     159
     160#adminmenu div.wp-menu-image.svg {
     161        background-repeat: no-repeat;
     162        background-position: center;
     163        background-size: 20px auto;
     164}
     165
     166div.wp-menu-image:before {
     167        font: normal 20px/1 'dashicons' !important;
     168        speak: none;
     169        color: #999;
     170        padding: 8px 0;
     171        height: 36px;
     172        width: 20px;
     173        display: inline-block;
     174        -webkit-font-smoothing: antialiased;
     175        -moz-osx-font-smoothing: grayscale;
     176        -moz-transition: all .1s ease-in-out;
     177        -webkit-transition: all .1s ease-in-out;
     178        transition: all .1s ease-in-out;
     179}
     180
     181.folded #adminmenu div.wp-menu-image {
     182        width: 35px;
     183        height: 30px;
     184        position: absolute;
     185        z-index: 25;
     186}
     187
     188.folded #adminmenu a.menu-top {
     189        height: 34px;
     190}
     191
     192/* No @font-face support */
     193.no-font-face #adminmenu .wp-menu-image {
     194        display: none;
     195}
     196
     197.no-font-face #adminmenu div.wp-menu-name {
     198        padding: 8px 12px;
     199}
     200
     201.no-font-face.auto-fold #adminmenu .wp-menu-name {
     202        margin-left: 0;
     203}
     204/* End no @font-face support */
     205
     206/* Sticky admin menu */
     207.sticky-menu #adminmenuwrap {
     208        position: fixed;
     209        z-index: 99; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
     210}
     211
     212/* A new arrow */
     213
     214.wp-menu-arrow {
     215        display: none !important;
     216}
     217
     218ul#adminmenu a.wp-has-current-submenu {
     219        position: relative;
     220}
     221
     222ul#adminmenu a.wp-has-current-submenu:after,
     223ul#adminmenu > li.current > a.current:after {
     224        right: 0;
     225        border: solid transparent;
     226        content: " ";
     227        height: 0;
     228        width: 0;
     229        position: absolute;
     230        pointer-events: none;
     231        border-width: 8px;
     232        top: 50%;
     233        margin-top: -8px;
     234}
     235
     236.folded ul#adminmenu li:hover a.wp-has-current-submenu:after {
     237        display: none;
     238}
     239
     240.folded ul#adminmenu a.wp-has-current-submenu:after,
     241.folded ul#adminmenu > li a.current:after {
     242        border-width: 4px;
     243        margin-top: -4px;
     244}
     245
     246/* flyout menu arrow */
     247#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
     248        right: 0;
     249        border: solid transparent;
     250        content: " ";
     251        height: 0;
     252        width: 0;
     253        position: absolute;
     254        pointer-events: none;
     255        border-width: 8px;
     256        top: 10px;
     257        z-index: 10000;
     258}
     259
     260.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
     261        border-width: 4px;
     262        margin-top: -4px;
     263        top: 18px;
     264}
     265
     266/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
     267#adminmenu li.menu-top:hover,
     268#adminmenu li.opensub > a.menu-top,
     269#adminmenu li > a.menu-top:focus {
     270        position: relative;
     271}
     272
     273.folded #adminmenu li.menu-top:hover,
     274.folded #adminmenu li.opensub > a.menu-top,
     275.folded #adminmenu li > a.menu-top:focus {
     276        z-index: 10000;
     277}
     278
     279#adminmenu li.menu-top:hover .wp-menu-image img,
     280#adminmenu li.wp-has-current-submenu .wp-menu-image img {
     281        opacity: 1;
     282        filter: alpha(opacity=100);
     283}
     284
     285#adminmenu li.wp-menu-separator {
     286        height: 3px;
     287        padding: 0;
     288        margin: 0 0 6px 0;
     289        border-width: 1px 0;
     290        border-style: solid;
     291        cursor: inherit;
     292}
     293
     294#adminmenu div.separator {
     295        height: 1px;
     296        padding: 0;
     297        border-width: 1px 0 0 0;
     298        border-style: solid;
     299}
     300
     301#adminmenu .wp-submenu .wp-submenu-head {
     302        font-weight: 400;
     303        font-size: 14px;
     304        padding: 8px 4px 8px 11px;
     305        margin: -7px 0px 4px;
     306}
     307
     308#adminmenu li.current,
     309.folded #adminmenu li.wp-menu-open {
     310        border: 0 none;
     311}
     312
     313#adminmenu .awaiting-mod,
     314#adminmenu span.update-plugins,
     315#sidemenu li a span.update-plugins {
     316        display: inline-block;
     317        font-size: 9px;
     318        line-height: 17px;
     319        font-weight: 600;
     320        margin: 1px 0 0 2px;
     321        vertical-align: top;
     322        -webkit-border-radius: 10px;
     323        border-radius: 10px;
     324        z-index: 26;
     325}
     326
     327#adminmenu li .awaiting-mod span,
     328#adminmenu li span.update-plugins span,
     329#sidemenu li a span.update-plugins span {
     330        display: block;
     331        padding: 0 6px;
     332}
     333
     334#adminmenu li span.count-0,
     335#sidemenu li a .count-0 {
     336        display: none;
     337}
     338
     339#adminmenu #collapse-menu {
     340        font-size: 13px;
     341        line-height: 34px;
     342        margin-top: 10px;
     343}
     344
     345.folded #collapse-menu span {
     346        display: none;
     347}
     348
     349#collapse-button,
     350#collapse-button div {
     351        width: 15px;
     352        height: 15px;
     353}
     354
     355#collapse-button {
     356        float: left;
     357        height: 15px;
     358        margin: 10px 8px 10px 11px;
     359        width: 15px;
     360
     361        -webkit-border-radius: 10px;
     362        border-radius: 10px;
     363}
     364
     365#wpwrap #collapse-button div {
     366        padding: 0;
     367}
     368
     369#collapse-button div:after {
     370        content: '\f148';
     371        display: block;
     372        line-height: 15px;
     373        left: -3px;
     374        top: -3px;
     375        font: normal 20px/1 'dashicons' !important;
     376        speak: none;
     377        margin: 0 auto;
     378        padding: 0 !important;
     379        position: relative;
     380        text-align: center;
     381        width: 20px;
     382        -moz-transition: all .1s ease-in-out;
     383        -webkit-transition: all .1s ease-in-out;
     384        transition: all .1s ease-in-out;
     385
     386        -webkit-font-smoothing: antialiased;
     387        -moz-osx-font-smoothing: grayscale;
     388}
     389
     390.folded #collapse-button div:after,
     391.rtl #collapse-button div:after {
     392        -ms-transform: rotate(180deg);
     393        -webkit-transform: rotate(180deg);
     394        transform: rotate(180deg);
     395}
     396
     397.rtl.folded #collapse-button div:after {
     398        -ms-transform: none;
     399        -webkit-transform: none;
     400        transform: none;
     401}
     402
     403/* Auto-folding of the admin menu */
     404@media only screen and (max-width: 900px) {
     405        .auto-fold #wpcontent,
     406        .auto-fold #wpfooter {
     407                margin-left: 56px;
     408        }
     409
     410        .auto-fold #adminmenuback,
     411        .auto-fold #adminmenuwrap,
     412        .auto-fold #adminmenu,
     413        .auto-fold #adminmenu li.menu-top {
     414                width: 36px;
     415        }
     416
     417        .auto-fold #adminmenu .wp-submenu.sub-open,
     418        .auto-fold #adminmenu .opensub .wp-submenu,
     419        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
     420        .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
     421        .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
     422        .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
     423                top: 0px;
     424                left: 36px;
     425        }
     426
     427        .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
     428        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
     429                position: absolute;
     430                top: -1000em;
     431                margin-right: -1px;
     432                padding: 7px 0 8px;
     433                z-index: 9999;
     434        }
     435
     436        .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
     437                min-width: 150px;
     438                width: auto;
     439        }
     440
     441        .auto-fold #adminmenu .wp-has-current-submenu li > a {
     442                padding-right: 16px;
     443                padding-left: 14px;
     444        }
     445
     446
     447        .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
     448                padding-left: 12px;
     449        }
     450
     451        .auto-fold #adminmenu .wp-menu-name {
     452                display: none;
     453        }
     454
     455        .auto-fold #adminmenu .wp-submenu-head {
     456                display: block;
     457        }
     458
     459        .auto-fold #adminmenu div.wp-menu-image {
     460                height: 30px;
     461                width: 34px;
     462                position: absolute;
     463                z-index: 25;
     464        }
     465
     466        .auto-fold #adminmenu a.menu-top {
     467                height: 34px;
     468        }
     469
     470        .auto-fold #adminmenu li.wp-menu-open {
     471                border: 0 none;
     472        }
     473
     474        .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
     475                margin-bottom: 0;
     476        }
     477
     478        .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
     479                display: none;
     480        }
     481
     482        .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
     483                border-width: 4px;
     484                margin-top: -4px;
     485                top: 16px;
     486        }
     487
     488        .auto-fold ul#adminmenu a.wp-has-current-submenu:after,
     489        .auto-fold ul#adminmenu > li a.current:after {
     490                border-width: 4px;
     491                margin-top: -4px;
     492        }
     493
     494        .auto-fold #adminmenu li.menu-top:hover,
     495        .auto-fold #adminmenu li.opensub > a.menu-top,
     496        .auto-fold #adminmenu li > a.menu-top:focus {
     497                z-index: 10000;
     498        }
     499
     500        .auto-fold #collapse-menu span {
     501                display: none;
     502        }
     503
     504        .auto-fold #collapse-button div {
     505                background: none;
     506        }
     507
     508        .auto-fold #collapse-button div:after {
     509                -ms-transform: rotate(180deg);
     510                -webkit-transform: rotate(180deg);
     511                transform: rotate(180deg);
     512        }
     513
     514        .rtl.auto-fold #collapse-button div:after {
     515                -ms-transform: none;
     516                -webkit-transform: none;