Making WordPress.org

Changeset 4736


Ignore:
Timestamp:
01/19/2017 06:05:17 PM (8 years ago)
Author:
danielbachhuber
Message:

make/cli: Increase readability of <pre><code>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-cli/wporg-cli.php

    r4733 r4736  
    1717add_action( 'edit_form_after_title', array( 'WPOrg_Cli\Markdown_Import', 'action_edit_form_after_title' ) );
    1818add_action( 'save_post', array( 'WPOrg_Cli\Markdown_Import', 'action_save_post' ) );
     19
     20add_action( 'wp_head', function(){
     21    ?>
     22    <style>
     23        pre code {
     24            padding: 0;
     25            line-height: 16px;
     26        }
     27    </style>
     28    <?php
     29});
Note: See TracChangeset for help on using the changeset viewer.