einstellungsmöglichkeiten findet ihr im adminbereich unter extras.
deaktivierbar unter board-funktionalitäten
weiters ist zu beachten:
- berechtigungen vergeben: so wie auch die anderen berechtigungen müssen für das erstellen von terminen etc. rechte vergeben werden. berechtigungen -> gruppenrechte -> registrierte benutzer/gäste/admins etc. -> erweiterte berechtigungen -> kalender
um kalendereinträge anderer benutzer ändern zu können muss dies in den globalen moderator berechtigungen gesetzt werden.
- farblich findet ihr den kalender in den standardfarben eures styles vor. um diesen anzupassen müsst ihr folgenden code unter styles -> themes -> ändern hinzufügen
auf prosilver basierende styles (skyblue, xabbblue)
- Code: Alles auswählen
/* calendar mod additions... */
.calendar-new-icon span { background: transparent none 0 0 no-repeat; }
.calendar-day-icon span { background: transparent none 0 0 no-repeat; }
.calendar-week-icon span { background: transparent none 0 0 no-repeat; }
.calendar-month-icon span { background: transparent none 0 0 no-repeat; }
.buttons div.calendar-new-icon { width: {IMG_BUTTON_CALENDAR_NEW_WIDTH}px; height: {IMG_BUTTON_CALENDAR_NEW_HEIGHT}px; text-align: left; }
.buttons div.calendar-day-icon { width: {IMG_BUTTON_CALENDAR_DAY_WIDTH}px; height: {IMG_BUTTON_CALENDAR_DAY_HEIGHT}px; text-align: left; }
.buttons div.calendar-week-icon { width: {IMG_BUTTON_CALENDAR_WEEK_WIDTH}px; height: {IMG_BUTTON_CALENDAR_WEEK_HEIGHT}px; text-align: left; }
.buttons div.calendar-month-icon { width: {IMG_BUTTON_CALENDAR_MONTH_WIDTH}px; height: {IMG_BUTTON_CALENDAR_MONTH_HEIGHT}px; text-align: left; }
/* uses border-top-color = .bg3 background-color
(the line between events in the month display) */
hr.hrCal {
border-top-color: #cadceb;
}
/* uses color from h1
(calendar header previous and next links) */
.calH1 {
color: #FFFFFF;
font-weight: bold;
font-size:200%
}
/* The from and to times take up a lot of
space in the calendar display.
Use this to shrink them */
.smCalText{font-size:85%}
/* bg4 is just slightly darker then bg3
(used in calendar headers) */
.bg4 { background-color: #8DB8DE; }
/* uses background-color of .bg3
(used to display the numbers and icons for
each day in the month and week view displays ) */
table tbody td.bg3_calMonH{
background-color: #cadceb;
font-size:85%
}
/* uses background-color of .bg4
(used to display the numbers and icons for
each day in the month and week view displays ) */
table tbody td.bg4_calMonH{
background-color: #8DB8DE;
font-size:85%
}
/* uses background-color of .bg1
(used to display days in calendar month/week view) */
table.table1 tbody td.bg1_calMon {
background-color: #ECF3F7;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg2
(used to display days in calendar month/week view) */
table.table1 tbody td.bg2_calMon {
background-color: #e1ebf2;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg3
(used to display days in calendar month/week view) */
table.table1 tbody td.bg3_calMon {
background-color: #cadceb;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg1
uses border-top-color = .forumbg background-color
(used to display events in calendar day view) */
table.table1 tbody td.bg1_calDay {
background-color: #ECF3F7;
border-top-color: #12A3EB;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 3px;
padding-right: 3px;
}
/* uses background-color of .bg3
uses border-top-color = .forumbg background-color
(used to display negative space in calendar day view) */
table.table1 tbody td.bg3_calDay {
background-color: #cadceb;
border-top-color: #12A3EB;
}
.calendar-new-icon span { background-image: url("{IMG_BUTTON_CALENDAR_NEW_SRC}") ;}
.calendar-day-icon span { background-image: url("{IMG_BUTTON_CALENDAR_DAY_SRC}") ;}
.calendar-week-icon span { background-image: url("{IMG_BUTTON_CALENDAR_WEEK_SRC}") ;}
.calendar-month-icon span { background-image: url("{IMG_BUTTON_CALENDAR_MONTH_SRC}") ;}
/* calendar mod end */
auf subsilver2 basierende styles (fisubice2, nwored)
- Code: Alles auswählen
/* -------------------------
calendar mod additions...
------------------------- */
.buttons {
float: left;
width: auto;
height: auto;
}
/* Rollover state */
.buttons div {
float: left;
margin: 0 5px 0 0;
background-position: 0 100%;
}
/* Rolloff state */
.buttons div a {
display: block;
width: 100%;
height: 100%;
background-position: 0 0;
position: relative;
overflow: hidden;
}
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */
/*.buttons div span { display: none; }*/
/*.buttons div a:hover { background-image: none; }*/
.buttons div span { position: absolute; width: 100%; height: 100%; cursor: pointer;}
.buttons div a:hover span { background-position: 0 100%; }
/* The following are part of the calendar mod.
They follow the same format as the reply-icon, post-icon, locked-icon, pmreply-icon, newpm-icon, and forwardpm-icon.
If you are trying to implement a style other then prosilver, look at how your existing style defines
those icons, and do the same for the new calendar icons.
*/
.calendar-new-icon span { background: transparent none 0 0 no-repeat; }
.calendar-day-icon span { background: transparent none 0 0 no-repeat; }
.calendar-week-icon span { background: transparent none 0 0 no-repeat; }
.calendar-month-icon span { background: transparent none 0 0 no-repeat; }
/* The following are part of the calendar mod.
They follow the same format as the reply-icon, post-icon, locked-icon, pmreply-icon, newpm-icon, and forwardpm-icon.
If you are trying to implement a style other then prosilver, look at how your existing style defines
those icons, and do the same for the new calendar icons.
Note the "text-align: left" was added because there were a few instances where the icons were cut in half...
adding the text align property helps reserve enough space to fully display the icon.
*/
.buttons div.calendar-new-icon { width: {IMG_BUTTON_CALENDAR_NEW_WIDTH}px; height: {IMG_BUTTON_CALENDAR_NEW_HEIGHT}px; text-align: left; }
.buttons div.calendar-day-icon { width: {IMG_BUTTON_CALENDAR_DAY_WIDTH}px; height: {IMG_BUTTON_CALENDAR_DAY_HEIGHT}px; text-align: left; }
.buttons div.calendar-week-icon { width: {IMG_BUTTON_CALENDAR_WEEK_WIDTH}px; height: {IMG_BUTTON_CALENDAR_WEEK_HEIGHT}px; text-align: left; }
.buttons div.calendar-month-icon { width: {IMG_BUTTON_CALENDAR_MONTH_WIDTH}px; height: {IMG_BUTTON_CALENDAR_MONTH_HEIGHT}px; text-align: left; }
/* uses border-top-color = .bg3 background-color
(the line between events in the month display) */
hr.hrCal {
border-top-color: #cadceb;
}
/* uses color from h1
(calendar header previous and next links) */
.calH1 {
color: #000000;
font-weight: bold;
font-size:200%
}
/* The from and to times take up a lot of
space in the calendar display.
Use this to shrink them */
.smCalText{font-size:85%}
/* bg4 is just slightly darker then bg3
days of the week name headers
(used in calendar headers) */
.bg4 { height: 28px;
margin: 0;
padding: 0;
border: 0;
background-color: #C7D0D7;
background-image: url('styles/subsilver2/theme/images/cellpic1.gif');
text-indent: 4px; }
/* uses background-color of .bg3
this is "normal" day header color
(used to display the numbers and icons for
each day in the month and week view displays ) */
table tbody td.bg3_calMonH{
background-color: #DCE1E5;
font-size:85%
}
/* uses background-color of .bg4
this is "today/selected" header color
(used to display the numbers and icons for
each day in the month and week view displays ) */
table tbody td.bg4_calMonH{
background-color: #C0C8D0;
font-size:85%
}
/* uses background-color of .bg1
these are "normal" days
(used to display days in calendar month/week view) */
table.table1 tbody td.bg1_calMon {
background-color: #ECECEC;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg2
this is "current/slected" day
(used to display days in calendar month/week view) */
table.table1 tbody td.bg2_calMon {
background-color: #DCE1E5;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg3
these are "dummy" days
(used to display days in calendar month/week view) */
table.table1 tbody td.bg3_calMon {
background-color: #f2f2f2;
padding-top: 2px;
padding-bottom: 5px;
padding-left: 4px;
padding-right: 4px;
}
/* uses background-color of .bg1
uses border-top-color = .forumbg background-color
(used to display events in calendar day view) */
table.table1 tbody td.bg1_calDay {
background-color: #DCE1E5;
border-top-color: #C0C8D0;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 3px;
padding-right: 3px;
}
/* uses background-color of .bg3
uses border-top-color = .forumbg background-color
(used to display negative space in calendar day view) */
table.table1 tbody td.bg3_calDay {
background-color: #f2f2f2;
border-top-color: #C0C8D0;
}
/* The following are part of the calendar mod.
They follow the same format as the reply-icon, post-icon, locked-icon, pmreply-icon, newpm-icon, and forwardpm-icon.
If you are trying to implement a style other then prosilver, look at how your existing style defines
those icons, and do the same for the new calendar icons.
*/
.calendar-new-icon span { background-image: url("{IMG_BUTTON_CALENDAR_NEW_SRC}") ;}
.calendar-day-icon span { background-image: url("{IMG_BUTTON_CALENDAR_DAY_SRC}") ;}
.calendar-week-icon span { background-image: url("{IMG_BUTTON_CALENDAR_WEEK_SRC}") ;}
.calendar-month-icon span { background-image: url("{IMG_BUTTON_CALENDAR_MONTH_SRC}") ;}
/* -------------------------
calendar mod end
------------------------- */
ob dieser kalender mit dem im portal verknüpft wird oder diesen zukünftig ersetzt ist noch nicht geklärt.