Plugin Directory

Changeset 2180978


Ignore:
Timestamp:
10/27/2019 01:27:40 PM (6 years ago)
Author:
Will Brownsberger
Message:

4.5.3.6

Location:
wp-issues-crm
Files:
5 edited
19 copied

Legend:

Unmodified
Added
Removed
  • wp-issues-crm/tags/4.5.3.6/css/dashboard.css

    r2157599 r2180978  
    9797    border: none;
    9898}
    99 .wic-dashboard input {
     99#wp-issues-crm .wic-dashboard input[type=text] {
    100100    color: #999;
    101101}
  • wp-issues-crm/tags/4.5.3.6/css/main.css

    r2145245 r2180978  
     1/*
     2*
     3* preserve legacy styling with upgrade to 5.3
     4*
     5*/
     6
     7   
     8/* Legacy styles */
     9#wp-issues-crm input[type=text] {
     10    border: 1px solid #ddd;
     11    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
     12    border-radius: 0px;
     13    background-color: #fff;
     14    line-height: normal;
     15    min-height: 0px;
     16    color: #32373c;
     17    outline: 0;
     18    transition: 50ms border-color ease-in-out;
     19    padding: 3px 5px;
     20}
     21#wp-issues-crm input[type=text]:focus {
     22    border-color: #5b9dd9;
     23    box-shadow: 0 0 2px rgba(30,140,190,.8);
     24    outline: 2px solid transparent;
     25}
     26
     27
     28/* Legacy styles */
     29#wp-issues-crm textarea {
     30    border: 1px solid #ddd;
     31    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
     32    background-color: #fff;
     33    border-radius: 0px;
     34    color: #32373c;
     35    outline: 0;
     36    transition: 50ms border-color ease-in-out;
     37}
     38#wp-issues-crm textarea:focus {
     39    border-color: #5b9dd9;
     40    box-shadow: 0 0 2px rgba(30,140,190,.8);
     41    outline: 2px solid transparent;
     42}
     43
     44/* Legacy styles */
     45#wp-issues-crm input[type=checkbox] {
     46    border-radius: 0px;
     47}
     48
     49
    150/*
    251*
  • wp-issues-crm/tags/4.5.3.6/readme.txt

    r2170600 r2180978  
    44Tags: contact, crm, constituent, customer, issues, list, email, forms, database, upload
    55Requires at least: 5
    6 Tested up to: 5.2.1
    7 Stable tag: 4.5.3.5
     6Tested up to: 5.3
     7Stable tag: 4.5.3.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    108108
    109109== Changelog ==
     110= 4.5.3.6 =
     111* CSS changes to preserve look as WP changes css
    110112= 4.5.3.5 =
    111113* Convert all links in incoming email to open in new window on parse
  • wp-issues-crm/tags/4.5.3.6/wp-issues-crm.php

    r2170600 r2180978  
    44 * Plugin URI: http://wp-issues-crm.com
    55 * Description: Constituent Relationship Management for organizations that respond to constituents.  Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories.
    6  * Version: 4.5.3.5
     6 * Version: 4.5.3.6
    77 * Author: Will Brownsberger
    88 * Author URI: http://willbrownsberger.com
     
    3939// set database version global;
    4040global $wp_issues_crm_db_version;
    41 $wp_issues_crm_db_version = '4.5.3.4';
     41$wp_issues_crm_db_version = '4.5.3.6';
    4242/*
    4343* set js_css version global -- three possibilities:
     
    4848*/
    4949global $wp_issues_crm_js_css_version;
    50 $wp_issues_crm_js_css_version = '4.5.3.4'; // may or not be set at release time
     50$wp_issues_crm_js_css_version = '4.5.3.6'; // may or not be set at release time
    5151if ( '' == $wp_issues_crm_js_css_version ) {
    5252    if ( strpos ( site_url(), 'localhost' ) > 0 ) {
  • wp-issues-crm/trunk/css/dashboard.css

    r2157599 r2180978  
    9797    border: none;
    9898}
    99 .wic-dashboard input {
     99#wp-issues-crm .wic-dashboard input[type=text] {
    100100    color: #999;
    101101}
  • wp-issues-crm/trunk/css/main.css

    r2145245 r2180978  
     1/*
     2*
     3* preserve legacy styling with upgrade to 5.3
     4*
     5*/
     6
     7   
     8/* Legacy styles */
     9#wp-issues-crm input[type=text] {
     10    border: 1px solid #ddd;
     11    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
     12    border-radius: 0px;
     13    background-color: #fff;
     14    line-height: normal;
     15    min-height: 0px;
     16    color: #32373c;
     17    outline: 0;
     18    transition: 50ms border-color ease-in-out;
     19    padding: 3px 5px;
     20}
     21#wp-issues-crm input[type=text]:focus {
     22    border-color: #5b9dd9;
     23    box-shadow: 0 0 2px rgba(30,140,190,.8);
     24    outline: 2px solid transparent;
     25}
     26
     27
     28/* Legacy styles */
     29#wp-issues-crm textarea {
     30    border: 1px solid #ddd;
     31    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
     32    background-color: #fff;
     33    border-radius: 0px;
     34    color: #32373c;
     35    outline: 0;
     36    transition: 50ms border-color ease-in-out;
     37}
     38#wp-issues-crm textarea:focus {
     39    border-color: #5b9dd9;
     40    box-shadow: 0 0 2px rgba(30,140,190,.8);
     41    outline: 2px solid transparent;
     42}
     43
     44/* Legacy styles */
     45#wp-issues-crm input[type=checkbox] {
     46    border-radius: 0px;
     47}
     48
     49
    150/*
    251*
  • wp-issues-crm/trunk/readme.txt

    r2170600 r2180978  
    44Tags: contact, crm, constituent, customer, issues, list, email, forms, database, upload
    55Requires at least: 5
    6 Tested up to: 5.2.1
    7 Stable tag: 4.5.3.5
     6Tested up to: 5.3
     7Stable tag: 4.5.3.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    108108
    109109== Changelog ==
     110= 4.5.3.6 =
     111* CSS changes to preserve look as WP changes css
    110112= 4.5.3.5 =
    111113* Convert all links in incoming email to open in new window on parse
  • wp-issues-crm/trunk/wp-issues-crm.php

    r2170600 r2180978  
    44 * Plugin URI: http://wp-issues-crm.com
    55 * Description: Constituent Relationship Management for organizations that respond to constituents.  Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories.
    6  * Version: 4.5.3.5
     6 * Version: 4.5.3.6
    77 * Author: Will Brownsberger
    88 * Author URI: http://willbrownsberger.com
     
    3939// set database version global;
    4040global $wp_issues_crm_db_version;
    41 $wp_issues_crm_db_version = '4.5.3.4';
     41$wp_issues_crm_db_version = '4.5.3.6';
    4242/*
    4343* set js_css version global -- three possibilities:
     
    4848*/
    4949global $wp_issues_crm_js_css_version;
    50 $wp_issues_crm_js_css_version = '4.5.3.4'; // may or not be set at release time
     50$wp_issues_crm_js_css_version = '4.5.3.6'; // may or not be set at release time
    5151if ( '' == $wp_issues_crm_js_css_version ) {
    5252    if ( strpos ( site_url(), 'localhost' ) > 0 ) {
Note: See TracChangeset for help on using the changeset viewer.