Plugin Directory

Changeset 946394


Ignore:
Timestamp:
07/10/2014 05:36:56 PM (12 years ago)
Author:
gmichaelguy
Message:

Updating for 3.1.0 testing

Location:
mtouch-quiz/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mtouch-quiz/trunk/mtouchquiz.php

    r865582 r946394  
    44Plugin URI: http://gmichaelguy.com/quizplugin/
    55Description: Create a multiple choice quiz (or exam). This plugin was written with learning and mobility in mind.  The quiz interface is touch friendly. You can: specify hints based on answer selection; give a detailed explanation of the solution; choose multiple correct answers; specify when the correct answers are displayed; specify if a question may be attempted only once or many times; specify point values for each question; include customized start and finish screens; randomly order questions and/or answers; and more.  This plugin was built by pillaging the Quizzin plugin written by Binny V A, but please do not blame him for my ruining his plugin!
    6 Version: 3.0.7
     6Version: 3.0.8
    77Author: G. Michael Guy
    88Author URI: http://gmichaelguy.com
     
    3333 */
    3434 
    35 define( 'mtq_VERSION', '3.0.7' );
     35define( 'mtq_VERSION', '3.1.0' );
    3636define( 'mtq_URL','http://gmichaelguy.com/quizplugin/');
    3737define( 'mtq_DISPLAY_NAME','mTouch Quiz');
    3838define( 'mtq_database_version','1.6.5.4');
    39 define( 'mtq_use_min','1');
     39define( 'mtq_use_min','0');
    4040add_action( 'admin_menu', 'mtq_add_menu_links' );
    4141function mtq_add_menu_links() {
    4242    global $wp_version, $_registered_pages;
    43     $view_level= 'upload_files';
     43    $view_level= 'activate_plugins';
    4444    //$page = 'edit.php';
    4545    //if($wp_version >= '2.7') $page = 'tools.php';
     
    9292require('wpframe.php');
    9393function mtq_menu() {
    94     add_options_page(__('mTouch Quiz Plugin Options', 'mtouchquiz'), __('mTouch Quiz Plugin', 'mtouchquiz'), 'upload_files', 'mtouchquiz', 'mtq_plugin_options');
     94    add_options_page(__('mTouch Quiz Plugin Options', 'mtouchquiz'), __('mTouch Quiz Plugin', 'mtouchquiz'), 'activate_plugins', 'mtouchquiz', 'mtq_plugin_options');
    9595  }
    9696 
    9797 function mtq_plugin_options() {
    9898      //if (!current_user_can('manage_options'))  {
    99       if (!current_user_can('upload_files'))  {
     99      if (!current_user_can('activate_plugins'))  {
    100100        wp_die( __('You do not have sufficient permissions to access this page.','mtouchquiz') );
    101101      }
  • mtouch-quiz/trunk/mtq_core_style.css

    r638075 r946394  
    11.mtq_quiz_area div {
    2     max-width:none !important;
     2    max-width: none !important;
    33}
    44.mtq_css_letter_button {
    5     width:40px;
    6     height:40px;
    7     display:block;
    8     border-radius:40px;
    9     -moz-border-radius:40px;
    10     -webkit-border-radius:40px;
    11     -khtml-border-radius:40px;
    12     font-size:30px;
    13     line-height:40px;
    14     text-decoration:none;
    15     text-align:center;
     5    width: 40px;
     6    height: 40px;
     7    display: block;
     8    border-radius: 40px;
     9    -moz-border-radius: 40px;
     10    -webkit-border-radius: 40px;
     11    -khtml-border-radius: 40px;
     12    font-size: 30px;
     13    line-height: 40px;
     14    text-decoration: none;
     15    text-align: center;
    1616    font-family: Arial, Helvetica, sans-serif;
    1717}
    18 
    19 
    2018.mtqscrollable {
    21     position:relative;
    22     overflow:hidden;
    23 }
    24 
    25 .mtqscrollable .items {
     19    position: relative;
     20    overflow: hidden;
     21}
     22.mtqscrollable .items {
    2623    /* this cannot be too large */
    27     width:20000em;
    28     position:absolute;
    29     clear:both;
     24    width: 20000em;
     25    position: absolute;
     26    clear: both;
    3027}
    3128.items div {
    32     float:left;
     29    float: left;
    3330}
    3431/* active item */
    3532.mtqscrollable .active {
    36     position:relative;
    37     cursor:default;
     33    position: relative;
     34    cursor: default;
    3835}
    3936.mtq_quiz_area table {
    40     border:none;
     37    border: none;
    4138}
    4239.mtq_quiz_area th, .mtq_quiz_area td, .mtq_quiz_area tr td {
    43     border:none;
    44     padding:0;
    45     vertical-align:middle;
     40    border: none;
     41    padding: 0;
     42    vertical-align: middle;
    4643}
    4744.mtq_css_button {
    48     display:block;
    49     cursor:pointer;
    50     font-weight:600;
    51     font-size:125%;
    52     text-align:center;
    53     width:8em;
    54     margin-left:auto;
    55     margin-right:auto;
    56     -o-border-radius:2em;
    57     -moz-border-radius:2em;
    58     -webkit-border-radius:2em;
    59     border-radius:2em;
    60     padding:.5em;
     45    display: block;
     46    cursor: pointer;
     47    font-weight: 600;
     48    font-size: 125%;
     49    text-align: center;
     50    width: 8em;
     51    margin-left: auto;
     52    margin-right: auto;
     53    -o-border-radius: 2em;
     54    -moz-border-radius: 2em;
     55    -webkit-border-radius: 2em;
     56    border-radius: 2em;
     57    padding: .5em;
    6158}
    6259.mtq_css_button:hover {
    63     cursor:pointer;
     60    cursor: pointer;
    6461}
    6562.mtq_results_button {
    66     width:8em;
     63    width: 8em;
    6764}
    6865.mtq_list_item {
    69     cursor:pointer;
    70     padding-bottom:1em !important;
    71     padding-top:1em !important;
    72     font-size:200%;
     66    cursor: pointer;
     67    padding-bottom: 1em !important;
     68    padding-top: 1em !important;
     69    font-size: 200%;
    7370}
    7471.mtq_show_list {
    75     /*width:3.5em;*/
     72/*width:3.5em;*/
    7673}
    7774.mtq_list_item_complete {
    78     font-weight:400;
     75    font-weight: 400;
     76    color: #FFF;
     77}
     78.mtq_list_item-wrong, .mtq_list_item.mtq_list_item_complete.mtq_list_item-wrong {
     79    background:#B5281E!important;
     80    color: #FFF
     81}
     82.mtq_list_item-correct, .mtq_list_item.mtq_list_item_complete.mtq_list_item-correct {
     83    background: #063!important;
     84    color: #FFF;
     85}
     86.mtq_list_item-partial,.mtq_list_item.mtq_list_item_complete.mtq_list_item-partial {
     87    background: #09F!important;
     88    color: #FFF;
    7989}
    8090.mtq_listrow {
    8191    /*scroll display:none;*/
    82     width:100%;
     92    width: 100%;
    8393}
    8494.mtq_return_list {
    85     margin-top:1em;
    86     margin-bottom:1em;
     95    margin-top: 1em;
     96    margin-bottom: 1em;
    8797}
    8898.mtq_question_list_container {
    8999    /*scroll display:none;*/
    90     width:95% !important;
    91     font-weight:600;
    92     margin-left:auto;
    93     margin-right:auto;
    94     border-collapse:collapse;
    95     left:0;
     100    width: 95% !important;
     101    font-weight: 600;
     102    margin-left: auto;
     103    margin-right: auto;
     104    border-collapse: collapse;
     105    left: 0;
    96106}
    97107.mtq_question_list_container td {
    98     text-align:center;
    99     width:20%;
     108    text-align: center;
     109    width: 20%;
    100110}
    101111.mtq_question_list_container tr {
    102     padding-top:2em;
     112    padding-top: 2em;
    103113}
    104114.mtq_question_text {
    105115    padding-right: 2em;
    106     width:90%;
     116    width: 90%;
    107117}
    108118.mtq_question_list_container tr td {
    109     border:thin solid !important;
    110     border-collapse:collapse;
     119    border: thin solid !important;
     120    border-collapse: collapse;
    111121}
    112122.mtq_shaded_item_msg {
    113     display:block;
    114     width:25em;
    115     text-align:center;
    116     font-weight:600;
    117     border:thin solid;
    118     -o-border-radius:2em;
    119     -moz-border-radius:2em;
    120     -webkit-border-radius:2em;
    121     border-radius:2em;
    122     margin:.5em auto;
     123    display: block;
     124    width: 25em;
     125    text-align: center;
     126    font-weight: 600;
     127    border: thin solid;
     128    -o-border-radius: 2em;
     129    -moz-border-radius: 2em;
     130    -webkit-border-radius: 2em;
     131    border-radius: 2em;
     132    margin: .5em auto;
    123133}
    124134.mtq_quiz_status {
    125135    /*scroll display:none;*/
    126     text-align:center;
     136    text-align: center;
    127137}
    128138.mtq_quiz_area {
    129     text-align:left;
     139    text-align: left;
    130140}
    131141.mtq_hint {
    132     display:none;
    133     margin-left:3em;
    134     margin-top:1em;
    135     border:thin solid;
    136     -o-border-radius:1em;
    137     -moz-border-radius:1em;
    138     -webkit-border-radius:1em;
    139     border-radius:1em;
    140     padding:.5em;
    141     width:70% !important;
    142     float:right !important;
     142    display: none;
     143    margin-left: 3em;
     144    margin-top: 1em;
     145    border: thin solid;
     146    -o-border-radius: 1em;
     147    -moz-border-radius: 1em;
     148    -webkit-border-radius: 1em;
     149    border-radius: 1em;
     150    padding: .5em;
     151    width: 70% !important;
     152    float: right !important;
    143153}
    144154.mtq_hint_label {
    145     font-size:125%;
     155    font-size: 125%;
    146156}
    147157.mtq_answer_text {
    148     float:left;
    149     display:block;
     158    float: left;
     159    display: block;
    150160}
    151161.mtq_instructions {
    152     display:none;
    153     margin-bottom:1em;
     162    display: none;
     163    margin-bottom: 1em;
    154164}
    155165.mtq_javawarning {
    156     text-align:center;
    157     font-weight:600;
     166    text-align: center;
     167    font-weight: 600;
    158168}
    159169.mtq_quiztitle {
    160     text-align:center;
    161     display:block;
     170    text-align: center;
     171    display: block;
    162172}
    163173.mtq_results_request {
    164     display:block;
    165     text-align:center;
    166     margin-top:.5em;
     174    display: block;
     175    text-align: center;
     176    margin-top: .5em;
    167177}
    168178.mtq_question_heading_table {
    169     width:100% !important;
    170     border-collapse:collapse;
    171     margin:.5em 0;
    172     padding:0 0 .1em !important;
     179    width: 100% !important;
     180    border-collapse: collapse;
     181    margin: .5em 0;
     182    padding: 0 0 .1em !important;
    173183}
    174184.mtq_answer_table {
    175     width:85% !important;
     185    width: 85% !important;
    176186    padding-right: 1em;
    177     margin-top:1em;
    178     text-align:left;
    179     border-collapse:collapse;
    180     cursor:auto;
     187    margin-top: 1em;
     188    text-align: left;
     189    border-collapse: collapse;
     190    cursor: auto;
    181191}
    182192.mtq_answer_table td {
    183     padding-top:.5em !important;
    184     padding-bottom:.5em !important;
     193    padding-top: .5em !important;
     194    padding-bottom: .5em !important;
    185195}
    186196.mtq_oce_first {
    187     border-right:1em solid transparent;
    188     border-left:1em solid transparent;
    189     vertical-align:middle;
    190     text-align:center;
     197    border-right: 1em solid transparent;
     198    border-left: 1em solid transparent;
     199    vertical-align: middle;
     200    text-align: center;
    191201}
    192202.mtq_answer_td {
    193     margin-left:.25em;
     203    margin-left: .25em;
    194204}
    195205.mtq_letter_button_td {
    196     width:30px;
     206    width: 30px;
    197207}
    198208.mtq_explanation {
    199     display:none;
    200     margin-left:3em;
    201     width:80%;
    202     margin-top:1em;
    203     margin-bottom:3em;
    204     border:thin solid;
    205     -o-border-radius:1em;
    206     -moz-border-radius:1em;
    207     -webkit-border-radius:1em;
    208     border-radius:1em;
    209     padding:.5em;
     209    display: none;
     210    margin-left: 3em;
     211    width: 80%;
     212    margin-top: 1em;
     213    margin-bottom: 3em;
     214    border: thin solid;
     215    -o-border-radius: 1em;
     216    -moz-border-radius: 1em;
     217    -webkit-border-radius: 1em;
     218    border-radius: 1em;
     219    padding: .5em;
    210220}
    211221.mtq_explanation-label {
    212     display:block;
    213     padding-bottom:.25em;
    214     font-weight:600;
     222    display: block;
     223    padding-bottom: .25em;
     224    font-weight: 600;
    215225}
    216226.mtq_action_button {
    217     display:block;
    218     margin-top:.5em;
    219     margin-bottom:.5em;
    220     font-size:200%;
     227    display: block;
     228    margin-top: .5em;
     229    margin-bottom: .5em;
     230    font-size: 200%;
    221231}
    222232.mtq_css_next_button, .mtq_css_back_button {
    223     width:46px;
    224     height:30px;
    225     display:block;
    226     font-size:40px;
    227     text-align:center;
     233    width: 46px;
     234    height: 30px;
     235    display: block;
     236    font-size: 80px!important;
     237    text-align: center;
    228238}
    229239.mtq_listrow tbody, .mtq_listrow tr, .mtq_listrow td {
    230240    /*scroll display:none;*/
    231     width:100%;
     241    width: 100%;
    232242}
    233243.mtq_listrow_button:hover {
    234     background-position:0 7px;
    235     cursor:pointer;
     244    background-position: 0 7px;
     245    cursor: pointer;
    236246}
    237247.mtq_listrow_button-td {
    238     width:80px !important;
    239     display:block;
     248    width: 80px !important;
     249    display: block;
    240250}
    241251.mtq_quiz_results_bubble {
    242     display:none;
    243     -o-border-radius:1em;
    244     -moz-border-radius:1em;
    245     -webkit-border-radius:1em;
    246     border-radius:1em;
    247     margin-top:1em;
    248     margin-bottom:1em;
    249     border:none;
    250     padding:.5em;
     252    display: none;
     253    -o-border-radius: 1em;
     254    -moz-border-radius: 1em;
     255    -webkit-border-radius: 1em;
     256    border-radius: 1em;
     257    margin-top: 1em;
     258    margin-bottom: 1em;
     259    border: none;
     260    padding: .5em;
    251261}
    252262.mtq_quiz_results_highlight {
    253     margin-top:1em;
    254     font-size:75%;
    255     font-weight:600;
    256     text-align:center;
     263    margin-top: 1em;
     264    font-size: 75%;
     265    font-weight: 600;
     266    text-align: center;
    257267}
    258268.mtq_wrong_stamp {
    259     border:thin solid;
     269    border: thin solid;
    260270}
    261271.mtq_correct_stamp {
    262     border:thin solid;
     272    border: thin solid;
    263273}
    264274.mtq_partial_stamp {
    265     border:thin solid;
     275    color: #FFF;
     276    background: #09F;
     277    border-color: #09F;
     278    border: thin solid;
    266279}
    267280.mtq_question_label {
    268     font-weight:600;
    269     float:left;
     281    font-weight: 600;
     282    float: left;
    270283}
    271284.mtq_stamp {
    272     float:left;
    273     margin-left:.5em;
    274     margin-bottom:.25em;
    275     text-align:center;
    276     padding-left:.5em;
    277     padding-right:.5em;
    278     -o-border-radius:2em;
    279     -moz-border-radius:2em;
    280     -webkit-border-radius:2em;
    281     border-radius:2em;
    282     font-weight:600;
    283     text-transform:uppercase;
     285    float: left;
     286    margin-left: .5em;
     287    margin-bottom: .25em;
     288    text-align: center;
     289    padding-left: .5em;
     290    padding-right: .5em;
     291    -o-border-radius: 2em;
     292    -moz-border-radius: 2em;
     293    -webkit-border-radius: 2em;
     294    border-radius: 2em;
     295    font-weight: 600;
     296    text-transform: uppercase;
    284297}
    285298.mtq_correct_marker {
    286     display:block;
    287     width:40px;
    288     height:40px;
    289     background:url(images/correct.png) no-repeat 0 0;
     299    display: block;
     300    width: 40px;
     301    height: 40px;
     302    background: url(images/correct.png) no-repeat 0 0;
    290303}
    291304.mtq_wrong_marker {
    292     display:block;
    293     width:40px;
    294     height:40px;
    295     background:url(images/wrong.png) no-repeat 0 0;
     305    display: block;
     306    width: 40px;
     307    height: 40px;
     308    background: url(images/wrong.png) no-repeat 0 0;
    296309}
    297310.mtq_selected_row {
    298     font-weight:600;
    299 }
    300 /*.mtq_letter_button {
    301     display:block;
    302     width:40px;
    303     height:40px;
    304 }
    305 .mtq_letter_button:hover {
    306     background-position:0 -80px;
    307     cursor:pointer;
    308 }
    309 .mtq_letter_button_0 {
    310     background:url(images/0.png) no-repeat 0 -120px;
    311 }
    312 .mtq_letter_button_1 {
    313     background:url(images/1.png) no-repeat 0 -120px;
    314 }
    315 .mtq_letter_button_2 {
    316     background:url(images/2.png) no-repeat 0 -120px;
    317 }
    318 .mtq_letter_button_3 {
    319     background:url(images/3.png) no-repeat 0 -120px;
    320 }
    321 .mtq_letter_button_4 {
    322     background:url(images/4.png) no-repeat 0 -120px;
    323 }
    324 .mtq_letter_button_5 {
    325     background:url(images/5.png) no-repeat 0 -120px;
    326 }
    327 .mtq_letter_button_6 {
    328     background:url(images/6.png) no-repeat 0 -120px;
    329 }
    330 .mtq_letter_button_7 {
    331     background:url(images/7.png) no-repeat 0 -120px;
    332 }
    333 .mtq_letter_button_8 {
    334     background:url(images/8.png) no-repeat 0 -120px;
    335 }
    336 .mtq_letter_button_9 {
    337     background:url(images/9.png) no-repeat 0 -120px;
    338 }
    339 .mtq_letter_button_10 {
    340     background:url(images/10.png) no-repeat 0 -120px;
    341 }
    342 .mtq_letter_button_11 {
    343     background:url(images/11.png) no-repeat 0 -120px;
    344 }
    345 .mtq_letter_button_12 {
    346     background:url(images/12.png) no-repeat 0 -120px;
    347 }
    348 .mtq_letter_button_13 {
    349     background:url(images/13.png) no-repeat 0 -120px;
    350 }
    351 .mtq_letter_button_14 {
    352     background:url(images/14.png) no-repeat 0 -120px;
    353 }
    354 .mtq_letter_button_15 {
    355     background:url(images/15.png) no-repeat 0 -120px;
    356 }
    357 .mtq_letter_button_16 {
    358     background:url(images/16.png) no-repeat 0 -120px;
    359 }
    360 .mtq_letter_button_17 {
    361     background:url(images/17.png) no-repeat 0 -120px;
    362 }
    363 .mtq_letter_button_18 {
    364     background:url(images/18.png) no-repeat 0 -120px;
    365 }
    366 .mtq_letter_button_19 {
    367     background:url(images/19.png) no-repeat 0 -120px;
    368 }
    369 .mtq_letter_button_20 {
    370     background:url(images/20.png) no-repeat 0 -120px;
    371 }
    372 .mtq_letter_button_21 {
    373     background:url(images/21.png) no-repeat 0 -120px;
    374 }
    375 .mtq_letter_button_22 {
    376     background:url(images/22.png) no-repeat 0 -120px;
    377 }
    378 .mtq_letter_button_23 {
    379     background:url(images/23.png) no-repeat 0 -120px;
    380 }
    381 .mtq_letter_button_24 {
    382     background:url(images/24.png) no-repeat 0 -120px;
    383 }
    384 .mtq_letter_button_25 {
    385     background:url(images/25.png) no-repeat 0 -120px;
    386 }
    387 .mtq_letter_selected {
    388     background-position:0 -40px;
    389 }
    390 .mtq_letter_selected:hover {
    391     background-position:0 0;
    392 }*/
     311    font-weight: 600;
     312}
     313
    393314.mtq_marker, #mtq_quiz_results, .mtq_preload, .mtq_navigator {
    394     display:none;
     315    display: none;
    395316}
    396317#content .mtq, #content .mtq_auto, #content .mtq_quiz_name, #content .mtq_score, #content .mtq_total, #content .mtq_percentage, #content .mtq_wrong_answers, #content .mtq_time_allowed, #content .mtq_time_used, #container .mtq, #container .mtq_auto, #container .mtq_quiz_name, #container .mtq_score, #container .mtq_total, #container .mtq_percentage, #container .mtq_wrong_answers, #container .mtq_time_allowed, #container .mtq_time_used, .mtq_auto {
    397     display:none;
     318    display: none;
    398319}
    399320.mtq_thanks {
    400     display:block;
    401     width:80px;
    402     height:80px;
    403     float:left;
    404     background:url(images/thanks.png) no-repeat 0 0px;
     321    display: block;
     322    width: 80px;
     323    height: 80px;
     324    float: left;
     325    background: url(images/thanks.png) no-repeat 0 0px;
    405326}
    406327.mtq_cone {
    407     display:block;
    408     width:64px;
    409     height:64px;
    410     float:left;
    411     background:url(images/cone.png) no-repeat 0 0px;
     328    display: block;
     329    width: 64px;
     330    height: 64px;
     331    float: left;
     332    background: url(images/cone.png) no-repeat 0 0px;
    412333}
    413334.mtq_setup {
    414     display:block;
    415     width:64px;
    416     height:64px;
    417     float:left;
    418     background:url(images/setup.png) no-repeat 0 0px;
     335    display: block;
     336    width: 64px;
     337    height: 64px;
     338    float: left;
     339    background: url(images/setup.png) no-repeat 0 0px;
    419340}
    420341.mtq_timer_icon {
    421     display:block;
    422     width:32px;
    423     height:32px;
    424     float:left;
    425     background:url(images/timer.png) no-repeat 0 0px;
     342    display: block;
     343    width: 32px;
     344    height: 32px;
     345    float: left;
     346    background: url(images/timer.png) no-repeat 0 0px;
    426347}
    427348.mtq_email {
    428     display:block;
    429     width:32px;
    430     height:32px;
    431     float:left;
    432     background:url(images/email.png) no-repeat 0 0px;
     349    display: block;
     350    width: 32px;
     351    height: 32px;
     352    float: left;
     353    background: url(images/email.png) no-repeat 0 0px;
    433354}
    434355.mtq_premium_feature {
    435     border:thin solid;
    436     border-color:#03C !important;
     356    border: thin solid;
     357    border-color: #03C !important;
    437358}
    438359.mtq_timer {
    439     text-align:right;/*margin-top: -30px;*/
     360    text-align: right;/*margin-top: -30px;*/
    440361}
    441362.mtq_failed_button {
    442     cursor:pointer;
    443     font-weight:600;
    444     font-size:125%;
    445     color:#B5281E;
    446     background:#fff;
    447     border:thin solid;
    448     border-color:#B5281E;
    449     text-align:center;
    450     width:75%;
    451     margin-left:auto;
    452     margin-right:auto;
    453     border:thin solid;
    454     -o-border-radius:2em;
    455     -moz-border-radius:2em;
    456     -webkit-border-radius:2em;
    457     border-radius:2em;
    458     border-color:#B5281E;
    459     padding:.5em;
     363    cursor: pointer;
     364    font-weight: 600;
     365    font-size: 125%;
     366    color: #B5281E;
     367    background: #fff;
     368    border: thin solid;
     369    border-color: #B5281E;
     370    text-align: center;
     371    width: 75%;
     372    margin-left: auto;
     373    margin-right: auto;
     374    border: thin solid;
     375    -o-border-radius: 2em;
     376    -moz-border-radius: 2em;
     377    -webkit-border-radius: 2em;
     378    border-radius: 2em;
     379    border-color: #B5281E;
     380    padding: .5em;
    460381}
    461382.mtq_clickable {
    462     cursor:pointer;
    463 }
    464 
     383    cursor: pointer;
     384}
    465385/* Non themed, but colored Items */
    466386.mtq_explanation {
    467     background:#ADE0C1;
    468     color:#030;
    469     border-color:#030;
     387    background: #ADE0C1;
     388    color: #030;
     389    border-color: #030;
    470390}
    471391.mtq_wrong_stamp {
    472     color:#FFF;
    473     background:#B5281E;
    474     border-color:#B5281E;
     392    color: #FFF;
     393    background: #B5281E;
     394    border-color: #B5281E;
    475395}
    476396.mtq_correct_stamp {
    477     color:#FFF;
    478     background:#063;
    479     border-color:#063;
    480 }
    481 .mtq_partial_stamp {
    482     color:#FFF;
    483     background:#09F;
    484     border-color:#09F;
    485 }
     397    color: #FFF;
     398    background: #063;
     399    border-color: #063;
     400}
     401
    486402.mtq_selected_row {
    487     background:#CCC;
    488     color:#000;
     403    background: #CCC;
     404    color: #000;
    489405}
    490406.mtq_css_letter_selected {
    491     color:#fff !important;
    492     background:#333 !important;
     407    color: #fff !important;
     408    background: #333 !important;
    493409}
    494410.mtq_css_letter_selected:hover {
    495     background:#666 !important;
    496 }
     411    background: #666 !important;
     412}
Note: See TracChangeset for help on using the changeset viewer.