#2721: FullCalendarPanel.scss
projectforge-webapp/src/containers/panel/calendar/FullCalendarPanel.scss SCSS stylesheet, projectforge-webapp/src/containers/panel/calendar/FullCalendarPanel.scss 41 lines · 34 code · 0 comments · 7 blank
Purpose: React webapp: FullCalendarPanel.scss. FullCalendarPanel.scss is part of the ProjectForge open-source project management application.
Source (first 100 lines)
.fc-view {
.fc .fc-scrollgrid-liquid {
height: calc(100% + 2px);
}
table {
border-color: #dee2e6;
> * > * th, > * > * tr {
border-width: 0;
}
&.fc-col-header {
border-style: solid;
border-width: 1px 1px 1px 1px;
}
}
.fc-daygrid-body {
border-style: solid;
border-color: #dee2e6;
border-width: 0 1px 1px 1px;
overflow: visible;
.fc-daygrid-day {
border-width: 1px;
border-style: solid;
border-color: #dee2e6;
.fc-event-main {
padding: 0 4px;
}
}
}
&.fc-timeGridWeek-view {
.fc-timegrid-col {
border-width: 1px;
}
}
}
Git History
3490f27f1 fix calendar and timesheet page
3490f27f1
fix calendar and timesheet page3490f27f105c220263fa22ff716d907beb75c5a5
diff --git a/projectforge-webapp/src/containers/panel/calendar/FullCalendarPanel.scss b/projectforge-webapp/src/containers/panel/calendar/FullCalendarPanel.scss
new file mode 100644
index 000000000..dfbceead7
--- /dev/null
+++ b/projectforge-webapp/src/containers/panel/calendar/FullCalendarPanel.scss
@@ -0,0 +1,41 @@
+.fc-view {
+ .fc .fc-scrollgrid-liquid {
+ height: calc(100% + 2px);
+ }
+
+ table {
+ border-color: #dee2e6;
+
+ > * > * th, > * > * tr {
+ border-width: 0;
+ }
+
+ &.fc-col-header {
+ border-style: solid;
+ border-width: 1px 1px 1px 1px;
+ }
+ }
+
+ .fc-daygrid-body {
+ border-style: solid;
+ border-color: #dee2e6;
+ border-width: 0 1px 1px 1px;
+ overflow: visible;
+
+ .fc-daygrid-day {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #dee2e6;
+
+ .fc-event-main {
+ padding: 0 4px;
+ }
+ }
+ }
+
+ &.fc-timeGridWeek-view {
+ .fc-timegrid-col {
+ border-width: 1px;
+ }
+ }
+}