Make WordPress Core

Changeset 9658


Ignore:
Timestamp:
11/13/2008 06:29:55 AM (16 years ago)
Author:
markjaquith
Message:

Styles for code and kbd from Matt Thomas. fixes #7339

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r9390 r9658  
    180180<h3><?php _e('Optional'); ?></h3>
    181181<?php if ($is_apache) : ?>
    182     <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
     182    <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <kbd>topics</kbd> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
    183183<?php else : ?>
    184184    <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
  • trunk/wp-admin/options-writing.php

    r9550 r9658  
    8181
    8282<h3><?php _e('Post via e-mail') ?></h3>
    83 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
     83<p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
    8484
    8585<table class="form-table">
  • trunk/wp-admin/wp-admin.css

    r9644 r9658  
    158158.code {
    159159    font-family: "Courier New", Courier, monospace;
     160}
     161
     162kbd, code {
     163    background: #e5e5e5;
     164    padding: 2px 3px;
     165    margin: 0 1px;
     166    font-size: 12px;
    160167}
    161168
  • trunk/wp-includes/script-loader.php

    r9655 r9658  
    302302    $rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'press-this-ie', 'plugin-install', 'farbtastic' );
    303303
    304     $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081112' );
     304    $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081112b' );
    305305    $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
    306306
Note: See TracChangeset for help on using the changeset viewer.