Plugin Directory

Changeset 1760158


Ignore:
Timestamp:
11/07/2017 03:09:07 PM (8 years ago)
Author:
miqrogroove
Message:

High Contrast Admin v1.1.2

Location:
high-contrast-admin/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • high-contrast-admin/trunk/default42.css

    r1559494 r1760158  
    22 * High Contrast Admin Color Scheme by Robert Chapin
    33 *
    4  * Tested and working on 4.4 and 4.7.  Should be compatible with 4.2.
     4 * Tested and working on 4.4, 4.7, and 4.8.  Should be compatible with 4.2.
    55 * Modifies the styles found in:
    66 *  wp-admin/css/common.css
     
    7171/* Alternating Row Color */
    7272.striped > tbody > :nth-child(odd),
    73 .alternate {
     73.alternate,
     74.community-events ul {
    7475    background-color: #FFF;
    7576}
     
    110111    background-color: #000;
    111112}
     113
     114kbd,
     115code,
    112116#plugin-information pre,
    113117#plugin-information code {
  • high-contrast-admin/trunk/high-contrast.php

    r1559508 r1760158  
    1111 *
    1212 * @author: Robert Chapin
    13  * @version: 1.1.1
    14  * @copyright Copyright © 2016 by Robert Chapin
     13 * @version: 1.1.2
     14 * @copyright Copyright © 2017 by Robert Chapin
    1515 * @license GPL
    1616 *
     
    4545 */
    4646function miqro_high_contrast_admin() {
     47    $anti_cache = '?css=2'; // Increment on any CSS revision.
     48
    4749    $key = 'high_contrast';
    4850    $name = 'High Contrast';
    49     $url = plugins_url( "default42.css", __FILE__ );
     51    $url = plugins_url( 'default42.css', __FILE__ ) . $anti_cache;
    5052    $colors = array( '#222', '#FFF', '#000', '#0073aa' );
    5153
     
    5456    $key = 'high_white';
    5557    $name = 'High Contrast White';
    56     $url = plugins_url( "white42.css", __FILE__ );
     58    $url = plugins_url( 'white42.css', __FILE__ ) . $anti_cache;
    5759    $colors = array( '#F0F0F0', '#FFF', '#000', '#04a4cc' );
    5860
     
    6163
    6264/**
    63  * Tested and working on 3.1 through 4.7.
     65 * Tested and working on 3.1 through 4.8.
    6466 * Corrects login.css or wp-admin.css.
    6567 */
  • high-contrast-admin/trunk/readme.txt

    r1559508 r1760158  
    33Tags: accessibility, admin, background, color, contrast, high, scheme, theme
    44Requires at least: 4.2
    5 Tested up to: 4.7
    6 Stable tag: 1.1.1
     5Tested up to: 4.8
     6Stable tag: 1.1.2
    77
    88Adds admin color schemes for the visually impaired.
     
    4343== Changelog ==
    4444
     45= 1.1.2 =
     46* Updated for WordPress 4.8, released 7 November 2017.
     47* Fixed contrast for Events and News widget.
     48* Fixed contrast for code blocks.
     49
    4550= 1.1.1 =
    4651* Bug fixes, released 22 December 2016.
  • high-contrast-admin/trunk/white42.css

    r1559494 r1760158  
    22 * High Contrast White Admin Color Scheme by Robert Chapin
    33 *
    4  * Tested and working on 4.4 and 4.7.  Should be compatible with 4.2.
     4 * Tested and working on 4.4, 4.7, and 4.8.  Should be compatible with 4.2.
    55 * Modifies the styles found in:
    66 *  wp-admin/css/admin-menu.css
     
    7373/* Alternating Row Color */
    7474.striped > tbody > :nth-child(odd),
    75 .alternate {
     75.alternate,
     76.community-events ul {
    7677    background-color: #FFF;
    7778}
     
    112113    background-color: #000;
    113114}
     115
     116kbd,
     117code,
    114118#plugin-information pre,
    115119#plugin-information code {
Note: See TracChangeset for help on using the changeset viewer.