source: trunk/prototype/modules/calendar/css/layout.css @ 6369

Revision 6369, 32.7 KB checked in by acoutinho, 12 years ago (diff)

Ticket #2821 - Inconsistências na interface de anexos e na remoção de anexos

Line 
1/*
2        Document   : layout.css
3        Created on : 10/09/2011, 10:12:49
4        Author     : prognus
5        Description: contains all styles related to element positioning and elements dimension
6*/
7
8
9
10/* -- main page styles -- */
11
12/*      body {
13                margin:0;
14                font-size: 14px;
15                font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
16                font-family: Arial,Helvetica,sans-serif;
17        }*/
18
19#wrap {
20/*      background-image: url(images/calendar-top-bg-mini.png);
21        background-repeat: no-repeat;*/
22        width: 100%;
23        max-width: 1100px;
24        min-width: 985px;
25        margin: 0 auto;
26}
27
28#wrap .search-field {
29        max-width: 180px;
30        width: 180px;
31/*      margin: 5px 0 5px 290px;*/
32        float: right;
33        white-space: nowrap;
34}
35
36#wrap .search-field input {
37        width: 160px;
38        padding: 0 0 0 3px;
39}
40
41.block-horizontal-toolbox {
42        width: 100%;
43        height: 30px;
44/*      margin: 5px 0;*/
45}
46
47.block-vertical-toolbox {
48        width: 19%;
49        max-width: 200px;
50        min-width: 190px;
51        float: left;
52        padding: 0;
53}
54
55.block-vertical-toolbox .mini-calendar {
56        padding: 5px 0;
57        margin:10px 0;
58}
59
60.block-top {
61/*      background-image: url(images/calendar-body-bg.png);
62        background-repeat: repeat-x;*/
63        width: 100%;
64        height: 100px;
65}
66
67#tabs {
68        width: 80%;
69        max-width: 900px;
70        min-width: 785px;
71        float: right;
72        padding-top: 0;
73}
74
75#tabs,
76#tabs .ui-tabs-nav {
77        padding-top: 0;
78}
79
80#tabs > li .ui-icon-close { float: left; margin: 0.4em 0.2em 0 0; cursor: pointer; }
81
82
83.button.config-menu {
84        float: right;
85        padding: 11px 5px;
86        width: 40px;
87        height: 5px;
88}
89
90.fg-menu-container {
91        z-index: 999;
92        min-width: 134px !important;
93}
94
95.fg-menu-container.evt-option{
96        min-width: 85px !important;
97        padding: 0;
98}
99
100.fg-menu-container.evt-option a{
101        padding: 0.1em 3%;
102}
103
104.ui-icon.ui-icon-gear {
105        background-image: url(../img/cog.png);
106    background-position: 0 0;
107}
108
109.expresso-calendar-container dl
110.expresso-calendar-container dt,
111.expresso-calendar-container dl dd {
112        margin: 0; padding: 0;
113}
114
115.expresso-calendar-container #trash {
116        width: 150px;
117        height: 150px;
118        bottom: 0px;
119        position: fixed;
120}
121
122/* -- generic HTML elements styles -- */
123
124input {
125        margin-top: 2px;
126        margin-bottom: 2px;
127}
128
129/* -- generic class styles -- */
130
131.clear { clear: both; }
132
133.editable{
134        background-color: white;
135        outline: 0px solid transparent;
136        border: 1px #CCC solid;
137}
138
139p.input-group span {display: inline-block; vertical-align: text-top;}
140p.input-group label {display: inline-block; vertical-align: text-top;}
141p.input-group ul li * {vertical-align: bottom; margin-bottom: 5px;}
142p.input-group label.for-textarea {display: inline-block; vertical-align: top;}
143p.input-group {
144  margin: 5px 0 !important;
145}
146
147.messages .message { text-align: left; }
148
149.button.tiny{
150        height: 15px;
151}
152.button.tiny.ui-button-icon-only {
153    width: 15px;
154}
155
156.button.small {
157        height: 24px;
158}
159.button.small.ui-button-icon-only {
160    width: 24px;
161}
162
163.fields-left {display: inline-block; width: 200px;}
164.fields-right {display: inline-block; width: 300px;}
165
166.ui-icon-float-right { float:right; }
167.ui-icon-float-left { float:left; }
168
169fieldset.input-field-rounded {
170        border:1px solid #CFCFCF;
171        padding: 5px;
172}
173
174fieldset.input-field-rounded input{
175        margin: 0px;
176        display: inline-block;
177        border: none;
178}
179
180fieldset.input-field-rounded span {
181        display: inline-block;
182        margin:0 0 -3px 5px;
183}
184
185/* search area definition */
186fieldset.search-field {
187        border:1px solid #CFCFCF;
188        padding: 3px;
189}
190
191fieldset.search-field input{
192        margin: 0px;
193        display: inline-block;
194        border: none;
195        width: 215px;
196}
197
198fieldset.search-field span {
199        display: inline-block;
200        margin:0 0 -3px 0px;
201        cursor: pointer;
202}
203/* #search area definition */
204
205
206/* -- fullcalendar styles -- */
207
208.fc-view{
209        overflow: visible;
210}
211
212.fc-grid.fc-view-year .fc-day-number {
213        text-align: center;
214        float: none;
215}
216
217/* -- event details styles -- */
218
219.new-event-win.active {
220         width:700px;height:510px;text-align:left;
221}
222
223.new-event-win > .content.ui-tabs.ui-widget-content {
224        border: none;
225}
226
227.new-event-win ul.attendee-permissions-list, li.attendee-permissions-list{text-align: left;}
228
229li.attendee-permissions-list input{width: 20px !important; margin: 3px 0 0 0; !important}
230
231p.request-update{display: inline; position: relative; top: 2px;}
232
233
234p.request-update label{width: 150px !important;}
235
236.new-event-win .menu-addevent {
237        text-align: right;
238}
239
240fieldset.block-add-attendee .add-attendee-search { max-width: 250px; margin: 5px;}
241fieldset.block-add-attendee .add-attendee-search input { max-width: 220px; width: 220px; padding: 0 0 0 7px;}
242fieldset.block-add-attendee .search-result-list { width: 255px; max-height: 215px; overflow: auto;}
243fieldset.block-add-attendee .search-result-list .ui-widget-content { border: none;}
244fieldset.block-add-attendee .search-result-list .empty { margin-left: 5px; }
245fieldset.block-add-user .add-user-search {max-width: 235px;}
246fieldset.block-add-user .search-result-list {max-width: 245px;}
247fieldset.block-add-user .search-result-list .ui-widget-content {max-width: 245px;}
248
249.block-attendee-list, .block-add-attendee { float:left;}
250.block-attendee-list { width:400px; margin-right: 5px; }
251.block-add-attendee { width:260px; margin-right: 5px; }
252.block-attendee-list dd, .block-add-attendee dd { border: 1px solid #BFBFBF; }
253.block-attendee-list dt, .block-add-attendee dt { background-color:#FFF; margin: 5px 0 -6px 5px; font-weight: bold; display: table;  position: relative;}
254.block-attendee-list dd.attendee-list { height: 196px; }
255.block-attendee-list dd.attendee-list ul { max-height: 186px; overflow: auto; margin-top: 10px;}
256.block-attendee-list dd.attendee-list-add {border-top:none !important; border:1px solid #BFBFBF;}
257.block-attendee-list dd.attendee-list-add fieldset.add-attendee-input { border:none !important; margin: 0; padding: 0 }
258.block-attendee-list dd.attendee-list-brief { border:none !important; margin: 5px 0; color:#777; }
259
260dl.block-add-attendee {
261        float: right;
262        display: block;
263}
264
265dl.block-add-attendee dd.add-attendee {
266        width: 260px;
267        min-height: 260px;
268        display: block;
269}
270
271ul.attendees-count {clear:left; float:left;}
272.attendees-count li {display: inline;}
273.attendees-count li:after {content:", "}
274.attendees-count li label {font-weight: bold;}
275
276.attendees-list .me select.status { margin:10px 5px 5px 5px; }
277.attendees-list .me .add-attendee-search { max-width: 155px; width:155px; display: inline; padding: 0; margin: 10px 0 5px 0;}
278
279.attendees-list .me .add-attendee-options { max-height: 16px; height:16px;  max-width: 50px; width:50px; display: inline; padding: 0; margin: 0 0 5px 0;}
280.attendees-list .me .add-attendee-options-read { max-height: 16px; height:16px;  max-width: 16px; width:16px; display: inline; padding: 0; margin: 0 0 5px 0;}
281
282.attendees-list .me .add-attendee-options-button {position: absolute; top: 171px;}
283.attendees-list .hover-attendee { background-color: #DFEFFC;}
284/*
285.attendees-list .attendee-options-button-edit { position: absolute; top:0; right:25px;}
286.attendees-list .attendee-options-button-key { position: absolute; top:0; right:45px;}
287.attendees-list .attendee-options-button-delegate { position: absolute; top:0; right:65px;}
288*/
289
290.attendee-options{ position: absolute; top: 0; left: 287px; background-color: white; z-index: 100; width: 90px; background-color: #FFF; padding: 0 20px 0 3px; text-align: right;}
291.attendees-list .not-attendee { height:16px; }
292
293.list-delegates{margin: 0 0 0 25px;}
294
295.status-delegate{position: absolute; left:3px;}
296
297.attendees-list .me .add-attendee-search input { max-width: 125px; }
298.attendees-list li.organizer, .attendees-list li.me-delegated  {margin-bottom: 3px;}
299.attendees-list .organizer .button.swap {
300        float: right;
301        margin-top: -1.5em;
302}
303
304.name-status-delegated{text-decoration: line-through; padding: 0 0 0 18px;}
305.name-status-delegated-delegated{text-decoration: line-through; padding: 0 0 0 12px;}
306.name-status-delegated-none{ padding: 0 0 0 12;}
307
308.name-status{padding: 0 0 0 18px;}
309
310.name-special{padding: 0 0 0 33px;}
311.name-special-delegated{text-decoration: line-through; padding: 0 0 0 33px;}
312
313.open-delegate{position: absolute; left: 20px; display: block; cursor: hand;}
314.space-status{position: absolute; left: 20px; display: block;}
315.space-special{position: absolute; left: 35px; display: block;}
316.space-special-delegated{position: absolute; left: 20px; display: block;}
317
318.attendee-permissions-change{background-image: url(../../../plugins/jquery/images/ui-icons_f9bd01_256x240.png) !important;}
319.attendee-permissions-change-button{border: 1px solid #79B7E7 !important; background: #F5F8F9 !important; font-weight: bold !important; color: #E17009 !important;}
320
321.attendee-permissions-conflict{opacity: 0.5}
322
323dd.attendee-list ul.attendee-list li {
324/*      display: table;*/
325    overflow: hidden;
326        position: relative;
327}
328dd.attendee-list ul.attendee-list li input,
329dd.attendee-list ul.attendee-list li span,
330dd.attendee-list ul.attendee-list li label {
331        display: table-cell;
332}
333dd.attendee-list ul.attendee-list li label.name,
334dd.attendee-list ul.attendee-list li label.mail {
335        width: 99999px;
336        min-width: 99999px;
337        vertical-align: middle;
338}
339dd.attendee-list ul.attendee-list li label[title=''] { display:none }
340/*
341dd.attendee-list ul.attendee-list li .button.close {
342        position: absolute;
343    right: 5px;
344    top: 0;
345}
346*/
347/*
348.attendees-list li .ui-icon-float-right {
349        opacity:0.1;
350        filter:alpha(opacity=10);
351}
352.attendees-list li.hover .ui-icon-float-right {
353        opacity:1;
354        filter:alpha(opacity=100);
355}*/
356
357/* -- configurations styles -- */
358
359.configurations-basic label {
360        width: 200px;
361}
362
363.configurations-notifications label {
364        width: 350px;
365}
366
367.accordion-user-calendars .ui-accordion-header {
368        margin-bottom: 2px;
369}
370
371.accordion-user-calendars .ui-accordion-header legend{
372        font-size: 60%;
373    margin-left: 30px;
374    padding: 0.4em;;
375}
376.user-calendar.ui-accordion-content {
377        margin-top: -11px;
378}
379
380/* -- preferences styles -- */
381p.default-alarm-event {margin-bottom: 10px; margin-top: -8px;}
382.preferences-win.active p.input-group label { display: inline-block; width: 300px;}
383.preferences-win.active p.input-group ul li label { width: auto; }
384/*.preferences-win.active input[type="text"] { vertical-align:top; }*/
385
386/* -- import/export dialog styles -- */
387
388.import-export-win p.input-group label { display: inline-block; width: 100px;}
389.import-export-win span.tip {
390    display: block;
391    margin: 3px 0 10px 100px;
392    clear: both;
393    font-size: 0.9em;
394}
395
396.import-export-win .button.remove-attachment {margin: -2px 0 0px 10px;}
397
398.import-export-win form { padding: 10px; }
399.import-export-win p.input-group * { float:left; }
400
401/* -- calendar list styles -- */
402
403.my-calendars .button.new {
404  float:right;
405  width: 15px;
406  height: 15px;
407}
408
409.my-calendars .status-list {
410        display: inline-block;
411        margin: 0px 0pc -4px -5px;
412        cursor: pointer;
413}
414
415.my-calendars .list-calendars-item, .signed-calendars .list-calendars-item{
416        position: relative;
417        overflow: hidden;
418}
419.my-calendars .list-calendars-item div, .signed-calendars .list-calendars-item div{
420        overflow:hidden;
421        width:6000px;
422        display:table;
423}
424
425.my-calendars .cal-list-options-btn, .signed-calendars .cal-list-options-btn {
426        position: absolute;
427        top: 2px;
428        right: 2px;
429}
430
431.evt-list-options.my-evt-list-options{
432        position: absolute;
433        width: 130px;
434        display: block;
435       
436}
437
438
439.colors-options { padding-left: 5px; }
440.colors-options .color-selected { text-indent: -10px; /*padding: 1px 0px 0px 8px;*/ }
441.colors-options .color-selected .ui-button-text { padding: 0px 0px 0px 8px; font-size: 30px; line-height: 0.4em; }
442.colors-options .cal-colors-options-btn {
443        float:left;
444        width: 17px;
445        height: 17px;
446        margin-bottom: 2px;
447        margin-top:2px;
448        background-position: -500px -10px;
449}
450.my-calendars {
451  font-size: 12px;
452  padding-top: 3px;
453  padding-bottom: 3px;
454  cursor: pointer;
455}
456
457.shared-calendar .user-list li.user-list{
458        height: 17px;
459        overflow: hidden;
460}
461
462.shared-calendar dd.user-list{ overflow: auto;}
463
464.user-list .hover-user { background-color: #DFEFFC;}
465
466.shared-calendar ul.search-result-list{
467    overflow-x: hidden !important;
468    overflow-y: auto !important;
469    height: 210px;
470}
471
472.user-acls-shared-calendar{
473    width: 130px;
474    float: right;
475    position: absolute;
476    left: 190px;
477    background: white;
478}
479
480.user-acls-shared-calendar.calendar{
481        text-align: right;
482}
483
484
485.calendars-list .search-field.calendar-shared-search {
486        max-width: 193px !important;
487        width: 193px !important;
488        float: right;
489}
490
491.calendars-list .search-field input.search{
492        width:165px !important;
493}
494
495.calendars-list .status-list-shared{
496        display: inline-block;
497        margin: 0 0 -4px -5px;
498        cursor: pointer;
499}
500
501.calendars-list .title-signed-calendars{
502        cursor: pointer;
503}
504
505.my-calendars a.new-calendar .ui-button-text {
506    padding: 0;
507}
508
509.new-calendar-shared{
510        float: right;
511}
512
513.signed-calendars {
514        font-size: 12px;
515        padding-top: 3px;
516        padding-bottom: 3px;
517}
518
519dl.block-add-user {
520        max-width: 290px;
521        min-height: 260px;
522        display: block;
523        float:right;
524        margin: 0 10px 10px 0;
525}
526
527dl.block-add-calendar {
528        max-width: 290px;
529        min-height: 185px;
530        display: block;
531        float:right;
532        margin: 0 10px 10px 0;
533}
534
535dl.block-public-calendar {
536        max-width: 290px;
537        min-height: 30px;
538        display: block;
539        float:right;
540        margin: 0 10px 1px 0;
541}
542
543fieldset.block-add-user, .block-add-user li{
544        border: none;
545}
546
547fieldset.add-user-search{
548        margin: 0 0 5px 0;
549}
550
551dl.block-user-list{
552        float:left;
553        margin: 0 0 10px 10px;
554}
555
556dt.user-list{
557        width: 117px;
558        margin-right: 5px;
559}
560
561dt.calendar-list{
562        width: 144px;
563        margin-right: 5px;
564}
565
566dt.calendar-shared, dt.user-list, dt.add-user, dt.calendar-list, dt.calendar-public{
567        background-color: white;
568        margin: 5px 0 -6px 5px;
569        font-weight: bold;
570        display: table;
571        position: relative;
572}
573
574dd.add-user{height: 240px;}
575dd.add-user-calendar{height: 192px;}
576
577dd.calendar-public{height: 23px;}
578
579dd.add-user-calendar, dd.calendar, dd.user-list, dd.add-user, dd.calendar-list, dd.calendar-public{
580        border: 1px solid #BFBFBF;
581        border-image: initial;
582        width: 330px;
583        padding: 7px 0px 4px 4px;
584}
585
586dd.add-user-calendar ul{
587        width: 250px;
588        max-height: 166px;
589}
590
591dd.add-user-calendar, dd.add-user,  dd.calendar-public{
592        width: 250px;
593}
594
595div.shared-calendar fieldset.shared-calendar-configure{
596        margin-top: 10px;
597}
598
599.add-user fieldset.block-add-user{
600        width: 245px;
601}
602
603dd.user-list{
604        height: 193px;
605}
606
607dd.calendar-list{
608        height: 240px;
609}
610
611.list-calendars { vertical-align: middle; }
612.list-calendars .cal-list-img { float: right; }
613.list-calendars .cal-list-options-btn {
614        width: 10px;
615        height: 10px;
616        display: inline;
617        float: right;
618        padding: 3px;
619        -webkit-border-radius: 4px;
620        -moz-border-radius: 4px;
621        border-radius: 4px;
622}
623
624ul.list-calendars li.list-calendars-item {
625        background-color: #F7FCFF;
626        border: 1px solid #ccc;
627        height: 15px;
628        line-height: 15px;
629        margin: 2px 0;
630        padding: 3px;
631        -webkit-border-radius: 4px;
632        -moz-border-radius: 4px;
633        border-radius: 4px;
634}
635
636ul.list-calendars li li { background-color: #fff; }
637ul.list-calendars li label { vertical-align: middle; }
638ul.list-calendars li input { vertical-align: middle; }
639ul.list-calendars li a { vertical-align: middle; }
640ul.list-calendars li.list-calendars-item .cal-list-options ul.fg-menu li { background-color: #CC0000 !important; color: red !important; }
641
642
643/* -- event list styles -- */
644
645.events-list-win.empty {
646    width: 100%;
647}
648
649.events-list-win.empty table.header-paginator{
650    margin-bottom: 80px;
651}
652
653.events-list-win.empty label.empty-result{
654    margin: 0 0 0 290px;
655}
656
657.events-list-win a {
658        font-size:12px;
659}
660.details-event-list p.input-group { margin: 7px 0 0 0; text-align: justify; }
661.details-event-list p.input-group label { font-weight: bold; width: 14% }
662.details-event-list p.input-group .large { width: 85%; }
663.fields-details-event-list {
664        padding: 5px;   
665}
666
667.list-events-paginator .fc-header-title{margin-left: 150px; font-size: 1em;}
668.header-paginator{margin-top: -15px;}
669.header-paginator .fc-button-content{font-size: 11px;}
670.header-paginator-right{font-size: 11px;}
671.header-paginator .fc-header-left .fc-button-inner{height: 20px; width: 29px;}
672.header-paginator .fc-header-left .fc-button-inner.fc-state-hover{border-color: #999;}
673.header-paginator .fc-header-left .fc-button-inner.fc-state-down{border-color: #555; background: #777;}
674.header-paginator .fc-header-left .fc-button-inner .fc-button-content{line-height: 1.6em; padding: .2em .6em; font-size: 11px;}
675
676/* -- all tips general and specific styles -- */
677
678.qtip-content fieldset { text-align: right;}
679.qtip-content fieldset input { text-align: left; width: 190px;}
680.qtip-content .menu-container.footer-container { background-color: inherit; text-align: right; padding: 0; margin:5px 0 0 0;}
681.qtip-content .menu-container.footer-container .ui-button-text-only .ui-button-text {
682    font-size: 0.8em;
683    padding: 0.1em 0.6em;
684}
685.qtip-title .ui-button-icon-only {
686    height: 1.5em !important;
687    width: 1.5em !important;
688}
689.qtip-title .qtip-button { margin: -5px -10px 0 -15px }
690.attendee-list-add .add-attendee-input input { width: 370px; }
691
692
693.attendee-list-add .add-attendee-input span{cursor: hand;}
694
695.qtip-content .add-attendee-search { max-width: 155px; width:155px; display: inline; padding: 0; margin: 10px 0 5px 0;}
696.qtip-content .add-attendee-search input { max-width: 125px; }
697
698/* -- other general styles -- */
699
700.event-alarms-list .button.remove,
701.configurations-alarms .button.remove {
702    left: 6px;
703    top: 6px;
704}
705
706.button.add.button-add-attachment{margin: -9px 0 0 8px;}
707.button.btn-danger.delete{margin: 0 0 0 0;}
708
709.button.upload{top: 4px;}
710.button.upload.edit{top: -2px;}
711
712div.fileupload-buttonbar{padding: 0.2em 0.5em }
713.archive-error{color: #F00;}
714
715.progress.in-progress{width: 100px; height: 12px;}
716
717span.status-upload{margin: -4px 0px 0px 0px;}
718
719.lbl-archive-nome, .lbl-archive-size{font-weight: bold !important;}
720.lbl-archive-nome{width:40px !important;}
721.row.fileupload-buttonbar{margin-top: -14px; padding: 0.2em 0.7em;}
722
723.archive-nome{width: 73px;}
724.archive-nome label{display: block; position: absolute; left: 136px; top: 194px;}
725.archive-size{min-width:70px; max-width:75px;}
726
727
728.input-group.date-info input {
729        width: 100px;
730}
731
732.input-group.event-info input {
733        width: 600px;
734}
735
736/* -- alarm dysplay -- */
737
738.new-event-alarm{
739        margin: 5px;   
740        font: bold;
741}
742
743.title-event-alarm{
744        margin: 5px;
745}
746
747.description-event-alarm{
748        margin: 5px;
749}
750
751.inicialize-event-alarm{
752        margin: 5px;
753}
754
755.ZebraDialog{
756        z-index: 9999 !important;
757}
758
759.ZebraDialogOverlay{
760        z-index: 9990 !important;
761}
762
763/* CANDIDATOS A EXCLUSÃO */
764/*
765#external-events {
766        float: left;
767        width: 150px;
768        padding: 0 10px;
769        border: 1px solid #ccc;
770        background: #eee;
771        text-align: left;
772}
773
774#external-events h4 {
775        font-size: 16px;
776        margin-top: 0;
777        padding-top: 1em;
778}
779
780.external-event {
781        margin: 10px 0;
782        padding: 2px 4px;
783        background: #3366CC;
784        color: #fff;
785        font-size: .85em;
786        cursor: pointer;
787}
788
789#external-events p {
790        margin: 1.5em 0;
791        font-size: 11px;
792        color: #666;
793}
794
795#external-events p input {
796        margin: 0;
797        vertical-align: middle;
798}
799
800#dialog label, #dialog input { display:block; }
801#dialog label { margin-top: 0.5em; }
802#dialog input, #dialog textarea { width: 95%; }
803        */
804
805/*Antigo style.css*/
806
807/*
808        Document   : style.css
809        Created on : 10/09/2011, 10:13:12
810        Author     : prognus
811        Description: contains all styles related to elements look-and-feel
812*/
813
814
815#tabs {
816        background-color: transparent;
817}
818
819.tip { line-height: 1.3em; }
820
821.expresso-calendar-container a {
822        text-decoration: none;
823}
824.expresso-calendar-container ul,
825.expresso-calendar-container dl,
826.expresso-calendar-container ol {
827        margin: 5px 0; padding: 0;
828        list-style: none;
829}
830.expresso-calendar-container #trash {
831        color: #ADADAD;
832}
833.expresso-calendar-container #trash.empty {
834        background-image: url(../img/trash-empty.png);
835        background-repeat: no-repeat;
836        background-position: bottom center;
837}
838
839.expresso-calendar-container #trash.full {
840        background-image: url(../img/trash-full.png);
841        background-repeat: no-repeat;
842        background-position: bottom center;
843}
844
845.expresso-calendar-container #trash label {
846        display: none;
847}
848
849.ui-dialog { padding: 0; }
850.ui-dialog .ui-dialog-content { background-color: #fff; }
851.ui-dialog .ui-dialog-title { margin:0; }
852.ui-dialog .ui-button-text-only .ui-button-text { padding: 0.4em 1em; }
853
854.new-event-win fieldset { border: none; margin: 0; padding: 0; }
855.new-event-win fieldset.tab-level2 { padding: 0px 5px; }
856.new-event-win fieldset fieldset, .new-event-win fieldset.tab-level2 fieldset { padding: 5px 0; }
857
858.hidden {
859        display: none;
860        visibility: hidden;
861}
862
863.header-menu-container, .footer-menu-container,
864.menu-container.header-container, .menu-container.footer-container {
865        display:block;
866        width: 100%;
867        margin: 0;
868        padding: 10px 0;
869        background-color: #E0EEEE;
870        text-align: right;
871}
872
873.preferences-win .header-menu-container,
874.configure-calendars-win .header-menu-container {
875        margin: -10px 0 10px;
876}
877
878.preferences-win .header-menu-container,
879.configure-calendars-win .header-menu-container {
880        -moz-box-shadow: 0 3px 4px #AAAAAA;
881        -webkit-box-shadow: 0 3px 4px #AAAAAA;
882        box-shadow: 0 3px 4px #AAAAAA;
883}
884
885.preferences-win .footer-menu-container,
886.configure-calendars-win .footer-menu-container {
887        margin: 10px 0 10px;
888}
889
890.preferences-win .footer-menu-container,
891.configure-calendars-win .footer-menu-container {
892        -moz-box-shadow: 0 3px 4px #AAAAAA;
893        -webkit-box-shadow: 0 3px 4px #AAAAAA;
894        box-shadow: 0 3px 4px #AAAAAA;
895}
896
897.ui-dialog .ui-dialog-content { padding: 0; }
898.new-event-win div.div-addevent { padding: 0; width: 700px; border: 0;}
899.new-event-win form.form-addevent { padding: 9px; }
900
901.expresso-calendar-container input[type="text"] { height: 18px; }
902.expresso-calendar-container input[type="text"],
903.expresso-calendar-container textarea,
904.expresso-calendar-container select {
905        border: 1px solid #CFCFCF;
906        font-size: 12px;
907        height: 20px;
908}
909
910.expresso-calendar-container textarea,
911.expresso-calendar-container select {
912/*      vertical-align: super; */
913        vertical-align: middle;
914}
915
916.expresso-calendar-container input.date,
917.expresso-calendar-container input.time {
918        width:80px;
919}
920
921.expresso-calendar-container input.h1,
922.new-event-win input.h1 {
923        font-size: 150%;
924        font-weight: bold;
925        width: 64%;
926        height: 150%;
927}
928
929.new-event-win textarea {
930        width:600px;
931        height: 210px;
932        border: 1px solid #CFCFCF;
933        padding: 0px;
934}
935
936span.input-group { display: block; }
937/*p.input-group label { vertical-align: top; }*/
938.new-event-win p.input-group label { display: inline-block; width: 65px;}
939.new-event-win p.input-group label.input-group { display: inline-block; width: 110px; font-weight: bold;}
940
941input.number {text-align: right}
942input.input-tiny, input.tiny {width: 40px;}
943input.input-small, input.small {width: 80px;}
944input.input-medium, input.medium {width: 160px;}
945input.input-large, input.large {width: 260px;}
946
947label.label-tiny, label.tiny {width: 40px;}
948label.label-small, label.small {width: 80px;}
949label.label-medium, label.medium {width: 160px;}
950label.label-large, label.large {width: 260px;}
951
952select.select-tiny, select.tiny {width: 40px;}
953select.select-small, select.small {width: 80px;}
954select.select-medium, select.medium {width: 160px;}
955select.select-large, select.large {width: 260px;}
956
957.new-event-win fieldset.event-repeat-container label,
958.new-event-win p.input-group.event-repeat-weekly label,
959.new-event-win p.input-group.event-repeat-monthly label {
960        width: auto;
961}
962
963.new-event-win fieldset.input-field-rounded,
964.new-event-win fieldset.search-field,
965.new-event-win fieldset.block-add-attendee-permissions,
966.new-event-win fieldset.block-attendee-list {
967        border:1px solid #CFCFCF;
968}
969
970.new-event-win fieldset.block-attendee-list { width: 300px; max-height:180px; padding: 5px; float: left;}
971.new-event-win fieldset.block-attendee-list ul {  height:160px; overflow: auto;}
972
973
974/* # add attendee */
975
976#tabs.ui-widget-content {
977        border:none;
978}
979#tabs .ui-widget-header {
980        background: none;
981        background-image: none;
982        border: none;
983        border-bottom: 1px solid #4297D7;
984        margin-bottom: 5px;
985}
986
987#calendar.ui-tabs-panel {
988        padding: 0;
989}
990
991.mini-calendar .ui-datepicker { width: auto; background: none repeat scroll 0 0 transparent; }
992.mini-calendar .ui-datepicker  table{width:190px;}
993.mini-calendar .ui-widget-content {     border: none; background-color: transparent; }
994.mini-calendar .ui-widget-header { background: transparent; color: #000; border: 0 none;}
995
996/* fc custumize */
997
998.blocked-event div, .blocked-event-permision div{
999background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.1) 5%, rgba(0,0,0,0) 9%, rgba(0,0,0,0) 13%, rgba(0,0,0,0.1) 17%, rgba(0,0,0,0) 21%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.1) 29%, rgba(0,0,0,0) 33%, rgba(0,0,0,0) 37%, rgba(0,0,0,0.1) 41%, rgba(0,0,0,0) 45%, rgba(0,0,0,0) 49%, rgba(0,0,0,0.1) 53%, rgba(0,0,0,0) 57%, rgba(0,0,0,0) 61%, rgba(0,0,0,0.1) 65%, rgba(0,0,0,0) 69%, rgba(0,0,0,0) 73%, rgba(0,0,0,0.1) 77%, rgba(0,0,0,0.01) 81%, rgba(0,0,0,0) 85%, rgba(0,0,0,0.1) 89%, rgba(0,0,0,0) 93%, rgba(0,0,0,0) 97%, rgba(0,0,0,0) 100%); /* FF3.6+ */
1000background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(1%,rgba(0,0,0,0)), color-stop(5%,rgba(0,0,0,0.1)), color-stop(9%,rgba(0,0,0,0)), color-stop(13%,rgba(0,0,0,0)), color-stop(17%,rgba(0,0,0,0.1)), color-stop(21%,rgba(0,0,0,0)), color-stop(25%,rgba(0,0,0,0)), color-stop(29%,rgba(0,0,0,0.1)), color-stop(33%,rgba(0,0,0,0)), color-stop(37%,rgba(0,0,0,0)), color-stop(41%,rgba(0,0,0,0.1)), color-stop(45%,rgba(0,0,0,0)), color-stop(49%,rgba(0,0,0,0)), color-stop(53%,rgba(0,0,0,0.1)), color-stop(57%,rgba(0,0,0,0)), color-stop(61%,rgba(0,0,0,0)), color-stop(65%,rgba(0,0,0,0.1)), color-stop(69%,rgba(0,0,0,0)), color-stop(73%,rgba(0,0,0,0)), color-stop(77%,rgba(0,0,0,0.1)), color-stop(81%,rgba(0,0,0,0.01)), color-stop(85%,rgba(0,0,0,0)), color-stop(89%,rgba(0,0,0,0.1)), color-stop(93%,rgba(0,0,0,0)), color-stop(97%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
1001background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,0.1) 5%,rgba(0,0,0,0) 9%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.1) 17%,rgba(0,0,0,0) 21%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.1) 29%,rgba(0,0,0,0) 33%,rgba(0,0,0,0) 37%,rgba(0,0,0,0.1) 41%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.1) 53%,rgba(0,0,0,0) 57%,rgba(0,0,0,0) 61%,rgba(0,0,0,0.1) 65%,rgba(0,0,0,0) 69%,rgba(0,0,0,0) 73%,rgba(0,0,0,0.1) 77%,rgba(0,0,0,0.01) 81%,rgba(0,0,0,0) 85%,rgba(0,0,0,0.1) 89%,rgba(0,0,0,0) 93%,rgba(0,0,0,0) 97%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
1002background: -o-linear-gradient(-45deg,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,0.1) 5%,rgba(0,0,0,0) 9%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.1) 17%,rgba(0,0,0,0) 21%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.1) 29%,rgba(0,0,0,0) 33%,rgba(0,0,0,0) 37%,rgba(0,0,0,0.1) 41%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.1) 53%,rgba(0,0,0,0) 57%,rgba(0,0,0,0) 61%,rgba(0,0,0,0.1) 65%,rgba(0,0,0,0) 69%,rgba(0,0,0,0) 73%,rgba(0,0,0,0.1) 77%,rgba(0,0,0,0.01) 81%,rgba(0,0,0,0) 85%,rgba(0,0,0,0.1) 89%,rgba(0,0,0,0) 93%,rgba(0,0,0,0) 97%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
1003background: -ms-linear-gradient(-45deg,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,0.1) 5%,rgba(0,0,0,0) 9%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.1) 17%,rgba(0,0,0,0) 21%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.1) 29%,rgba(0,0,0,0) 33%,rgba(0,0,0,0) 37%,rgba(0,0,0,0.1) 41%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.1) 53%,rgba(0,0,0,0) 57%,rgba(0,0,0,0) 61%,rgba(0,0,0,0.1) 65%,rgba(0,0,0,0) 69%,rgba(0,0,0,0) 73%,rgba(0,0,0,0.1) 77%,rgba(0,0,0,0.01) 81%,rgba(0,0,0,0) 85%,rgba(0,0,0,0.1) 89%,rgba(0,0,0,0) 93%,rgba(0,0,0,0) 97%,rgba(0,0,0,0) 100%); /* IE10+ */
1004background: linear-gradient(-45deg,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,0.1) 5%,rgba(0,0,0,0) 9%,rgba(0,0,0,0) 13%,rgba(0,0,0,0.1) 17%,rgba(0,0,0,0) 21%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.1) 29%,rgba(0,0,0,0) 33%,rgba(0,0,0,0) 37%,rgba(0,0,0,0.1) 41%,rgba(0,0,0,0) 45%,rgba(0,0,0,0) 49%,rgba(0,0,0,0.1) 53%,rgba(0,0,0,0) 57%,rgba(0,0,0,0) 61%,rgba(0,0,0,0.1) 65%,rgba(0,0,0,0) 69%,rgba(0,0,0,0) 73%,rgba(0,0,0,0.1) 77%,rgba(0,0,0,0.01) 81%,rgba(0,0,0,0) 85%,rgba(0,0,0,0.1) 89%,rgba(0,0,0,0) 93%,rgba(0,0,0,0) 97%,rgba(0,0,0,0) 100%); /* W3C */
1005filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
1006}
1007
1008.blocked-event-permision {cursor: hand}
1009
1010.fc-state-default .fc-button-effect span {
1011    background: none;
1012    border:none;
1013}
1014
1015.fc-header-title h2 {
1016    color:#555;
1017}
1018.fc-state-default, .fc-state-default .fc-button-inner {
1019    color: #555555;
1020    text-transform: capitalize;
1021}
1022
1023.fc-state-active, .fc-state-active .fc-button-inner {
1024    color: #FFFFFF;
1025}
1026
1027.block-vertical-toolbox .button.add {
1028    width:190px;
1029}
1030
1031.fc-header .fc-state-active, .fc-header .ui-state-active {
1032    z-index: auto;
1033}
1034
1035.fc-year-monthly-header {
1036    font-weight: bold;   
1037}
1038
1039.fc-year-have-event {
1040    background: none repeat scroll 0 0 transparent !important;
1041   
1042}
1043.fc-year-have-event .fc-day-number {
1044    background: #F3F3F3;
1045    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
1046    border-color: #CCC #BBB #AAA;
1047    border-style: solid;
1048    border-width: 1px;
1049    border-radius: 4px;
1050    -moz-border-radius:4px;
1051    -webkit-border-radius:4px;
1052}
1053
1054.fc-year-main-table div:hover .fc-day-number  {
1055        cursor: pointer;
1056        font-weight: bold;
1057}
1058
1059/* preferences */
1060
1061.expresso-calendar-container h3 {
1062    border-bottom: 2px solid #E17009;
1063    font-size: 170%;
1064    margin-bottom: 10px;
1065    padding-bottom: 2px;
1066}
1067
1068.expresso-calendar-container fieldset legend {/*font-size:1.3em;*/ font-weight:bold;}
1069
1070.preferences-win a {
1071  text-decoration: underline;
1072  font-weight:bold;
1073  font-size:1.05em;
1074  cursor:pointer;
1075}
1076
1077.preferences-win ul li {list-style: none;}
1078
1079
1080.preferences-win fieldset {
1081  border:1px solid #CFCFCF;
1082}
1083
1084.preferences-win fieldset.no-legend {
1085    margin: 0;
1086    padding: 5px 0;
1087    border: none;
1088}
1089
1090.preferences-win hr {
1091  margin: 10px 0;
1092  padding: 0 10px;
1093  /*background:#FFFF85;
1094  border: 1px solid #FFE74D;*/
1095}
1096
1097.preferences-win #preferences_especific_calendar_details fieldset {
1098  border: 0 none;
1099}
1100
1101
1102/* Geral */
1103fieldset.background-fields {
1104  background:#FFFF85;
1105  border: 2px solid #FFE74D;
1106  -moz-border-radius: 15px;
1107  -webkit-border-radius: 15px;
1108}
1109
1110.button.small.ui-button-text-only .ui-button-text {
1111    font-size: 0.9em;
1112    padding: 0.1em 0.6em;
1113}
1114
1115.attendees-list dd.attedee-organizer {
1116        border-bottom: 1px solid #BFBFBF;
1117        margin-bottom: 5px;
1118}
1119
1120/* Events List */
1121.events-list-win th, .events-list-win td {
1122  padding: 15px 0px 15px 0;
1123  vertical-align: middle;
1124  border-bottom: 1px solid #ccc;
1125}
1126
1127.events-list-win .last-row th, .events-list-win .last-row td {
1128  border-bottom: 1px solid #ccc;
1129}
1130
1131.events-list-win table {
1132  width: 100%;
1133  float: left;
1134}
1135
1136.events-list-win table a {
1137  color: rgb(48, 72, 126) !important;
1138  cursor: pointer;
1139}
1140
1141.events-list-win table img {
1142  width: 12px;
1143  height: 12px;
1144  padding: 0 2px;
1145}
1146
1147.events-list-win table span { font-size:12px; }
1148.events-list-win table .same-start-date * { border: 0; }
1149.events-list-win table tr.last-event-same-start-date,
1150.events-list-win table tr.last-event-same-start-date th,
1151.events-list-win table tr.last-event-same-start-date td { border-bottom: 1px solid #ccc;}
1152.events-list-win table th.start-date-multiple-events { border-bottom: 1px solid #ccc; }
1153
1154.events-list-win table .title {
1155    font-size: 150%;
1156    font-weight: bold;
1157}
1158
1159.events-list-win .pagination-events {
1160  margin: 10px 0;
1161  text-align: center;
1162}
1163
1164.expresso-calendar-container .search-field { background-color: #FFF;}
1165.expresso-calendar-container .search-field input { border:none;}
1166
1167.ui-tabs .ui-tabs-panel { padding: 0; margin-top: 10px;}
1168
1169.ui-tabs #calendar_addevent_details5.ui-tabs-panel{margin-top: -3px; min-height: 323px;}
1170
1171.ui-tabs .ui-tabs-nav li .ui-icon-close {
1172    float: right;
1173    margin: 5px 5px 0 -5px;
1174}
1175
1176.cal_day {
1177    display: inline;
1178    background: url("assets/day.png") no-repeat scroll center top transparent;
1179    float: left;
1180    height: 95px;
1181    margin: 0 4px 4px 0 !important;
1182    position: relative;
1183    width: 128px;
1184}
1185.cal_day .day_heading {
1186    color: #FFFFFF;
1187    float: left;
1188    font: 14px Arial;
1189    height: 16px;
1190    padding: 6px;
1191    position: relative;
1192    text-transform: uppercase;
1193    width: 40px;
1194}
1195.cal_day .day_number {
1196    clear: left;
1197    color: #2B2B2B;
1198    font: bold 52px Arial;
1199    height: 95px;
1200    text-align: center;
1201    width: 100%;
1202    z-index: 999;
1203}
1204
1205
1206/* Events List */
1207.details-event-list {
1208  background-color: #FFF;
1209}
1210
1211/* Import and Export*/
1212
1213.import-export-win .ui-widget-header {
1214    background: none;
1215}
1216
1217.import-export-win .ui-tabs-nav {
1218    border: none;
1219    border-bottom: 1px solid #4297D7 !important;
1220}
1221
1222.configure-calendars-win fieldset.user-calendar fieldset {
1223    border:1px solid #CCC;
1224    margin: 0 0 10px 0;
1225    padding: 5px;
1226    -moz-border-radius:5px;
1227    -webkit-border-radius:5px;
1228    border-radius:5px;
1229}
1230
1231.ui-datepicker-buttonpane button.ui-datepicker-current {
1232        display : none;
1233}
1234
1235.ui_tpicker_time{
1236        display : none;
1237}
1238.ui_tpicker_time_label{
1239        display : none;
1240}
1241.block-vertical-toolbox .ui-datepicker-month,
1242.block-vertical-toolbox .ui-datepicker-year {
1243        cursor: pointer;
1244}
1245/*Normaliza de todos os inputs disabled para fonte-color #333*/
1246textarea:disabled, input:disabled{color: #333 !important;}
1247
1248
1249.map-event{
1250        border-style: dashed;
1251        border-width: 2px;
1252        border-color: #36C;
1253        background-color: transparent;
1254        color: black;
1255}
1256
1257
1258#new_event_map .map-event .fc-event-head.fc-event-skin,.fc-event-inner.fc-event-skin{
1259        border-color: transparent;
1260}
1261
1262#new_event_map .map-event .fc-event-head,#new_event_map .map-event .fc-event-content{
1263        color: transparent;
1264}
Note: See TracBrowser for help on using the repository browser.