Plugin Directory

Changeset 708521


Ignore:
Timestamp:
05/06/2013 07:05:26 AM (13 years ago)
Author:
karevn
Message:

CSS fixes
Warning fixed
And a deutsch translation fix.

Location:
usernoise/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • usernoise/trunk/css/window.css

    r705432 r708521  
    8787    width: 100%;
    8888    max-width: 420px;
    89     position: absolute;
     89    position: fixed;
    9090    top: 50%;
    9191    left: 50%;
     
    9494@media screen and (max-width: 640px){
    9595    #window{
    96         position: absolute !important;
    97         max-width: none;
     96        width: 100%;
     97        height: 100%; /* Set a default max height of the modal (adjusted later)*/
     98        position: fixed; /* Display modal in the centre of your screen */
     99        overflow-y: scroll !important;
     100        overflow: scroll; /*  Ensure that the modal is scroll-able */
     101        -webkit-overflow-scrolling: touch !important;
     102        left: 0;
     103        top: 0;
     104        max-width: none !important;
     105        margin: 0 !important;
    98106    }
    99107}
  • usernoise/trunk/languages/usernoise-de_DE.po

    r703936 r708521  
    357357#@ default
    358358msgid "Idea"
    359 msgstr "Anregung"
     359msgstr "Idee"
    360360
    361361#: inc/db-upgrade.php:27
  • usernoise/trunk/readme.txt

    r705450 r708521  
    104104== Changelog ==
    105105
     106= 3.7.4 =
     107* Warning fixed.
     108* CSS fixes.
     109* de_DE translation fix.
     110
    106111= 3.7.3 =
    107112* Added an option to disable Feedback button and form icons for sake of Bootstrap compatibility.
    108113* Minor CSS fixes.
    109 
    110114
    111115= 3.7.2 =
  • usernoise/trunk/usernoise.php

    r705450 r708521  
    2929define('UN_FEEDBACK_BUTTON_TEXT_COLOR', 'feedback_button_text_color');
    3030define('UN_FEEDBACK_BUTTON_SHOW_BORDER', 'feedback_button_show_border');
    31 define('UN_BOOTSTRAP_COMPATIBLE', 'boostrap_compatible');
     31define('UN_DISABLE_ICONS', 'un_disable_icons');
    3232define('UN_SUBMIT_FEEDBACK_BUTTON_TEXT', 'submit_feedback_button_text');
    3333define('UN_FEEDBACK_TEXTAREA_PLACEHOLDER', 'feedback_textarea_placeholder');
Note: See TracChangeset for help on using the changeset viewer.