Plugin Directory

Changeset 860294


Ignore:
Timestamp:
02/18/2014 04:06:29 PM (12 years ago)
Author:
nazmur.r
Message:

Fixed css override issue
Updated version

Location:
text-selection-color/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • text-selection-color/trunk/readme.txt

    r801176 r860294  
    33Tags: text, selection, highlight, color
    44Requires at least: 3.0
    5 Tested up to: 3.7.1
    6 Stable tag: trunk
     5Tested up to: 3.8.1
     6Stable tag: 1.1
    77
    88Text Selection Color plugin helps to change the color of the selected text in the website easily.
     
    42421. Text Selection Color settings page
    43432. Selection color preview after changing colors
     44
     45== Changelog ==
     46
     47= 1.1 =
     48
     49* Fixed css override issue.
  • text-selection-color/trunk/text-selection-color.php

    r801176 r860294  
    22 /*
    33 Plugin Name: Text Selection Color
    4  Version: 1.0
     4 Version: 1.1
    55 Plugin URI: http://nazmurrahman.com/text-selection-color-wordpress-plugin/
    66 Author: Nazmur Rahman
     
    4949::selection{
    5050color: '.get_option('text-color').';
    51 background-color: '.get_option('text-bg-color').';
     51background-color: '.get_option('text-bg-color').' !important;
    5252}
    5353::-moz-selection{
    5454color: '.get_option('text-color').';
    55 background-color: '.get_option('text-bg-color').';
     55background-color: '.get_option('text-bg-color').' !important;
    5656}
    5757</style>';
Note: See TracChangeset for help on using the changeset viewer.