Changeset 1665959
- Timestamp:
- 05/28/2017 10:15:57 AM (9 years ago)
- Location:
- chartsbeds/trunk
- Files:
-
- 1 added
- 2 edited
-
hotelrev.php (modified) (2 diffs)
-
styles/dark.css (added)
-
styles/style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chartsbeds/trunk/hotelrev.php
r1665935 r1665959 3 3 * Plugin Name: Chartsbeds 4 4 * Description: Chartsbeds reviews plugin. 5 * Version: 1.0. 35 * Version: 1.0.4 6 6 * Author: ChartsBeds 7 7 * Author URI: https://chartsbeds.com … … 29 29 wp_enqueue_style( 'rvmain-css', plugins_url( 'styles/style.css', __FILE__ ) ); 30 30 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 } 32 35 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 33 41 wp_enqueue_script( 'circles', plugins_url( 'scripts/circles.js', __FILE__ ) ); 34 42 wp_enqueue_script( 'shorten', plugins_url( 'scripts/shorten.js', __FILE__ ) ); 43 35 44 } 36 45 -
chartsbeds/trunk/styles/style.css
r1650855 r1665959 75 75 } 76 76 77 /*STAR RATING*/ 77 78 .testimonials-post i { 79 color: red; 80 } 81 /*STAR RATING*/ 78 82 .star-ratings { 79 83 unicode-bidi: bidi-override; … … 90 94 display: block; 91 95 left: 0; 96 height: 20px; 92 97 overflow: hidden; 93 98 }
Note: See TracChangeset
for help on using the changeset viewer.