Plugin Directory

Changeset 989413


Ignore:
Timestamp:
09/14/2014 09:25:11 AM (12 years ago)
Author:
ritesh1991
Message:

Version 1.1 - Responsive Fixes

Location:
wp-couch-mode/tags/1.1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-couch-mode/tags/1.1/assets/css/wp-couch-mode-style.css

    r988578 r989413  
    187187.wpcm-overlay-wrapper::-webkit-scrollbar-corner { background-color: #999;}
    188188.wpcm-overlay-wrapper::-webkit-resizer { background-color: #666;}
     189
     190/*Media Queries*/
     191@media(max-width:768px){
     192    .wpcm-overlay-wrapper{
     193        width:95%;
     194        height:85%;
     195        position:relative;
     196        top:6%;
     197        padding:1%;
     198        padding-bottom:15px;
     199    }
     200    .wpcm-wrapper-content{
     201        width: 96%;
     202    }
     203    .wpcm-wrapper-full .wpcm-wrapper-content{
     204        width: 90%;
     205    }
     206}
     207
    189208/** Scroll Bar Ends*/
    190209@media print
  • wp-couch-mode/tags/1.1/assets/js/wp-couch-mode.js

    r988578 r989413  
    3737        }else{
    3838            var screnn =jQuery( window ).width();
    39             screnn= screnn-60;
     39            if(screnn > 768){
     40                screnn= screnn-60;
     41            }
    4042            jQuery( "#wpcm-couch-main" ).animate({
    4143                    top: 0,width: screnn+'px',height: "100%"
  • wp-couch-mode/tags/1.1/readme.txt

    r988578 r989413  
    44Donate link: http://riteshvatwani.com/
    55Requires at least: 3.4.2
    6 Tested up to: 3.6
    7 Stable tag: 4.5
     6Tested up to: 4.0
     7Stable tag: 1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333* Initial release.
    3434
     35= 1.1 =
     36* Responsive Fixes (Now popup will works in mobile and tablets).
Note: See TracChangeset for help on using the changeset viewer.