root/platform/tdiary/plugin/hide_sidebar_iphone.rb

Revision 15400, 348 bytes (checked in by hsbt, 5 months ago)

indent and add div.main.

Line 
1# hide_sidebar_iphone.rb
2#
3# Copyright (C) 2008 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
4# You can redistribute it and/or modify it under GPL2.
5#
6
7add_header_proc do
8        if @conf.iphone? then
9                <<-CSS
10                <style type="text/css"><!--
11                div.sidebar {
12                        display: none;
13                }
14                div.main {
15                        width: 100%;
16                        float: none;
17                }
18                --></style>
19                CSS
20        end
21end
Note: See TracBrowser for help on using the browser.