91 lines
1.1 KiB
CSS
91 lines
1.1 KiB
CSS
.weekview-controls
|
|
{
|
|
margin-bottom: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.weekview-control
|
|
{
|
|
margin: 0 12px;
|
|
}
|
|
|
|
.weekview-table table
|
|
{
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.weekview-cell
|
|
{
|
|
border: 1px solid hsl(0,0%,37.5%);
|
|
padding: 8px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.weekview-cell-day
|
|
{
|
|
width: 13.5%;
|
|
}
|
|
|
|
.weekview-cell-week
|
|
{
|
|
width: 5.5%;
|
|
}
|
|
|
|
.weekview-cell-regular
|
|
{
|
|
width: 13.5%;
|
|
height: 120px;
|
|
|
|
cursor: copy;
|
|
}
|
|
|
|
.weekview-cell-today
|
|
{
|
|
outline: 2px solid hsl(0, 0%, 100%);
|
|
}
|
|
|
|
.weekview-day
|
|
{
|
|
font-size: 0.75em;
|
|
cursor: help;
|
|
}
|
|
|
|
.weekview-events
|
|
{
|
|
margin: 0; padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.weekview-event_entry
|
|
{
|
|
margin: 4px;
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
font-size: 0.75em;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 100%;
|
|
min-width: 75px;
|
|
word-wrap: anywhere;
|
|
}
|
|
|
|
.weekview-event_entry.access_level-none
|
|
,
|
|
.weekview-event_entry.access_level-view
|
|
{
|
|
/*
|
|
cursor: default;
|
|
*/
|
|
cursor: pointer;
|
|
}
|
|
|
|
.weekview-event_entry.access_level-edit
|
|
,
|
|
.weekview-event_entry.access_level-admin
|
|
{
|
|
cursor: pointer;
|
|
}
|