Changeset 1760158
- Timestamp:
- 11/07/2017 03:09:07 PM (8 years ago)
- Location:
- high-contrast-admin/trunk
- Files:
-
- 4 edited
-
default42.css (modified) (3 diffs)
-
high-contrast.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
white42.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
high-contrast-admin/trunk/default42.css
r1559494 r1760158 2 2 * High Contrast Admin Color Scheme by Robert Chapin 3 3 * 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. 5 5 * Modifies the styles found in: 6 6 * wp-admin/css/common.css … … 71 71 /* Alternating Row Color */ 72 72 .striped > tbody > :nth-child(odd), 73 .alternate { 73 .alternate, 74 .community-events ul { 74 75 background-color: #FFF; 75 76 } … … 110 111 background-color: #000; 111 112 } 113 114 kbd, 115 code, 112 116 #plugin-information pre, 113 117 #plugin-information code { -
high-contrast-admin/trunk/high-contrast.php
r1559508 r1760158 11 11 * 12 12 * @author: Robert Chapin 13 * @version: 1.1. 114 * @copyright Copyright © 201 6by Robert Chapin13 * @version: 1.1.2 14 * @copyright Copyright © 2017 by Robert Chapin 15 15 * @license GPL 16 16 * … … 45 45 */ 46 46 function miqro_high_contrast_admin() { 47 $anti_cache = '?css=2'; // Increment on any CSS revision. 48 47 49 $key = 'high_contrast'; 48 50 $name = 'High Contrast'; 49 $url = plugins_url( "default42.css", __FILE__ );51 $url = plugins_url( 'default42.css', __FILE__ ) . $anti_cache; 50 52 $colors = array( '#222', '#FFF', '#000', '#0073aa' ); 51 53 … … 54 56 $key = 'high_white'; 55 57 $name = 'High Contrast White'; 56 $url = plugins_url( "white42.css", __FILE__ );58 $url = plugins_url( 'white42.css', __FILE__ ) . $anti_cache; 57 59 $colors = array( '#F0F0F0', '#FFF', '#000', '#04a4cc' ); 58 60 … … 61 63 62 64 /** 63 * Tested and working on 3.1 through 4. 7.65 * Tested and working on 3.1 through 4.8. 64 66 * Corrects login.css or wp-admin.css. 65 67 */ -
high-contrast-admin/trunk/readme.txt
r1559508 r1760158 3 3 Tags: accessibility, admin, background, color, contrast, high, scheme, theme 4 4 Requires at least: 4.2 5 Tested up to: 4. 76 Stable tag: 1.1. 15 Tested up to: 4.8 6 Stable tag: 1.1.2 7 7 8 8 Adds admin color schemes for the visually impaired. … … 43 43 == Changelog == 44 44 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 45 50 = 1.1.1 = 46 51 * Bug fixes, released 22 December 2016. -
high-contrast-admin/trunk/white42.css
r1559494 r1760158 2 2 * High Contrast White Admin Color Scheme by Robert Chapin 3 3 * 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. 5 5 * Modifies the styles found in: 6 6 * wp-admin/css/admin-menu.css … … 73 73 /* Alternating Row Color */ 74 74 .striped > tbody > :nth-child(odd), 75 .alternate { 75 .alternate, 76 .community-events ul { 76 77 background-color: #FFF; 77 78 } … … 112 113 background-color: #000; 113 114 } 115 116 kbd, 117 code, 114 118 #plugin-information pre, 115 119 #plugin-information code {
Note: See TracChangeset
for help on using the changeset viewer.