Changeset 2751776
- Timestamp:
- 07/04/2022 05:10:05 PM (4 years ago)
- Location:
- skill-bar-wp/trunk
- Files:
-
- 5 edited
-
inc/class-template.php (modified) (1 diff)
-
inc/css/wpskill.css (modified) (1 diff)
-
inc/shortcode.php (modified) (1 diff)
-
inc/style.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
skill-bar-wp/trunk/inc/class-template.php
r2648902 r2751776 79 79 wp_enqueue_style('skillbarwp-style-css', plugin_dir_url(__FILE__). 'css/wpskill.css'); 80 80 81 wp_enqueue_script( 'jquery' ); 82 81 83 wp_enqueue_script('skillbarwp-jquery-inview-js', plugin_dir_url(__FILE__). 'js/jquery.inview.js'); 82 84 -
skill-bar-wp/trunk/inc/css/wpskill.css
r2648902 r2751776 39 39 .skill-percentage span { 40 40 background: #7109A9; 41 width: 30px;42 height: 30px;43 display: block;44 41 position: absolute; 45 right: - 12px;42 right: -20px; 46 43 font-size: 12px; 47 top: - 26px;48 border-radius: 100%;49 padding: 4px 8px;44 top: -36px; 45 border-radius: 0; 46 padding: 0px 9px; 50 47 font-family: 'Open Sans', sans-serif; 48 display: flex; 49 align-items: center; 50 justify-content: center; 51 51 } 52 52 53 53 .skill-percentage span:before { 54 content: ""; 55 position: absolute; 56 width: 8px; 57 height: 8px; 58 background: #7333aa; 59 bottom: -4px; 60 transform: rotate(45deg); 61 } 62 63 .skill-percentage span label { 64 margin-left: 2px; 65 font-size: 13px; 66 } 54 67 55 68 .skill-percentage{ -
skill-bar-wp/trunk/inc/shortcode.php
r2648902 r2751776 47 47 <h4><?php echo esc_html( $value['skill_title'] ); ?></h4> 48 48 <div class="skill-item"> 49 <div class="skill-percentage" aria-valuenow="<?php echo esc_attr( $value['skill_value'] ); ?>"><span><?php echo esc_html( $value['skill_value'] ); ?>< /span></div>49 <div class="skill-percentage" aria-valuenow="<?php echo esc_attr( $value['skill_value'] ); ?>"><span><?php echo esc_html( $value['skill_value'] ); ?><label><?php esc_html_e( '%', 'skillbarwp' ); ?></label></span></div> 50 50 </div> 51 51 </div> -
skill-bar-wp/trunk/inc/style.php
r2648902 r2751776 39 39 } 40 40 41 .skill-percentage span:before{ 42 background:<?php echo esc_attr( $valueBgColor ); ?>; 43 } 44 41 45 </style> -
skill-bar-wp/trunk/readme.txt
r2662003 r2751776 6 6 Tested up to: 5.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.