modolabs / Kurogo-Mobile-Web

Kurogo is a PHP framework for delivering high quality, data driven customizable content to a wide range of mobile devices. Its strengths lie in the customizable system that allows you to adapt content from a variety of sources and easily present that to mobile devices from feature phones, to early generation smart phones, to modern devices and tablets
http://kurogo.org
GNU Lesser General Public License v2.1
198 stars 99 forks source link

sidenav css creates empty gap in calendar list view #36

Closed eebs closed 13 years ago

eebs commented 13 years ago

When viewing a calendar in list view (as opposed to day view) there is some CSS that is used to display the navigation for the day view that causes a large gap between the title and the events as shown here: http://i.imgur.com/L1iQW.png.

The CSS causing the issue is in app/common/css/compliant.css on line 782 and was added in commit 6c74426d547b3

.sidenav2 {
    margin: 0;
    position: relative;
    height: 29px;
}

The height is causing the large gap between the title and events, and should not be there in the list view. Or more accurately there shouldn't be a sidenav in list view (Right? I can't find any reason why list view needs a sidenav).

The other thing to note is that the images added in that same commit won't be immediately available to people with current installs of Kurogo. Because the images were only added to the site/Universitas folder, someone that pulls changes from git won't get those updated files in their site folder. When 1.3 releases will there be some documentation detailing any additional files in the site/Universitas folder that need to be moved over to existing installs?