Changeset 2638540
- Timestamp:
- 12/02/2021 12:18:26 PM (4 years ago)
- Location:
- janeman-core
- Files:
-
- 7 added
- 3 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/janeman-core.zip (added)
-
trunk/assets/css/admin-styles.css (added)
-
trunk/assets/css/style.css (modified) (1 diff)
-
trunk/assets/img/wp-offer.jpg (added)
-
trunk/include (added)
-
trunk/include/theme-functions.php (added)
-
trunk/janeman-core.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/widgets/janeman-thanks.php (added)
Legend:
- Unmodified
- Added
- Removed
-
janeman-core/trunk/assets/css/style.css
r2638360 r2638540 1015 1015 } 1016 1016 } 1017 1018 /*site-footer*/ 1019 .site-footer-thanks { 1020 text-align: center; 1021 } 1022 .site-footer-thanks h2 { 1023 font-family: "Great Vibes", cursive; 1024 font-size: 67px; 1025 color: #fff; 1026 margin: 0 0 0.3em; 1027 padding: 0 250px; 1028 text-transform: capitalize; 1029 letter-spacing: 5px; 1030 } 1031 1032 @media (max-width: 1199px) { 1033 .site-footer-thanks h2 { 1034 font-size: 55px; 1035 padding: 0 200px; 1036 } 1037 } 1038 1039 @media (max-width: 991px) { 1040 .site-footer-thanks h2 { 1041 font-size: 45px; 1042 padding: 0; 1043 } 1044 } 1045 1046 @media (max-width: 767px) { 1047 .site-footer-thanks h2 { 1048 font-size: 35px; 1049 letter-spacing: 2px; 1050 } 1051 } 1052 1053 .site-footer-thanks h2 + span { 1054 font-size: 18px; 1055 color: #fff; 1056 } 1057 1058 @media (max-width: 767px) { 1059 .site-footer-thanks h2 + span { 1060 font-size: 15px; 1061 } 1062 } 1063 -
janeman-core/trunk/janeman-core.php
r2638360 r2638540 3 3 Plugin Name: Janeman Core 4 4 Plugin URI: https://annurtheme.com/plugins/janemancore 5 Description: A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change formstyle using this widget.6 Version: 1.0. 05 Description: A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget. 6 Version: 1.0.1 7 7 Author: annurtheme 8 8 Author URI: https://annurtheme.com … … 20 20 // Plugin URL 21 21 define( 'JANEMANCORE_PLUGIN_URL', plugins_url( '/', __FILE__ ) ); 22 23 // Plugin PATH 24 define( 'JANEMANCORE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 25 define( 'JANEMANCORE_PLUGIN_ASTS', JANEMANCORE_PLUGIN_URL . 'assets' ); 26 define( 'JANEMANCORE_PLUGIN_IMGS', JANEMANCORE_PLUGIN_ASTS . '/img' ); 27 define( 'JANEMANCORE_PLUGIN_INC', JANEMANCORE_PLUGIN_PATH . 'include' ); 28 29 // Extra functions 30 require_once( JANEMANCORE_PLUGIN_INC . '/theme-functions.php' ); 22 31 23 32 final class JanemancoreExtension { … … 73 82 add_action( "elementor/frontend/after_enqueue_styles", [ $this, 'janemancore_assets_styles' ] ); 74 83 add_action( "elementor/frontend/after_enqueue_scripts", [ $this, 'janemancore_assets_scripts' ] ); 84 add_action( "admin_enqueue_scripts", [ $this, 'janemancore_admin_scripts_styles' ] ); 85 75 86 76 87 } … … 89 100 } 90 101 102 /** 103 * Enqueue Files for BackEnd 104 */ 105 function janemancore_admin_scripts_styles() { 106 wp_enqueue_style("admin-style",plugins_url("/assets/css/admin-styles.css",__FILE__)); 107 } 108 91 109 public function register_new_category( $manager ) { 92 110 $manager->add_category( 'annurtheme-category', [ 93 'title' => __( 'Janemanpro Theme : By annurthemes', 'janemancore' ),111 'title' => esc_html__( 'Janemanpro Theme : By annurthemes', 'janemancore' ), 94 112 'icon' => 'fa fa-chart' 95 113 ] ); … … 99 117 require_once( __DIR__ . '/widgets/janeman-slider.php' ); 100 118 require_once( __DIR__ . '/widgets/janeman-couple.php' ); 119 require_once( __DIR__ . '/widgets/janeman-thanks.php' ); 101 120 } 102 121 -
janeman-core/trunk/readme.txt
r2638360 r2638540 7 7 License: GPl V2 8 8 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 9 Stable tag: 1.0. 09 Stable tag: 1.0.1 10 10 11 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change formstyle using this widget.11 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget. 12 12 13 13 == Description == 14 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change formstyle using this widget.14 A simple and nice janeman theme core plugin for elementor Widget. It's help you to add section drag and drop. You can change section style using this widget. 15 15 16 16 For Free & Premium WordPress Theme visit : [AnnurTheme](https://annurtheme.com/). … … 28 28 == Changelog == 29 29 30 = 1.0.1 = 31 * added: Footer Thanks Widget Added 32 * added: Footer Widget CSS 33 30 34 = 1.0.0 = 31 35 * Initial Release
Note: See TracChangeset
for help on using the changeset viewer.