Plugin Directory

Changeset 2381564


Ignore:
Timestamp:
09/15/2020 12:56:00 AM (6 years ago)
Author:
chrisb10
Message:

Safari specific styling

Location:
browserly
Files:
17 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • browserly/trunk/browserly.php

    r2378401 r2381564  
    66  *
    77  * Plugin Name: Browserly
    8   * Description: Easily customise the user's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
     8  * Description: Easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
    99  * Author: Browserly
    10   * Version: 1.0.0
     10  * Version: 1.1.0
    1111  */
    1212
     
    1616
    1717// Customizer
    18 require plugin_dir_path( __FILE__ ) . 'includes/customizer.php';
     18require plugin_dir_path( __FILE__ ) . 'inc/customizer.php';
    1919
    2020// Get options
    21 require plugin_dir_path( __FILE__ ) . 'includes/get-options.php';
     21require plugin_dir_path( __FILE__ ) . 'inc/get-options.php';
  • browserly/trunk/readme.txt

    r2378411 r2381564  
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    99
    10 Easily customise the user's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
     10Browserly allows you to easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
    1111
    1212== Description ==
    1313
    14 Browserly allows you to easily customise the user's browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
     14Browserly allows you to easily customise the users browser, including setting the theme colour, and disabling overscroll or pull-to-refresh features.
    1515
    16 <b>Theme Colour:</b>
     16<h3>Theme Colour:</h3>
    1717
    18 Allow your branding to flow throughout the user's browser on mobile devices, by adjusting the theme colour of the address and notifications bar.
     18Allow your branding to flow throughout the users browser by adjusting the theme colour of the address and notifications bar.
    1919
    20 The default theme colour is #FF595E.
     20Applies to Chrome, Firefox, Opera, and Windows on mobile devices. The default theme colour is #FF595E.
    2121
    22 <b>Scroll Effects:</b>
     22<h4>Safari Specific Styling:</h4>
    2323
    24 Sometimes the browser's overscroll and pull-to-refresh features have unwanted or even unintended effects on the user experience. These can be easily disabled with a click of a button.
     24Easily set the notification bar in Safari on mobile devices to be transparent (theme colour isn't supported in Safari).
    2525
    26 <b>Easy Setup:</b>
     26<h3>Scroll Effects:</h3>
     27
     28Sometimes the browsers overscroll and pull-to-refresh features have unwanted effects on the user experience. These can be easily disabled site-wide, or by targeting the CSS class of a specific element.
     29
     30<h3>Easy Setup:</h3>
    2731
    2832Browserly can be set up in seconds. All options are available within the WordPress Customizer > Browserly.
     
    47511.0.0
    4852Initial release
     531.1.0
     54Feature: Safari Specific Styling
  • browserly/trunk/uninstall.php

    r2378401 r2381564  
    1616$wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_pulltorefresh'" );
    1717$wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_overscroll'" );
     18$wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'browserly_safari_notification'" );
Note: See TracChangeset for help on using the changeset viewer.