Plugin Directory

Changeset 1665959


Ignore:
Timestamp:
05/28/2017 10:15:57 AM (9 years ago)
Author:
chartspms
Message:

1.0.4 version Added dark style and bootstrap cdn

Location:
chartsbeds/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • chartsbeds/trunk/hotelrev.php

    r1665935 r1665959  
    33* Plugin Name: Chartsbeds
    44* Description: Chartsbeds reviews plugin.
    5 * Version: 1.0.3
     5* Version: 1.0.4
    66* Author: ChartsBeds
    77* Author URI: https://chartsbeds.com
     
    2929    wp_enqueue_style( 'rvmain-css', plugins_url( 'styles/style.css', __FILE__ ) );
    3030    wp_register_style( 'rvmain-css', plugins_url( 'styles/style.css', __FILE__ ) );
    31 
     31    if(!empty(get_option("dark_on"))){
     32    wp_enqueue_style( 'rvdark-css', plugins_url( 'styles/dark.css', __FILE__ ) );
     33    wp_register_style( 'rvdark-css', plugins_url( 'styles/dark.css', __FILE__ ) );
     34    }
    3235    wp_enqueue_style( 'font-awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
     36   
     37    if(!empty(get_option("bootstrap_on"))){
     38        wp_enqueue_style( 'bootstrapcdn', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css' );
     39    }
     40   
    3341    wp_enqueue_script( 'circles', plugins_url( 'scripts/circles.js', __FILE__ ) );
    3442    wp_enqueue_script( 'shorten', plugins_url( 'scripts/shorten.js', __FILE__ ) );
     43
    3544}
    3645
  • chartsbeds/trunk/styles/style.css

    r1650855 r1665959  
    7575}
    7676
    77 /*STAR RATING*/
     77
     78.testimonials-post i {
     79    color: red;
     80}
     81 /*STAR RATING*/
    7882.star-ratings {
    7983    unicode-bidi: bidi-override;
     
    9094    display: block;
    9195    left: 0;
     96    height: 20px;
    9297    overflow: hidden;
    9398}
Note: See TracChangeset for help on using the changeset viewer.