Plugin Directory

Changeset 1933430


Ignore:
Timestamp:
08/30/2018 09:35:53 PM (8 years ago)
Author:
sublimelinks
Message:

fixed sr-only text inside the progress bar

Location:
level-system
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • level-system/tags/1.0.0/includes/class-level_system-widgets.php

    r1930500 r1933430  
    100100                        <div class="progress center-block" style="width: 80%;">
    101101                            <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:<?php echo $bar;?>">
    102                                 <span class="sr-only"><?php echo $user_XP . " / " . $actualNextLevel ?></span>
     102                            <span class="sr-only"><?php echo "&nbsp;" . $user_XP . "&nbsp;/&nbsp;" . $actualNextLevel . "&nbsp;xp" ?></span>
    103103                            </div>
    104104                        </div> 
  • level-system/tags/1.0.0/public/css/level_system-public.css

    r1930500 r1933430  
    1717    max-width:350px;
    1818}
     19
     20.sr-only{
     21    display:inline-block;
     22}
  • level-system/trunk/includes/class-level_system-widgets.php

    r1930500 r1933430  
    100100                        <div class="progress center-block" style="width: 80%;">
    101101                            <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:<?php echo $bar;?>">
    102                                 <span class="sr-only"><?php echo $user_XP . " / " . $actualNextLevel ?></span>
     102                            <span class="sr-only"><?php echo "&nbsp;" . $user_XP . "&nbsp;/&nbsp;" . $actualNextLevel . "&nbsp;xp" ?></span>
    103103                            </div>
    104104                        </div> 
  • level-system/trunk/public/css/level_system-public.css

    r1930500 r1933430  
    1717    max-width:350px;
    1818}
     19
     20.sr-only{
     21    display:inline-block;
     22}
Note: See TracChangeset for help on using the changeset viewer.