Plugin Directory

Changeset 661480


Ignore:
Timestamp:
01/31/2013 02:48:51 AM (13 years ago)
Author:
paulgpetty
Message:

small UI tweaks

Location:
wp-time-machine/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-time-machine/trunk/css/wp-time-machine.css

    r661122 r661480  
    4141}
    4242
     43#wpTimeMachine p.help a.close {
     44position: absolute;
     45right: -5px;
     46top: -10px;
     47width: auto;
     48border-radius: 5px;
     49padding: 0 4px;
     50border: 2px solid #999;
     51border-width: 2px 2px 0 0;
     52background: #ffc;
     53box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
     54text-decoration: none;
     55}
     56
    4357#wpTimeMachine div#RecentInfo {
    4458width:650px;
  • wp-time-machine/trunk/includes/wpTimeMachineCore.php

    r661130 r661480  
    436436                    ?>
    437437
    438                     <label for="offsite">Select an offsite service:</label> <br />
     438                    <label>Select an offsite service:</label> <br />
    439439
    440440                    <?php
     
    445445
    446446                    foreach ($offsites as $provider) {
    447                         echo "<input class=\"rd\" type=\"radio\" name=\"offsite\" value=\"".$provider['offsite_short']."\"> ".$provider['offsite_name']." ";
     447                        echo "<input class=\"rd\" type=\"radio\" name=\"offsite\" value=\"".$provider['offsite_short']."\" id=\"offsite_radio_".$provider['offsite_short']."\"> ";
     448                        echo "<label for=\"offsite_radio_".$provider['offsite_short']."\">".$provider['offsite_name']."</label> ";
    448449                    }
    449450                   
Note: See TracChangeset for help on using the changeset viewer.