2020-08-05 15:39:16 +01:00
|
|
|
/*
|
|
|
|
|
* App Global CSS
|
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
|
* Put style rules here that you want to apply globally. These styles are for
|
|
|
|
|
* the entire app and not just one component. Additionally, this file can be
|
|
|
|
|
* used as an entry point to import other CSS/Sass files to be included in the
|
|
|
|
|
* output CSS.
|
|
|
|
|
* For more information on global stylesheets, visit the documentation:
|
|
|
|
|
* https://ionicframework.com/docs/layout/global-stylesheets
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Core CSS required for Ionic components to work properly */
|
|
|
|
|
@import "~@ionic/angular/css/core.css";
|
|
|
|
|
|
|
|
|
|
/* Basic CSS for apps built with Ionic */
|
|
|
|
|
@import "~@ionic/angular/css/normalize.css";
|
|
|
|
|
@import "~@ionic/angular/css/structure.css";
|
|
|
|
|
@import "~@ionic/angular/css/typography.css";
|
|
|
|
|
@import '~@ionic/angular/css/display.css';
|
|
|
|
|
|
|
|
|
|
/* Optional CSS utils that can be commented out */
|
|
|
|
|
@import "~@ionic/angular/css/padding.css";
|
|
|
|
|
@import "~@ionic/angular/css/float-elements.css";
|
|
|
|
|
@import "~@ionic/angular/css/text-alignment.css";
|
|
|
|
|
@import "~@ionic/angular/css/text-transformation.css";
|
|
|
|
|
@import "~@ionic/angular/css/flex-utils.css";
|
2021-01-21 15:45:58 +01:00
|
|
|
|
|
|
|
|
|
2021-01-26 10:53:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// calendar
|
2021-01-28 16:18:10 +01:00
|
|
|
// ionic calendar2
|
2021-02-02 12:28:37 +01:00
|
|
|
// calendar current day
|
2021-01-28 16:18:10 +01:00
|
|
|
|
2021-02-02 12:28:37 +01:00
|
|
|
// current day
|
|
|
|
|
ion-slide{
|
|
|
|
|
td{
|
|
|
|
|
div {
|
|
|
|
|
padding-left: 7px;
|
|
|
|
|
border-radius: 28px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
height: 25px;
|
|
|
|
|
}
|
2021-01-21 15:45:58 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-02 12:28:37 +01:00
|
|
|
td.monthview-primary-with-event {
|
2021-01-22 16:00:37 +01:00
|
|
|
background-color: white !important;
|
2021-02-02 12:28:37 +01:00
|
|
|
}
|
2021-02-02 15:11:30 +01:00
|
|
|
|
2021-02-02 12:28:37 +01:00
|
|
|
// current date
|
|
|
|
|
td.monthview-current{
|
|
|
|
|
border-bottom: 1px solid lightskyblue !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
color: black !important;
|
2021-02-02 12:28:37 +01:00
|
|
|
background-color: white !important;
|
2021-01-22 16:00:37 +01:00
|
|
|
}
|
2021-02-02 12:28:37 +01:00
|
|
|
// selected date =============================
|
2021-01-22 16:00:37 +01:00
|
|
|
td.monthview-selected {
|
2021-02-02 12:28:37 +01:00
|
|
|
background-color: lightskyblue !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
color: white !important;
|
2021-01-22 16:00:37 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-02 12:28:37 +01:00
|
|
|
td.monthview-secondary-with-event, td.monthview-secondary-with-event[_ngcontent-dwf-c153] {
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
color: black !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-28 16:18:10 +01:00
|
|
|
.event-detail-container{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-week-view {
|
|
|
|
|
border-top: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-29 13:50:38 +01:00
|
|
|
.calendar-event-type
|
2021-02-01 12:05:17 +01:00
|
|
|
|
2021-01-25 16:18:36 +01:00
|
|
|
/* Timeline */
|
|
|
|
|
|
|
|
|
|
.cal-hour-segment {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-current-time-marker {
|
|
|
|
|
background-color: #42b9fe !important;
|
|
|
|
|
}
|
|
|
|
|
.timeline .cal-event, .cal-event{
|
2021-01-26 10:53:12 +01:00
|
|
|
padding: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-current-time-marker {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
margin-left: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-02 12:28:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-26 10:53:12 +01:00
|
|
|
.cal-current-time-marker::before{
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
background-color: #42b9fe !important;
|
|
|
|
|
content: ".";
|
|
|
|
|
color: transparent;
|
|
|
|
|
left: 55px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
border-radius: 91px;
|
2021-01-27 13:57:55 +01:00
|
|
|
top: -3.5px;
|
2021-01-26 10:53:12 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-time{
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #797979;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-box{
|
2021-02-03 17:13:32 +01:00
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
width: calc(100% - 0px);
|
|
|
|
|
border-radius: 5px;
|
2021-01-27 13:57:55 +01:00
|
|
|
padding: 3px;
|
|
|
|
|
background-color: white !important;
|
|
|
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07) !important;
|
|
|
|
|
border: solid 1px #e9e9e9 !important;
|
2021-01-26 10:53:12 +01:00
|
|
|
color: black;
|
|
|
|
|
.timeline-start-time, .timeline-location{
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
.timeline-event-discription{
|
|
|
|
|
font-family: Roboto;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
.timeline-pr-box-Pessoal{
|
2021-02-03 17:13:32 +01:00
|
|
|
border-left: 5px solid #958bfc !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
|
2021-01-26 10:53:12 +01:00
|
|
|
height: 100%;
|
2021-01-25 16:18:36 +01:00
|
|
|
}
|
2021-02-01 15:27:12 +01:00
|
|
|
.timeline-pr-box-Oficial{
|
2021-02-03 17:13:32 +01:00
|
|
|
border-left: 5px solid #99e47b !important;
|
2021-01-26 10:53:12 +01:00
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
|
|
|
|
|
.timeline-mdgpr-box-Oficial{
|
2021-02-08 12:27:45 +01:00
|
|
|
border-left: 5px solid #ffb703 !important;
|
2021-02-03 17:13:32 +01:00
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
}
|
|
|
|
|
.timeline-mdgpr-box-Pessoal{
|
2021-02-08 12:27:45 +01:00
|
|
|
border-left: 5px solid #f05d5e !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-01-27 13:57:55 +01:00
|
|
|
.table-bordered, .table-bordered{
|
|
|
|
|
border: none !important;
|
|
|
|
|
td, th {
|
|
|
|
|
border: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.cal-tooltip, .cal-tooltip-top{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-04 19:16:49 +01:00
|
|
|
/* .timeline-box-{} */
|
2021-01-29 13:50:38 +01:00
|
|
|
|
|
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
.calendar-event-border{
|
2021-01-29 15:24:50 +01:00
|
|
|
border-radius: 21px !important;
|
|
|
|
|
color: black !important;
|
|
|
|
|
margin: 0px auto !important;
|
|
|
|
|
width: 35px !important;
|
2021-01-29 13:50:38 +01:00
|
|
|
}
|
2021-02-01 15:27:12 +01:00
|
|
|
.calendar-mdgpr-event-type-Oficial{
|
2021-02-03 17:13:32 +01:00
|
|
|
border-left: 3px solid #ffb703 !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
}
|
|
|
|
|
.calendar-mdgpr-event-type-Pessoal{
|
2021-02-03 17:13:32 +01:00
|
|
|
border-right: 3px solid #f05d5e !important;
|
2021-01-29 13:50:38 +01:00
|
|
|
}
|
2021-02-01 15:27:12 +01:00
|
|
|
.calendar-mdgpr-event-type-both{
|
2021-01-29 15:24:50 +01:00
|
|
|
border-left: 3px solid #ffb703 !important;
|
|
|
|
|
border-right: 3px solid #f05d5e !important;
|
2021-02-01 15:27:12 +01:00
|
|
|
}
|
|
|
|
|
.calendar-pr-event-type-both{
|
|
|
|
|
border-left: 3px solid #99e47b !important;
|
|
|
|
|
border-right: 3px solid #958bfc !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-pr-event-type-Oficial{
|
|
|
|
|
border-left: 3px solid #99e47b !important;
|
|
|
|
|
}
|
2021-02-03 17:13:32 +01:00
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
.calendar-pr-event-type-Pessoal{
|
|
|
|
|
border-left: 3px solid #958bfc !important;
|
2021-01-29 13:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-hour-segment {
|
|
|
|
|
border-bottom: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-01 15:27:12 +01:00
|
|
|
|
|
|
|
|
.calendar-profile{
|
|
|
|
|
font-size: 36px
|
2021-01-29 15:24:50 +01:00
|
|
|
}
|
2021-02-02 15:11:30 +01:00
|
|
|
|
2021-01-29 15:24:50 +01:00
|
|
|
|
2021-01-22 16:00:37 +01:00
|
|
|
/* angular-cli file: src/styles.css */
|
2021-01-27 13:57:55 +01:00
|
|
|
@import "../node_modules/angular-calendar/css/angular-calendar.css";
|
2021-01-28 16:18:10 +01:00
|
|
|
@import "./style/main.scss";
|
2021-02-02 15:11:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// disable calendar build in header
|
|
|
|
|
.calendar-component{
|
|
|
|
|
thead{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-02-03 17:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.calendar-top0{
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-top15{
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-top30{
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-top45{
|
|
|
|
|
margin-top: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.cal-event{
|
|
|
|
|
overflow: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* .cal-week-view mwl-calendar-week-view-hour-segment, .cal-week-view .cal-hour-segment {
|
|
|
|
|
display: block;
|
|
|
|
|
height: 60px !important;
|
2021-02-10 14:06:38 +01:00
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
.calendar-container{
|
|
|
|
|
height: 333px;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
transition: 0.5s;
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
.monthview-container{
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
height: unset !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-12 11:08:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.modal-desktop{
|
|
|
|
|
.modal-wrapper{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-18 12:44:35 +01:00
|
|
|
|
2021-03-03 16:24:16 +01:00
|
|
|
.modal-width-100{
|
|
|
|
|
.modal-wrapper{
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 12:44:35 +01:00
|
|
|
|
|
|
|
|
.profile-modal{
|
|
|
|
|
.modal-wrapper{
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -40px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-11 10:31:46 +01:00
|
|
|
.search-desktop-modal{
|
|
|
|
|
.modal-wrapper{
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 12:44:35 +01:00
|
|
|
|
|
|
|
|
.footer-container{
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
}
|
2021-03-04 15:14:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.gabinete-digital-mobile-modal-to-Desktop{
|
2021-03-04 15:28:49 +01:00
|
|
|
top: 75px;
|
2021-03-04 15:14:09 +01:00
|
|
|
left: 340px;
|
2021-03-04 16:40:06 +01:00
|
|
|
transform: none !important;
|
2021-03-04 15:14:09 +01:00
|
|
|
ion-backdrop{
|
2021-03-04 16:40:06 +01:00
|
|
|
display: none;
|
|
|
|
|
transform: none !important;
|
2021-03-04 15:14:09 +01:00
|
|
|
}
|
|
|
|
|
.modal-wrapper{
|
2021-03-04 16:40:06 +01:00
|
|
|
transform: none !important;
|
2021-03-04 15:14:09 +01:00
|
|
|
width: 100%;
|
2021-03-04 15:28:06 +01:00
|
|
|
height: 100%;
|
2021-03-04 15:14:09 +01:00
|
|
|
box-shadow: none !important;
|
2021-03-04 16:40:06 +01:00
|
|
|
.ion-page {
|
|
|
|
|
transform: none !important;
|
|
|
|
|
}
|
2021-03-04 15:14:09 +01:00
|
|
|
}
|
|
|
|
|
}
|
2021-03-04 18:50:26 +01:00
|
|
|
|
|
|
|
|
.chat-mobile-modal-to-Desktop{
|
|
|
|
|
top: 75px;
|
2021-03-05 11:58:59 +01:00
|
|
|
left: 31%;
|
2021-03-04 19:16:49 +01:00
|
|
|
transform: none !important;
|
2021-03-04 18:50:26 +01:00
|
|
|
ion-backdrop{
|
2021-03-04 19:16:49 +01:00
|
|
|
display: none;
|
|
|
|
|
transform: none !important;
|
2021-03-04 18:50:26 +01:00
|
|
|
}
|
|
|
|
|
.modal-wrapper{
|
2021-03-04 19:16:49 +01:00
|
|
|
transform: none !important;
|
2021-03-04 18:50:26 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
box-shadow: none !important;
|
2021-03-04 16:40:06 +01:00
|
|
|
.ion-page {
|
|
|
|
|
transform: none !important;
|
|
|
|
|
}
|
2021-03-04 15:14:09 +01:00
|
|
|
}
|
|
|
|
|
}
|
2021-03-04 16:40:06 +01:00
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
|
.gabinete-digital-mobile-modal-to-Desktop{
|
|
|
|
|
top: 75px;
|
2021-03-12 11:37:26 +01:00
|
|
|
left: 40%;
|
2021-03-04 16:40:06 +01:00
|
|
|
|
|
|
|
|
.modal-wrapper{
|
|
|
|
|
transform: none !important;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
.ion-page {
|
|
|
|
|
transform: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-11 10:31:46 +01:00
|
|
|
|
|
|
|
|
.search-modal{
|
|
|
|
|
ion-backdrop{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.search-submodal{
|
|
|
|
|
background-color: rgb(0 0 0 / 55%);
|
|
|
|
|
}
|
2021-03-04 16:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-05 14:54:10 +01:00
|
|
|
|
2021-03-05 16:04:15 +01:00
|
|
|
@media only screen and (min-width: 1024px) {
|
|
|
|
|
.search-modal-to-desktop{
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
top: 75px;
|
|
|
|
|
.modal-wrapper{
|
2021-03-05 14:54:10 +01:00
|
|
|
transform: none !important;
|
2021-03-05 16:04:15 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
.ion-page {
|
|
|
|
|
transform: none !important;
|
|
|
|
|
}
|
2021-03-05 14:54:10 +01:00
|
|
|
}
|
2021-03-05 16:04:15 +01:00
|
|
|
}
|
2021-03-11 12:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gabinete-digital-mobile-modal-to-Desktop{
|
|
|
|
|
border-top-right-radius: 27px;
|
2021-03-15 10:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Breakpoints */
|
|
|
|
|
._xs{
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
._sm{
|
|
|
|
|
width: 540px;
|
|
|
|
|
}
|
|
|
|
|
._md{
|
|
|
|
|
width: 720px;
|
|
|
|
|
}
|
|
|
|
|
._lg{
|
|
|
|
|
width: 960px;
|
|
|
|
|
}
|
|
|
|
|
._xl{
|
|
|
|
|
width: 1140px;
|
2021-03-17 20:45:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// timeline
|
|
|
|
|
.timeline-md{
|
|
|
|
|
.cal-time{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.cal-current-time-marker::before {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-box{
|
2021-03-17 21:17:36 +01:00
|
|
|
left: -17%;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 115%;
|
2021-03-17 20:45:57 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-mobile{
|
|
|
|
|
.timeline-box {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: -4%;
|
|
|
|
|
width: 102%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline{
|
|
|
|
|
div.cal-event:focus{
|
|
|
|
|
outline: none !important;
|
|
|
|
|
}
|
2021-03-05 14:54:10 +01:00
|
|
|
}
|