766 lines
11 KiB
SCSS
766 lines
11 KiB
SCSS
@import '../../../theme/sass/conf/conf';
|
|
|
|
div.blurCalendar{
|
|
font-size: 12px;
|
|
}
|
|
.fc {
|
|
direction: ltr;
|
|
text-align: left;
|
|
|
|
button {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
height: 2.1em;
|
|
padding: 0 .6em;
|
|
font-size: 1em;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
&::-moz-focus-inner {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.fc-icon {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.fc-button-group {
|
|
& > * {
|
|
float: left;
|
|
margin: 0 0 0 -1px;
|
|
}
|
|
& > :first-child {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
hr {
|
|
height: 0;
|
|
margin: 0;
|
|
padding: 0 0 2px;
|
|
border-style: solid;
|
|
border-width: 1px 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
font-size: 1em;
|
|
}
|
|
|
|
th {
|
|
text-align: center;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
padding: 0;
|
|
vertical-align: top;
|
|
}
|
|
|
|
td.fc-today {
|
|
border-style: double;
|
|
}
|
|
|
|
.fc-row {
|
|
border: 0 solid;
|
|
}
|
|
|
|
.fc-toolbar {
|
|
& > * {
|
|
& > * {
|
|
float: left;
|
|
margin-left: .75em;
|
|
}
|
|
& > :first-child {
|
|
margin-left: 0;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.fc-axis {
|
|
vertical-align: middle;
|
|
padding: 0 4px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.fc-rtl {
|
|
text-align: right;
|
|
}
|
|
|
|
.fc-unthemed {
|
|
th, td, hr, thead, tbody, .fc-row, .fc-popover {
|
|
border-color: rgba($border, 0.3);
|
|
}
|
|
|
|
.fc-popover {
|
|
background-color: $default;
|
|
border: 1px solid;
|
|
|
|
.fc-header {
|
|
background: #eee;
|
|
|
|
.fc-close {
|
|
color: #666666;
|
|
font-size: 25px;
|
|
margin-top: 4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
hr {
|
|
background: #eee;
|
|
}
|
|
|
|
.fc-today {
|
|
background: rgba(255,255,255,0.15);
|
|
}
|
|
}
|
|
|
|
.fc-highlight {
|
|
background: rgba(255,255,255,0.25);
|
|
opacity: .3;
|
|
}
|
|
|
|
.fc-icon {
|
|
display: inline-block;
|
|
font-size: 2em;
|
|
font-family: "Courier New", Courier, monospace;
|
|
}
|
|
|
|
.fc-icon-left-single-arrow:after {
|
|
content: "\02039";
|
|
font-weight: $font-bold;
|
|
font-size: 100%;
|
|
}
|
|
|
|
.fc-icon-right-single-arrow:after {
|
|
content: "\0203A";
|
|
font-weight: $font-bold;
|
|
font-size: 100%;
|
|
}
|
|
|
|
.fc-icon-left-double-arrow:after {
|
|
content: "\000AB";
|
|
}
|
|
|
|
.fc-icon-right-double-arrow:after {
|
|
content: "\000BB";
|
|
}
|
|
|
|
.fc-icon-x:after {
|
|
content: "\000D7";
|
|
}
|
|
|
|
.fc-state-default {
|
|
border: 1px solid;
|
|
outline: none;
|
|
background: #f5f5f5 repeat-x;
|
|
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
|
|
color: #333333;
|
|
|
|
&.fc-corner-left {
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
}
|
|
|
|
&.fc-corner-right {
|
|
border-top-right-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
}
|
|
}
|
|
|
|
.fc-state-hover,
|
|
.fc-state-down,
|
|
.fc-state-active,
|
|
.fc-state-disabled {
|
|
color: #333333;
|
|
background-color: $disabled-bg;
|
|
}
|
|
|
|
.fc-state-hover {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
background-position: 0 -15px;
|
|
transition: background-position 0.1s linear;
|
|
}
|
|
|
|
.fc-state-down,
|
|
.fc-state-active {
|
|
background: #cccccc none;
|
|
}
|
|
|
|
.fc-state-disabled {
|
|
cursor: default;
|
|
background-image: none;
|
|
opacity: 0.65;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.fc-button-group {
|
|
display: inline-block;
|
|
}
|
|
|
|
.fc-popover {
|
|
position: absolute;
|
|
|
|
.fc-header {
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.fc-header .fc-title {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
.fc-header .fc-close {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.fc-ltr .fc-popover .fc-header .fc-title,
|
|
.fc-rtl .fc-popover .fc-header .fc-close {
|
|
float: left;
|
|
}
|
|
|
|
.fc-rtl .fc-popover .fc-header .fc-title,
|
|
.fc-ltr .fc-popover .fc-header .fc-close {
|
|
float: right;
|
|
}
|
|
|
|
.fc-popover > .ui-widget-header + .ui-widget-content {
|
|
border-top: 0;
|
|
}
|
|
|
|
.fc-clear {
|
|
clear: both;
|
|
}
|
|
|
|
.fc-bg,
|
|
.fc-highlight-skeleton,
|
|
.fc-helper-skeleton {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.fc-bg {
|
|
bottom: 0;
|
|
}
|
|
|
|
.fc-bg table {
|
|
height: 100%;
|
|
}
|
|
|
|
.fc-row {
|
|
position: relative;
|
|
table {
|
|
border-left: 0 hidden transparent;
|
|
border-right: 0 hidden transparent;
|
|
border-bottom: 0 hidden transparent;
|
|
}
|
|
|
|
&:first-child table {
|
|
border-top: 0 hidden transparent;
|
|
}
|
|
|
|
.fc-bg {
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-highlight-skeleton {
|
|
z-index: 2;
|
|
bottom: 0;
|
|
table {
|
|
height: 100%;
|
|
}
|
|
td {
|
|
border-color: transparent;
|
|
}
|
|
}
|
|
.fc-content-skeleton {
|
|
position: relative;
|
|
z-index: 3;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.fc-helper-skeleton {
|
|
z-index: 4;
|
|
}
|
|
|
|
.fc-content-skeleton td,
|
|
.fc-helper-skeleton td {
|
|
background: none;
|
|
border-color: transparent;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.fc-content-skeleton tbody td,
|
|
.fc-helper-skeleton tbody td {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
|
|
.fc-scroller {
|
|
//overflow-y: scroll;
|
|
//overflow-x: hidden;
|
|
& > * {
|
|
//position: relative;
|
|
//width: 100%;
|
|
//overflow: hidden;
|
|
//height: 100%;
|
|
}
|
|
}
|
|
|
|
.fc-event {
|
|
position: relative;
|
|
display: block;
|
|
font-size: .85em;
|
|
line-height: 1.3;
|
|
border: 1px solid $primary;
|
|
background-color: $primary;
|
|
font-weight: $font-normal;
|
|
}
|
|
|
|
.fc-event,
|
|
.fc-event:hover,
|
|
.ui-widget .fc-event {
|
|
color: $label-text;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.fc-event[href],
|
|
.fc-event.fc-draggable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.fc-day-grid-event {
|
|
margin: 1px 2px 0;
|
|
padding: 0 1px;
|
|
}
|
|
|
|
.fc-ltr .fc-day-grid-event.fc-not-start,
|
|
.fc-rtl .fc-day-grid-event.fc-not-end {
|
|
margin-left: 0;
|
|
border-left-width: 0;
|
|
padding-left: 1px;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.fc-ltr .fc-day-grid-event.fc-not-end,
|
|
.fc-rtl .fc-day-grid-event.fc-not-start {
|
|
margin-right: 0;
|
|
border-right-width: 0;
|
|
padding-right: 1px;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.fc-day-grid-event > .fc-content {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fc-day-grid-event .fc-time {
|
|
font-weight: $font-bold;
|
|
}
|
|
|
|
.fc-day-grid-event .fc-resizer {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 7px;
|
|
}
|
|
|
|
.fc-ltr .fc-day-grid-event .fc-resizer {
|
|
right: -3px;
|
|
cursor: e-resize;
|
|
}
|
|
|
|
.fc-rtl .fc-day-grid-event .fc-resizer {
|
|
left: -3px;
|
|
cursor: w-resize;
|
|
}
|
|
|
|
a.fc-more {
|
|
margin: 1px 3px;
|
|
font-size: .85em;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.fc-limited {
|
|
display: none;
|
|
}
|
|
|
|
.fc-day-grid .fc-row {
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-more-popover {
|
|
z-index: 2;
|
|
width: 220px;
|
|
|
|
.fc-event-container {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
.fc-toolbar {
|
|
text-align: center;
|
|
margin-bottom: 1em;
|
|
.fc-left {
|
|
float: left;
|
|
}
|
|
.fc-right {
|
|
float: right;
|
|
}
|
|
.fc-center {
|
|
display: inline-block;
|
|
}
|
|
h2 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
width: 100%;
|
|
line-height: 26px;
|
|
}
|
|
button {
|
|
position: relative;
|
|
}
|
|
|
|
.fc-state-hover, .ui-state-hover {
|
|
z-index: 2;
|
|
}
|
|
|
|
.fc-state-down {
|
|
z-index: 3;
|
|
}
|
|
|
|
.fc-state-active,
|
|
.ui-state-active {
|
|
z-index: 4;
|
|
}
|
|
|
|
button:focus {
|
|
z-index: 5;
|
|
}
|
|
}
|
|
|
|
.fc-view-container *,
|
|
.fc-view-container *:before,
|
|
.fc-view-container *:after {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.fc-view,
|
|
.fc-view > table {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-basicWeek-view .fc-content-skeleton,
|
|
.fc-basicDay-view .fc-content-skeleton {
|
|
padding-top: 1px;
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
.fc-basic-view tbody .fc-row {
|
|
min-height: 4em;
|
|
max-height: 70px;
|
|
}
|
|
|
|
.fc-row.fc-rigid {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fc-row.fc-rigid .fc-content-skeleton {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.fc-basic-view .fc-week-number,
|
|
.fc-basic-view .fc-day-number {
|
|
padding: 0 2px;
|
|
}
|
|
|
|
.fc-basic-view td.fc-week-number span,
|
|
.fc-basic-view td.fc-day-number {
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.fc-basic-view .fc-week-number {
|
|
text-align: center;
|
|
}
|
|
|
|
.fc-basic-view .fc-week-number span {
|
|
display: inline-block;
|
|
min-width: 1.25em;
|
|
}
|
|
|
|
.fc-ltr .fc-basic-view .fc-day-number {
|
|
text-align: right;
|
|
}
|
|
|
|
.fc-rtl .fc-basic-view .fc-day-number {
|
|
text-align: left;
|
|
}
|
|
|
|
.fc-day-number.fc-other-month {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.fc-agenda-view .fc-day-grid {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.fc-agenda-view .fc-day-grid .fc-row {
|
|
min-height: 3em;
|
|
}
|
|
|
|
.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
|
|
padding-top: 1px;
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
.fc-ltr .fc-axis {
|
|
text-align: right;
|
|
}
|
|
|
|
.fc-rtl .fc-axis {
|
|
text-align: left;
|
|
}
|
|
|
|
.ui-widget td.fc-axis {
|
|
font-weight: $font-normal;
|
|
}
|
|
|
|
.fc-time-grid-container,
|
|
.fc-time-grid {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-time-grid {
|
|
min-height: 100%;
|
|
}
|
|
|
|
.fc-time-grid table {
|
|
border: 0 hidden transparent;
|
|
}
|
|
|
|
.fc-time-grid > .fc-bg {
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-time-grid .fc-slats,
|
|
.fc-time-grid > hr {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.fc-time-grid .fc-highlight-skeleton {
|
|
z-index: 3;
|
|
}
|
|
|
|
.fc-time-grid .fc-content-skeleton {
|
|
position: absolute;
|
|
z-index: 4;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.fc-time-grid > .fc-helper-skeleton {
|
|
z-index: 5;
|
|
}
|
|
|
|
.fc-slats {
|
|
td {
|
|
height: 1.5em;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.fc-minor td {
|
|
border-top-style: dotted;
|
|
}
|
|
|
|
.ui-widget-content {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
.fc-time-grid .fc-highlight-container {
|
|
position: relative;
|
|
}
|
|
|
|
.fc-time-grid .fc-highlight {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.fc-time-grid .fc-event-container {
|
|
position: relative;
|
|
}
|
|
|
|
.fc-ltr .fc-time-grid .fc-event-container {
|
|
margin: 0 2.5% 0 2px;
|
|
}
|
|
|
|
.fc-rtl .fc-time-grid .fc-event-container {
|
|
margin: 0 2px 0 2.5%;
|
|
}
|
|
|
|
.fc-time-grid .fc-event {
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
.fc-time-grid-event {
|
|
overflow: hidden;
|
|
|
|
&.fc-not-start {
|
|
border-top-width: 0;
|
|
padding-top: 1px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
&.fc-not-end {
|
|
border-bottom-width: 0;
|
|
padding-bottom: 1px;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
& > .fc-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.fc-title {
|
|
padding: 0 1px;
|
|
}
|
|
|
|
.fc-time {
|
|
padding: 0 1px;
|
|
font-size: .85em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.fc-bg {
|
|
z-index: 1;
|
|
background: $default;
|
|
opacity: .25;
|
|
filter: alpha(opacity=25);
|
|
}
|
|
|
|
&.fc-short {
|
|
.fc-content {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.fc-time {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
span {
|
|
display: none;
|
|
}
|
|
|
|
&:before {
|
|
content: attr(data-start);
|
|
}
|
|
|
|
&:after {
|
|
content: "\000A0-\000A0";
|
|
}
|
|
}
|
|
|
|
.fc-title {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
font-size: .85em;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.fc-resizer {
|
|
position: absolute;
|
|
z-index: 3;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 8px;
|
|
overflow: hidden;
|
|
line-height: 8px;
|
|
font-size: 11px;
|
|
font-family: monospace;
|
|
text-align: center;
|
|
cursor: s-resize;
|
|
&:after {
|
|
content: "=";
|
|
}
|
|
}
|
|
}
|
|
|
|
.fc-day-grid-container.fc-scroller {
|
|
height: auto!important;
|
|
}
|
|
|
|
.calendar-panel.card .card-body{
|
|
padding: 0;
|
|
}
|
|
|
|
.fc-body > tr > .fc-widget-content{
|
|
border: none;
|
|
}
|
|
|
|
.fc-head{
|
|
color: $label-text;
|
|
background-color: $primary;
|
|
td, th{
|
|
border:none;
|
|
}
|
|
div.fc-widget-header{
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
|
|
.fc-today-button, .fc-month-button, .fc-agendaWeek-button, .fc-agendaDay-button {
|
|
display: none;
|
|
}
|
|
.blurCalendar{
|
|
margin-top: 15px;
|
|
}
|
|
.fc-prev-button, .fc-next-button{
|
|
position: absolute;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
border: none;
|
|
color: $content-text;
|
|
}
|
|
.fc-next-button {
|
|
left: 30px;
|
|
}
|
|
.fc-prev-button {
|
|
}
|
|
.fc-day-number{
|
|
color: $content-text;
|
|
opacity: 0.9;
|
|
}
|