manager.css en desarrollo fullcalendar

This commit is contained in:
OscarRui 2021-06-04 13:10:04 +02:00 committed by GitHub
parent 8dafa546b6
commit 786d28f70c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 86 additions and 2 deletions

View File

@ -82,6 +82,8 @@ table.seat td:first-child {
backface-visibility: hidden;
}
/* pop up window */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
@ -96,7 +98,6 @@ table.seat td:first-child {
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
@ -121,6 +122,89 @@ table.seat td:first-child {
cursor: pointer;
}
/*Full calendar*/
.fc-container{
padding-left: 5%;
padding-right: 5%;
padding-top: 3em;
}
.fc-container .fc-unthemed th,
.fc-container .fc-unthemed td,
.fc-container .fc-unthemed thead,
.fc-container .fc-unthemed tbody,
.fc-container .fc-unthemed .fc-divider,
.fc-container .fc-unthemed .fc-row,
.fc-container .fc-unthemed .fc-content, /* for gutter border */
.fc-container .fc-unthemed .fc-popover,
.fc-container .fc-unthemed .fc-list-view,
.fc-container .fc-unthemed .fc-list-heading td {
border-color: #1f2c3d;
}
.fc-container .fc-unthemed td.fc-today {
background: #ffd446;
}
.fc-container .fc-event {
position: relative; /* for resize handle and other inner positioning */
display: block; /* make the <a> tag block */
font-size: .85em;
line-height: 1.3;
border-radius: 3px;
border: 1px solid #000000; /* default BORDER color */
font-weight: bold; /* undo jqui's ui-widget-header bold */
}
.fc-container .fc-event,
.fc-container .fc-event-dot {
background-color: #1f2c3d; /* default BACKGROUND color */
}
/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-container .fc-event,
.fc-container .fc-event:hover,
.fc-container .ui-widget .fc-event {
color: #d3ebff; /* default TEXT color */
text-decoration: none; /* if <a> has an href */
}
.fc-container .fc-state-default {
background-color: #1f2c3d;
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
background-image: linear-gradient(to bottom, #1f2c3d, #1f2c3d);
background-repeat: 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.25);
color: #d3ebff;
text-shadow: 0 1px 1px rgb(255 255 255 / 75%);
box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%), 0 1px 2px rgb(0 0 0 / 5%);
}
.fc-container .fc-toolbar {
text-align: center;
background-color: #1f2c3d;
}
.fc-container .fc-toolbar h2 {
margin: 0;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
color: #d3ebff;
}
.fc-container .fc-view-container *, .fc-view-container *:before, .fc-view-container *:after {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
margin: auto;
}
/*
lists like tables
@ -240,4 +324,4 @@ General configuration
grid-column-start: 5;
grid-column-end: 6;
grid-template-columns: auto;
}
}