2011-08-11 13:22:07 +04:00
|
|
|
/*************************************************
|
|
|
|
* ownCloud - Calendar Plugin *
|
|
|
|
* *
|
|
|
|
* (c) Copyright 2011 Georg Ehrke *
|
|
|
|
* author: Georg Ehrke *
|
|
|
|
* email: ownclouddev at georgswebsite dot de *
|
|
|
|
* homepage: ownclouddev.georgswebsite.de *
|
|
|
|
* manual: ownclouddev.georgswebsite.de/manual *
|
2011-08-12 16:29:45 +04:00
|
|
|
* License: GNU AFFERO GENERAL PUBLIC LICENSE *
|
2011-08-11 13:22:07 +04:00
|
|
|
* *
|
|
|
|
* <http://www.gnu.org/licenses/> *
|
|
|
|
* If you are not able to view the License, *
|
|
|
|
* <http://www.gnu.org/licenses/> *
|
|
|
|
* <http://ownclouddev.georgswebsite.de/license/> *
|
|
|
|
* please write to the Free Software Foundation. *
|
|
|
|
* Address: *
|
|
|
|
* 59 Temple Place, Suite 330, Boston, *
|
|
|
|
* MA 02111-1307 USA *
|
|
|
|
*************************************************/
|
|
|
|
|
2011-08-12 16:29:45 +04:00
|
|
|
#view {margin-left: 10px; float: left; font-size: 12px;}
|
|
|
|
#datecontrol {text-align: center;}
|
|
|
|
#datecontrol_left{font-size: 12px;}
|
|
|
|
#datecontrol_right{font-size: 12px;}
|
|
|
|
#datecontrol_date_label {margin: 0; padding: 0; font-size: 12px;}
|
|
|
|
#choosecalendar {margin-right: 170px; float: right; font-size: 12px;}
|
|
|
|
|
|
|
|
#choosecalendar_dialog {display: none;}
|
|
|
|
#newentry_dialog {display: none;}
|
|
|
|
#editentry_dialog {display: none;}
|
|
|
|
#parsingfail_dialog{display: none;}
|
|
|
|
|
2011-09-02 14:55:56 +04:00
|
|
|
#view {margin-left: 10px; float: left; font-size: 12px; height: 100%;}
|
|
|
|
#calendar_holder {height: 100%; width: 100%;}
|
|
|
|
#onedayview, #oneweekview, #fourweeksview, #onemonthview, #listview {display: none; position: absolute;bottom: 0; right: 0; left: 160px; top: 80px;}
|
|
|
|
#onedayview table {margin: 0; padding: 0; width: 100%; height: 100%; border-spacing:1px; background: #EEEEEE;}
|
|
|
|
#oneweekview table {margin: 0; padding: 0; width: 100%; height: 100%; border-spacing:1px; background: #EEEEEE;}
|
2011-09-02 17:49:03 +04:00
|
|
|
#fourweeksview table {margin: 0; padding: 0; width: 100%; height: 100%; border-spacing:1px; background: #EEEEEE;overflow: hidden;}
|
2011-09-02 14:55:56 +04:00
|
|
|
#onemonthview table {margin: 0; padding: 0; width: 100%; height: 100%; border-spacing:1px; background: #EEEEEE;}
|
2011-09-02 18:44:25 +04:00
|
|
|
#fourweeksview .calw{vertical-align: middle;text-align: center;width: 50px;}
|
2011-08-12 16:29:45 +04:00
|
|
|
|
|
|
|
#sysbox{display: none;}
|
|
|
|
|
|
|
|
.actions {height: 33px; min-width: 800px;}
|
|
|
|
.controls {min-width: 800px;}
|
|
|
|
.center {text-align: center;}
|
2011-09-02 14:55:56 +04:00
|
|
|
.dateinfo {height: 20px;width: 100%; overflow: hidden; margin-top: 0; padding: 0; font-size: 12px;background: #F7F7F7;}
|
2011-09-02 17:49:03 +04:00
|
|
|
.events {width: 100%; margin: 0; padding: 0;}
|
2011-08-12 16:29:45 +04:00
|
|
|
.calendar_row {height: 20px; text-align: center;background: #ffffff;}
|
2011-09-03 16:05:20 +04:00
|
|
|
#oneweekview .calendar_row {width: 13.5%;}
|
2011-08-12 16:29:45 +04:00
|
|
|
.calendar_time {height: 20px; width: 50px; text-align:right;background: #ffffff;}
|
2011-09-02 18:44:25 +04:00
|
|
|
.day {text-align: center; background: #ffffff; margin: 0; padding: 0; vertical-align: top; width: 14%; height: 22%;}
|
|
|
|
.weekend .events{text-align: center;margin: 0; padding: 0;vertical-align: top;background: #F3F3F3; width: 100%; }
|
2011-08-12 16:29:45 +04:00
|
|
|
.weekend_thead, .weekend_row{height: 20px;text-align: center;text-align: center;background: #F3F3F3;}
|
2011-09-02 14:55:56 +04:00
|
|
|
.thisday{background: #FFFABC;text-align: center;margin: 0;padding: 0;vertical-align: top;height: 20px;}
|
2011-09-04 00:13:14 +04:00
|
|
|
.event {position:relative;}
|
|
|
|
.event_popup {display: none; position: absolute; width: 280px; height: 40px; padding: 10px; background: #eeeeee; color: #000000; border: 1px solid #1a1a1a; font-size: 90%;}
|
2011-09-03 01:51:18 +04:00
|
|
|
|
|
|
|
input[type="button"].active {color: #0098E4}
|