Files
doneit-web/src/app/pages/agenda/agenda.page.scss
T

1025 lines
17 KiB
SCSS
Raw Normal View History

2023-10-20 17:05:39 +01:00
@import "~src/function.scss";
2021-02-02 12:33:51 +01:00
.event-indicator {
background: #333;
width: 5px;
height: 5px;
border-radius: 5px;
display: table-cell;
}
2021-07-15 16:57:19 +01:00
:host ::ng-deep {
.monthview-primary-with-event {
2021-02-02 12:28:37 +01:00
/* background-color: white !important; */
}
2021-07-15 16:57:19 +01:00
2023-10-20 17:05:39 +01:00
.monthview-current {
2021-02-02 12:28:37 +01:00
/* background-color: red; */
2021-10-27 17:08:13 +01:00
border-bottom: 1px solid rgb(158, 250, 135) !important;
2021-01-22 16:00:37 +01:00
}
.monthview-selected {
2021-02-02 12:28:37 +01:00
/* background-color: lightskyblue !important; */
}
2023-10-20 17:05:39 +01:00
.item {
/* background: red !important; */
text-transform: capitalize;
}
2023-10-20 17:05:39 +01:00
.input-wrapper {
2020-09-01 11:06:23 +01:00
border-left: red !important;
/* background: red; */
margin-left: 1px solid red;
}
}
2021-07-15 16:57:19 +01:00
2023-10-20 17:05:39 +01:00
.main-header {
2021-01-29 11:28:26 +01:00
width: 100%; /* 400px */
height: 100%;
font-family: Roboto;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
background-color: #fff;
2023-10-20 17:05:39 +01:00
overflow: hidden;
2021-01-29 11:28:26 +01:00
padding: 15px 5px 0px 5px;
2023-10-20 17:05:39 +01:00
color: #000;
2021-01-29 11:28:26 +01:00
transform: translate3d(0, 1px, 0);
2021-07-15 16:57:19 +01:00
2023-10-20 17:05:39 +01:00
.title-content {
2021-01-29 11:28:26 +01:00
width: 360px;
margin: 0px auto;
padding: 0 !important;
background: #ecf8ff;
}
2021-06-11 11:07:10 +01:00
.div-title {
2023-10-20 17:05:39 +01:00
padding: 0 !important;
2021-01-29 11:28:26 +01:00
float: left;
}
2021-06-11 11:07:10 +01:00
.title {
2023-07-06 12:18:15 +01:00
font-size: rem(25);
2021-01-29 11:28:26 +01:00
}
2023-10-20 17:05:39 +01:00
.div-icon {
2023-07-07 12:03:03 +01:00
width: rem(40);
2021-01-29 11:28:26 +01:00
float: right;
2023-07-06 12:18:15 +01:00
font-size: rem(35);
2021-01-29 11:28:26 +01:00
overflow: auto;
padding: 1px;
}
2023-10-20 17:05:39 +01:00
.div-icon ion-icon {
2021-01-29 11:28:26 +01:00
float: right;
padding-left: 20px;
}
}
/* TOGGLE button */
2020-08-28 13:42:08 +01:00
.switch {
position: relative;
display: inline-block;
width: 90px;
height: 34px;
float: right;
2020-08-31 10:59:21 +01:00
right: -4px !important;
2023-10-20 17:05:39 +01:00
margin: 20px 20px 0 0;
2020-08-28 13:42:08 +01:00
}
2023-10-20 17:05:39 +01:00
.switch input {
display: none;
}
2020-08-28 13:42:08 +01:00
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ffffff;
border: 1px solid #e16817;
color: #e16817;
2023-10-20 17:05:39 +01:00
-webkit-transition: 0.4s;
transition: 0.4s;
2020-08-28 13:42:08 +01:00
}
.slider:before {
position: absolute;
content: "";
height: 23.5px; /* 26px; */
width: 24px;
2020-08-28 13:42:08 +01:00
left: 4px;
bottom: 4px;
background-color: #ffffff;
2023-10-20 17:05:39 +01:00
-webkit-transition: 0.4s;
transition: 0.4s;
2020-08-28 13:42:08 +01:00
}
input:checked + .slider {
background-color: #e16817;
}
input:focus + .slider {
2023-10-20 17:05:39 +01:00
box-shadow: 0 0 1px #2196f3;
2020-08-28 13:42:08 +01:00
}
input:checked + .slider:before {
-webkit-transform: translateX(55px);
-ms-transform: translateX(55px);
transform: translateX(55px);
}
/*------ ADDED CSS ---------*/
2023-10-20 17:05:39 +01:00
.pr {
2020-08-28 13:42:08 +01:00
display: none;
text-align: left !important;
2021-07-15 16:57:19 +01:00
left: 25px !important;
color: white;
2020-08-28 13:42:08 +01:00
}
2023-10-20 17:05:39 +01:00
.mdgpr {
left: 58px !important;
color: #e16817;
2020-08-28 13:42:08 +01:00
}
2023-10-20 17:05:39 +01:00
.pr,
.mdgpr {
2020-08-28 13:42:08 +01:00
position: absolute;
2023-10-20 17:05:39 +01:00
transform: translate(-50%, -50%);
2020-08-28 13:42:08 +01:00
top: 50%;
left: 50%;
2023-07-06 12:18:15 +01:00
font-size: rem(12);
2020-08-28 13:42:08 +01:00
font-family: Verdana, sans-serif;
}
2023-10-20 17:05:39 +01:00
input:checked + .slider .pr {
display: block;
background: #e16817;
2020-08-28 13:42:08 +01:00
}
2023-10-20 17:05:39 +01:00
input:checked + .slider .mdgpr {
display: none;
2020-08-28 13:42:08 +01:00
}
/*--------- END --------*/
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
border: 1px solid #e16817;
}
2020-09-10 09:48:37 +01:00
/*
Calendar
*/
/* NEW CSS FOR TOGGLE BUTTON */
2023-10-20 17:05:39 +01:00
.toggleBox {
margin: 20px 12px 7px 0;
}
2023-10-20 17:05:39 +01:00
input[type="checkbox"] {
position: relative;
width: 96px;
height: 34px;
background: #ffffff;
-webkit-appearance: none;
border-radius: 20px;
outline: none;
2023-10-20 17:05:39 +01:00
transition: 0.4s;
/* box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
cursor: pointer;
2023-10-20 17:05:39 +01:00
border: 1px solid #e16817;
}
2023-10-20 17:05:39 +01:00
input:checked[type="checkbox"] {
background: #e16817;
}
2023-10-20 17:05:39 +01:00
input[type="checkbox"]::before {
z-index: 2;
position: absolute;
content: "";
left: 0;
2023-07-07 12:03:03 +01:00
width: rem(30);
height: 30px;
background: #fff;
border-radius: 50%;
/* transform: scale(1.1); */
2023-10-20 17:05:39 +01:00
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
border: 1px solid #e16817;
}
2023-10-20 17:05:39 +01:00
input:checked[type="checkbox"]::before {
left: 65px;
}
2023-10-20 17:05:39 +01:00
.toggle {
position: relative;
2021-01-29 11:28:26 +01:00
display: block;
2023-10-20 17:05:39 +01:00
font-family: "Montserrat", sans-serif;
2021-01-29 11:28:26 +01:00
/* display: grid; */
text-align: center;
}
2023-10-20 17:05:39 +01:00
label {
position: absolute;
color: #fff;
font-weight: 600;
2023-07-06 12:18:15 +01:00
font-size: rem(12);
pointer-events: none;
}
2023-10-20 17:05:39 +01:00
.onbtn {
top: 10px;
bottom: 15px;
left: 15px;
/* padding-top: 10px;
border: 1px solid red; */
}
2023-10-20 17:05:39 +01:00
.ofbtn {
top: 10px;
bottom: 15px;
right: 14px;
2023-10-20 17:05:39 +01:00
color: #e16817;
}
2021-02-02 15:11:30 +01:00
td.monthview-primary-with-event {
2023-08-24 22:19:40 +01:00
background-color: white !important;
2021-02-02 15:11:30 +01:00
}
2023-10-20 17:05:39 +01:00
.header-title {
2020-11-26 16:33:48 +01:00
font-family: Roboto;
2023-07-06 12:18:15 +01:00
font-size: rem(25);
2020-11-26 16:33:48 +01:00
margin: 0 5px 0 25px;
padding: 0;
2020-12-15 19:37:42 +01:00
/* color:#ffffff; */
2023-10-20 17:05:39 +01:00
color: #000;
2020-11-27 11:59:32 +01:00
}
2023-10-20 17:05:39 +01:00
.div-top-header {
2020-11-27 11:59:32 +01:00
width: 400px;
2020-12-15 19:37:42 +01:00
margin: 0 auto;
2021-10-27 17:08:13 +01:00
background-color: #07c941;
2020-12-15 19:37:42 +01:00
padding-top: 15px;
2023-10-20 17:05:39 +01:00
border: 0 !important;
2020-12-15 19:37:42 +01:00
2023-10-20 17:05:39 +01:00
.div-search {
2023-07-06 12:18:15 +01:00
font-size: rem(45);
2020-12-15 19:37:42 +01:00
float: left;
2023-10-20 17:05:39 +01:00
margin: 0 0 0 10px;
2020-12-15 19:37:42 +01:00
}
2023-10-20 17:05:39 +01:00
.div-logo {
2020-12-15 19:37:42 +01:00
background: transparent;
width: 140px;
margin: 5px 0 0px 71px;
float: left;
}
2023-10-20 17:05:39 +01:00
.div-logo img {
2020-12-15 19:37:42 +01:00
width: 100%;
}
2023-10-20 17:05:39 +01:00
.div-profile {
2023-07-06 12:18:15 +01:00
font-size: rem(45);
2020-12-15 19:37:42 +01:00
float: right;
margin-right: 10px;
}
2020-11-27 11:59:32 +01:00
}
2023-10-20 17:05:39 +01:00
.main-content {
2020-12-15 19:37:42 +01:00
width: 100%; /* 400px */
height: 100%;
font-family: Roboto;
margin: 0 auto;
background-color: #fff;
2023-10-20 17:05:39 +01:00
overflow: auto;
2020-12-15 19:37:42 +01:00
/* padding: 25px 20px 0 20px; */
color: #000 !important;
2020-11-26 16:33:48 +01:00
}
2021-01-22 16:00:37 +01:00
.segment {
2021-11-29 15:48:35 +01:00
}
2023-10-20 17:05:39 +01:00
div ion-raw > ul > li {
2023-07-06 12:18:15 +01:00
font-size: rem(15);
2023-10-20 17:05:39 +01:00
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
2021-01-25 16:18:36 +01:00
}
/* Timeline */
.cal-hour-segment {
border-bottom: none !important;
}
.cal-current-time-marker {
background-color: #42b9fe !important;
}
2023-10-20 17:05:39 +01:00
.calendar-tool-tip {
ion-icon {
2023-07-06 12:18:15 +01:00
font-size: rem(30);
2021-01-27 13:57:55 +01:00
}
2023-10-20 17:05:39 +01:00
.arrow-down {
2023-07-06 12:18:15 +01:00
font-size: rem(28);
2021-01-27 13:57:55 +01:00
}
}
2023-10-20 17:05:39 +01:00
.drop-down {
.drop-down-container {
2021-01-28 16:18:10 +01:00
display: none;
border-top: 2px solid #42b9fe;
position: absolute;
background: white;
z-index: 100000;
box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.3);
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
margin-left: -122px;
padding: 4px 15px;
2023-10-20 17:05:39 +01:00
ul {
2021-01-28 16:18:10 +01:00
margin: 0px;
padding: 0px;
2023-10-20 17:05:39 +01:00
li {
2021-01-28 16:18:10 +01:00
list-style: none;
2023-07-07 12:03:03 +01:00
height: rem(35);
2021-01-28 16:18:10 +01:00
display: flex;
align-items: center;
}
}
}
}
2023-10-20 17:05:39 +01:00
.capitaliseText {
2023-03-31 13:51:17 +01:00
min-width: 135px;
2021-01-28 16:18:10 +01:00
text-align: center;
2021-02-01 12:05:17 +01:00
font-weight: normal;
padding: 0px;
margin: 0px;
2021-09-21 10:04:42 +01:00
justify-content: space-around;
2023-04-05 15:15:42 +01:00
text-transform: capitalize;
2021-01-28 16:18:10 +01:00
}
2023-10-20 17:05:39 +01:00
.arrow {
2021-02-01 12:05:17 +01:00
padding: 0px 0px;
2021-01-28 16:18:10 +01:00
}
2023-10-20 17:05:39 +01:00
.right-icons,
.calendar-profile {
padding: 0px 9px;
2021-01-28 16:18:10 +01:00
}
2023-10-20 17:05:39 +01:00
.capitaliseText {
2023-07-06 12:18:15 +01:00
font-size: rem(20);
2021-02-01 12:05:17 +01:00
}
2023-10-20 17:05:39 +01:00
.calendar-tool-tip {
2023-08-15 17:32:57 +01:00
padding: 37px 10px 20px 10px;
2021-07-02 10:41:52 +01:00
//border: 1px solid orange;
2021-02-02 15:11:30 +01:00
}
2021-06-16 16:15:34 +01:00
.custom-calendar-header {
2021-02-02 15:11:30 +01:00
width: 100%;
margin-bottom: 10px;
2021-06-16 16:15:34 +01:00
thead {
display: flex;
justify-content: space-around;
th {
2021-02-02 15:11:30 +01:00
font-family: Roboto;
2023-07-06 12:18:15 +01:00
font-size: rem(15);
2021-02-02 15:11:30 +01:00
color: rgba(52, 72, 94, 0.54);
font-weight: normal;
}
}
}
2023-10-20 17:05:39 +01:00
.currente-date-timelien {
2021-10-27 15:41:04 +01:00
cursor: pointer;
2021-02-03 17:13:32 +01:00
padding: 10px 20px;
2023-10-20 17:05:39 +01:00
.collaps {
2023-07-06 12:18:15 +01:00
font-size: rem(20);
2021-02-09 16:49:15 +01:00
padding-right: 8px;
}
2023-10-20 17:05:39 +01:00
.filter {
2023-07-06 12:18:15 +01:00
font-size: rem(15);
2021-02-03 17:13:32 +01:00
font-weight: normal;
2023-10-20 17:05:39 +01:00
ion-icon {
2023-07-06 12:18:15 +01:00
font-size: rem(35);
2021-10-24 19:17:28 +01:00
color: var(--title-text-color);
2021-02-03 17:13:32 +01:00
}
2023-10-20 17:05:39 +01:00
.filter-name {
2021-10-24 19:17:28 +01:00
color: var(--title-text-color);
2021-02-03 17:13:32 +01:00
font-family: Roboto;
2023-07-06 12:18:15 +01:00
font-size: rem(15);
2021-02-03 17:13:32 +01:00
margin-right: 25px;
2021-06-14 12:07:07 +01:00
width: 55px;
2021-02-03 17:13:32 +01:00
}
2023-10-20 17:05:39 +01:00
ul {
2021-02-03 17:13:32 +01:00
background-color: white !important;
position: absolute;
padding: 0px;
margin: 0px;
list-style: none;
margin-top: 140px;
2021-02-03 17:20:42 +01:00
padding: 0px;
2021-02-03 17:13:32 +01:00
box-shadow: 0px 0px 10px gray !important;
border-radius: 5px;
2021-02-03 17:20:42 +01:00
width: 96px;
2021-02-03 17:13:32 +01:00
z-index: 1000000;
2023-10-20 17:05:39 +01:00
li {
2021-02-03 17:20:42 +01:00
padding: 5px 10px;
2023-07-06 12:18:15 +01:00
font-size: rem(15);
2021-02-03 17:13:32 +01:00
font-weight: normal;
}
2023-10-20 17:05:39 +01:00
li.active {
2021-10-27 15:49:45 +01:00
background-color: var(--mat-selected) !important;
2021-10-27 15:41:04 +01:00
color: white;
2021-02-03 17:20:42 +01:00
}
2023-10-20 17:05:39 +01:00
li:hover:not(.active) {
2021-10-27 15:45:08 +01:00
background-color: var(--mat-selected-hover);
2021-02-03 17:20:42 +01:00
}
2021-02-03 17:13:32 +01:00
}
}
}
2023-10-20 17:05:39 +01:00
.timeline-date {
2023-07-06 12:18:15 +01:00
font-size: rem(13);
2023-03-30 14:31:58 +01:00
font-weight: 500;
color: gray;
}
2021-02-09 16:49:15 +01:00
2023-10-20 17:05:39 +01:00
.showcalendar {
2021-02-09 16:49:15 +01:00
display: none;
2021-02-10 14:06:38 +01:00
}
2023-10-20 17:05:39 +01:00
.timeline-header {
2021-02-10 14:06:38 +01:00
z-index: 1000000;
width: 100%;
background-color: white;
}
2023-10-20 17:05:39 +01:00
.timeline-container {
2021-06-08 11:24:01 +01:00
.day {
2023-03-30 14:31:58 +01:00
font-weight: 500;
color: gray !important;
2023-07-06 12:18:15 +01:00
font-size: rem(13);
2021-06-08 11:24:01 +01:00
}
2023-10-20 17:05:39 +01:00
.EventListBoxBorder {
2021-06-24 11:07:53 +01:00
padding-bottom: 5px;
border-bottom: 1px solid #d8d8d8;
}
2021-06-08 11:24:01 +01:00
2023-10-20 17:05:39 +01:00
.content-pr-Oficial,
.content-pr-Pessoal,
.content-mdgpr-Pessoal,
.content-mdgpr-Oficial {
2021-06-08 11:24:01 +01:00
width: 100% !important;
padding: 0px 10px !important;
}
2023-10-20 17:05:39 +01:00
.schedule-time {
2021-06-08 11:24:01 +01:00
margin-right: 10px;
min-width: 33px;
2023-10-20 17:05:39 +01:00
.time-start {
2022-12-16 18:16:19 +01:00
color: #797979 !important;
2021-06-08 11:24:01 +01:00
font-family: Roboto;
2023-07-06 12:18:15 +01:00
font-size: rem(13);
2021-06-08 11:24:01 +01:00
}
2023-10-20 17:05:39 +01:00
.time-end {
2022-12-16 18:16:19 +01:00
color: #797979 !important;
2021-06-08 11:24:01 +01:00
font-family: Roboto;
2023-07-06 12:18:15 +01:00
font-size: rem(13);
2021-06-08 11:24:01 +01:00
}
}
2023-10-20 17:05:39 +01:00
.schedule-date {
2021-06-08 11:24:01 +01:00
margin-right: 10px;
width: 22%;
color: #797979 !important;
2023-07-06 12:18:15 +01:00
font-size: rem(13);
2021-06-08 11:24:01 +01:00
}
2023-10-20 17:05:39 +01:00
.schedule-details {
2021-06-08 11:24:01 +01:00
display: flex;
flex-wrap: wrap;
align-items: center;
width: 100%;
2021-06-11 13:54:18 +01:00
overflow: auto;
2023-01-24 15:56:47 +01:00
.location {
2021-06-11 13:54:18 +01:00
width: 100%;
2021-06-08 11:24:01 +01:00
font-family: Roboto;
color: black;
2023-07-06 12:18:15 +01:00
font-size: rem(14);
2023-01-24 15:56:47 +01:00
}
2021-07-15 16:57:19 +01:00
2023-01-24 15:56:47 +01:00
.calendar-owner {
2023-07-06 12:18:15 +01:00
font-size: rem(14);
2021-06-08 11:24:01 +01:00
}
2023-10-20 17:05:39 +01:00
.description {
2021-06-08 11:24:01 +01:00
font-family: Roboto;
font-weight: bold;
2021-10-24 19:17:28 +01:00
color: var(--title-text-color);
2023-10-20 17:05:39 +01:00
max-width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2021-06-08 11:24:01 +01:00
}
2021-06-24 11:07:53 +01:00
2022-05-04 15:30:27 +01:00
.description p {
2021-06-24 11:07:53 +01:00
white-space: nowrap;
overflow: hidden !important;
text-overflow: ellipsis !important;
2023-07-06 12:18:15 +01:00
font-size: rem(17);
2023-10-20 17:05:39 +01:00
max-width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2021-06-24 11:07:53 +01:00
}
2021-06-08 11:24:01 +01:00
}
2023-10-20 17:05:39 +01:00
.color {
2021-06-08 11:24:01 +01:00
width: 5px;
2023-07-07 12:03:03 +01:00
height: rem(40);
2021-06-08 11:24:01 +01:00
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background-color: #f05d5e;
}
2023-10-20 17:05:39 +01:00
.div-content-Oficial {
2021-06-08 11:24:01 +01:00
width: 85%;
float: left;
border-left: 4px solid #cab0dc;
padding: 0 0 0 12px;
}
2023-10-20 17:05:39 +01:00
.div-content-Pessoal {
2021-06-08 11:24:01 +01:00
width: 85%;
float: left;
border-left: 4px solid #cbeecb;
padding: 0 0 0 12px;
}
2023-10-20 17:05:39 +01:00
.div-content-Oficial h3,
.div-content-Pessoal h3 {
2023-07-06 12:18:15 +01:00
font-size: rem(19);
2021-06-08 11:24:01 +01:00
/* border: 1px solid red; */
}
2023-10-20 17:05:39 +01:00
.div-content-Oficial p,
.div-content-Pessoal p {
2023-07-07 12:03:03 +01:00
font-size: rem(16);
2021-06-08 11:24:01 +01:00
color: rgb(94, 92, 92);
padding: 0 !important;
margin: 0 !important;
}
2021-02-10 14:06:38 +01:00
}
2022-10-06 11:12:03 +01:00
.myCalendar {
.content--Oficial {
border-radius: 5px;
border-right: 5px solid #ffb703;
overflow: auto;
}
.content--Pessoal {
border-radius: 5px;
border-right: 5px solid #f05d5e;
overflow: auto;
}
}
.sharedCalendar {
2023-10-20 17:05:39 +01:00
.content-Oficial {
2022-10-06 11:12:03 +01:00
width: 85%;
float: left;
border-left: 4px solid #cab0dc;
padding: 0 0 0 12px;
}
2023-10-20 17:05:39 +01:00
.content-Pessoal {
2022-10-06 11:12:03 +01:00
width: 85%;
float: left;
border-left: 4px solid #cbeecb;
padding: 0 0 0 12px;
}
}
2023-10-20 17:05:39 +01:00
.calendar-border {
2021-02-10 14:06:38 +01:00
background: #ebebeb;
margin: 13px 20px;
height: 2px;
2021-02-11 12:26:43 +01:00
}
2023-10-20 17:05:39 +01:00
.calendar-progress-bar {
2021-02-11 12:26:43 +01:00
position: absolute;
2021-02-24 09:14:58 +01:00
width: 100%;
2021-02-11 12:26:43 +01:00
margin-left: 10px;
2021-02-24 09:14:58 +01:00
}
2023-10-20 17:05:39 +01:00
.agenda-container {
2021-02-24 09:14:58 +01:00
overflow: hidden;
}
2023-10-20 17:05:39 +01:00
.container-wrapper {
2021-02-24 09:14:58 +01:00
height: 100%;
2021-07-02 11:08:15 +01:00
overflow: hidden;
2021-07-02 10:41:52 +01:00
2023-10-20 17:05:39 +01:00
.calendar-timeline {
border-top-right-radius: 0px;
2021-02-24 09:14:58 +01:00
width: calc(100%);
2021-07-02 11:08:15 +01:00
overflow: hidden;
2021-02-24 09:14:58 +01:00
2023-10-20 17:05:39 +01:00
.calendar-wrapper {
2021-02-24 09:14:58 +01:00
width: 100%;
}
2023-10-20 17:05:39 +01:00
.timeline-wrapper {
2021-02-24 09:14:58 +01:00
width: 100%;
2021-06-10 14:00:44 +01:00
overflow: auto;
2021-07-15 16:57:19 +01:00
// overflow-x: hidden;
2021-02-24 09:14:58 +01:00
}
}
}
2023-10-20 17:05:39 +01:00
.event-details {
2021-02-24 09:14:58 +01:00
display: none;
}
@media only screen and (min-width: 1024px) {
2023-10-20 17:05:39 +01:00
.container-wrapper {
2021-02-24 09:14:58 +01:00
height: 100%;
2021-07-15 16:57:19 +01:00
2023-10-20 17:05:39 +01:00
.calendar-timeline {
2021-02-24 09:14:58 +01:00
border-top-right-radius: 0px;
border-top-left-radius: 25px;
2021-02-24 09:14:58 +01:00
width: calc(100% - 40%);
2021-03-03 16:24:16 +01:00
border-right: 1px solid #d8d8d8;
2021-03-17 20:45:57 +01:00
display: flex;
flex-direction: column;
height: 100%;
flex-wrap: unset;
2021-02-24 09:14:58 +01:00
}
}
2023-10-20 17:05:39 +01:00
.event-details {
2021-02-24 09:14:58 +01:00
display: block;
}
2021-02-24 10:08:50 +01:00
}
2023-10-20 17:05:39 +01:00
app-view-event {
2021-02-24 10:08:50 +01:00
height: 100%;
display: flex;
flex-wrap: wrap-reverse;
flex-direction: column;
2021-02-26 15:29:05 +01:00
z-index: 1000;
2021-02-24 10:08:50 +01:00
}
2023-10-20 17:05:39 +01:00
app-edit-event {
2021-02-24 10:08:50 +01:00
display: flex;
2021-02-24 11:10:51 +01:00
flex-direction: column;
height: 100%;
2021-02-26 15:29:05 +01:00
z-index: 1000;
2021-02-24 10:08:50 +01:00
}
2023-10-20 17:05:39 +01:00
app-new-event {
2021-02-24 10:08:50 +01:00
height: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
2021-02-26 15:29:05 +01:00
z-index: 1000;
2021-02-24 11:10:51 +01:00
}
2023-10-20 17:05:39 +01:00
app-event-list {
2021-02-24 11:10:51 +01:00
flex-direction: column;
height: 100%;
flex-wrap: wrap-reverse;
2021-02-26 15:29:05 +01:00
z-index: 1000;
}
2023-10-20 17:05:39 +01:00
app-approve-event {
2021-02-26 15:29:05 +01:00
display: flex;
flex-direction: column;
height: 100%;
2021-03-03 10:15:44 +01:00
2021-02-26 15:29:05 +01:00
z-index: 1000;
}
2023-10-20 17:05:39 +01:00
.transparent {
2021-02-26 15:29:05 +01:00
position: absolute;
z-index: 0;
opacity: 0;
2021-02-24 11:10:51 +01:00
}
2023-10-20 17:05:39 +01:00
.nothing-to-show {
2021-02-24 11:10:51 +01:00
justify-content: center;
display: flex;
align-items: center;
height: 100%;
2021-06-11 11:07:10 +01:00
}
.fs-timeline {
2021-06-16 15:58:44 +01:00
border-right: 1px solid #909090;
2021-06-11 11:07:10 +01:00
}
2021-06-11 13:51:18 +01:00
2023-03-30 15:22:40 +01:00
// .filter-Pessoal {
// .content-pr-Oficial, .content-mdgpr-Oficial, .content-md-Pessoal {
// display: none !important;
// }
// }
// .filter-Oficial {
// .content-pr-Pessoal, .content-mdgpr-Pessoal, .content-md-Pessoal {
// display: none !important;
// }
// }
2021-06-16 16:29:17 +01:00
2021-09-21 10:04:42 +01:00
.dropdown-scroll-weel {
display: flex;
position: absolute;
margin-left: 26px;
background: white;
height: 200px;
z-index: 100;
width: 179px;
box-shadow: 0px 7px 10px #8c8c8c;
border-radius: 11px;
padding-bottom: 6px;
margin-top: 232px;
border-top: 2px solid #42b9fe;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
2023-10-20 17:05:39 +01:00
li,
ul {
2021-09-21 10:04:42 +01:00
list-style: none;
padding: 5px 0px;
margin: 0px;
text-align: center;
2023-10-20 17:05:39 +01:00
span {
2021-09-21 10:04:42 +01:00
padding: 0px 5px;
}
}
2021-09-21 10:04:42 +01:00
li.active {
2021-10-27 15:41:04 +01:00
background-color: var(--mat-selected) !important;
2021-09-21 10:04:42 +01:00
color: white;
}
2023-10-20 17:05:39 +01:00
li:hover {
2021-09-21 10:04:42 +01:00
cursor: pointer;
2023-10-20 17:05:39 +01:00
background-color: var(--mat-selected-hover);
2021-09-21 10:04:42 +01:00
}
}
2023-10-20 17:05:39 +01:00
.dropdown-scroll-weel-background {
2021-09-21 10:04:42 +01:00
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
z-index: 99;
}
@media only screen and (min-width: 1225px) {
2023-10-20 17:05:39 +01:00
.calendar-timeline {
height: 100%;
background-color: white;
border-top-left-radius: 25px;
}
2023-10-20 17:05:39 +01:00
.event-details {
width: 40%;
background: white;
border-top-right-radius: 0px;
}
}
@media only screen and (min-width: 321px) {
2023-10-20 17:05:39 +01:00
.calendar-timeline {
height: 100%;
background-color: white;
border-top-left-radius: 0px;
}
2023-10-20 17:05:39 +01:00
.event-details {
width: 40%;
background: white;
border-top-right-radius: 25px;
}
2021-11-29 16:50:56 +01:00
}
2021-12-09 18:03:15 +01:00
@media only screen and (max-width: 415px) {
.capitaliseText {
font-size: 18px;
}
2023-10-20 17:05:39 +01:00
.resize {
2021-12-09 18:03:15 +01:00
font-size: 33px !important;
2023-10-20 17:05:39 +01:00
ion-icon {
2021-12-09 18:03:15 +01:00
font-size: 33px !important;
}
}
}
@media only screen and (max-width: 398px) {
.capitaliseText {
font-size: 15px;
}
2023-10-20 17:05:39 +01:00
.resize {
2021-12-09 18:03:15 +01:00
font-size: 27px !important;
2023-10-20 17:05:39 +01:00
ion-icon {
2023-07-07 12:03:03 +01:00
font-size: 27px !important;
2021-12-09 18:03:15 +01:00
}
}
}
@media only screen and (max-width: 364px) {
.capitaliseText {
font-size: 13px;
}
2023-10-20 17:05:39 +01:00
.resize {
2021-12-09 18:03:15 +01:00
font-size: 23px !important;
2023-10-20 17:05:39 +01:00
ion-icon {
2021-12-09 18:03:15 +01:00
font-size: 23px !important;
}
}
}
2023-10-20 17:05:39 +01:00
$font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
2023-07-06 12:18:15 +01:00
$font-size: rem(15);
2021-11-29 16:50:56 +01:00
2023-10-20 17:05:39 +01:00
.changeText {
2021-11-29 16:50:56 +01:00
font-family: $font-family;
font-size: $font-size;
}
2023-10-20 17:05:39 +01:00
.calendar-title-container {
width: 100% !important;
.calendar-title-description {
width: 50% !important;
}
}
2022-04-07 14:24:07 +01:00
.calendar-letters {
width: 36px;
height: 36px;
background-color: #f05d5e;
border-radius: 44px;
text-align: center;
align-items: center;
justify-content: center;
margin-top: -3px;
border: 1.5px solid black;
color: white;
2023-10-20 17:05:39 +01:00
display: none;
2022-04-07 14:24:07 +01:00
}
2022-05-04 15:30:27 +01:00
@media only screen and (max-width: 800px) {
.calendar-letters {
display: flex !important;
}
}
2022-04-07 14:24:07 +01:00
.cal-reverse {
background: white !important;
color: black !important;
border-color: #f05d5e !important;
}
.labelb {
font-weight: 500;
2023-03-30 14:31:58 +01:00
}
2023-10-20 17:05:39 +01:00
.active {
2023-03-30 14:31:58 +01:00
font-weight: bold !important;
}
2023-04-05 15:15:42 +01:00
.ss-timeline > :nth-child(2) .dayShow {
2023-03-30 14:31:58 +01:00
display: none;
2023-04-05 15:15:42 +01:00
}
.ss-timeline > :nth-child(1) .dayShow {
margin-top: 0px !important;
}
.calendar-options {
position: relative;
float: right;
margin-left: -100%;
button {
2023-08-15 17:12:50 +01:00
// top: -35px;
2023-04-05 15:15:42 +01:00
position: relative;
color: transparent;
background-color: transparent;
}
}
.float-button {
display: none;
}
2023-04-10 17:19:04 +01:00
.select-calendar {
mat-form-field {
width: 269px;
}
}
@media only screen and (max-width: 623px) {
2023-04-05 15:15:42 +01:00
.calendar-options {
display: none !important;
}
.first-row {
flex-grow: 1;
.float-button {
display: block !important;
position: absolute;
float: right;
right: 15px;
2023-08-15 17:32:57 +01:00
top: 4px;
2023-04-05 15:15:42 +01:00
background: transparent;
color: transparent;
button {
background: transparent;
2023-10-20 17:05:39 +01:00
color: transparent;
2023-04-05 15:15:42 +01:00
ion-icon {
border-radius: 50px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
-ms-border-radius: 50px;
-o-border-radius: 50px;
box-shadow: 0px 0px 10px rgb(112, 112, 112);
margin: 0px;
padding: 0px;
}
}
}
}
.select-calendar {
flex-grow: 1;
}
2023-04-10 17:19:04 +01:00
.select-calendar {
mat-form-field {
width: 100%;
}
}
2023-04-05 15:15:42 +01:00
}
2023-04-17 16:40:17 +01:00
.no-color {
color: unset !important;
background: unset !important;
ion-icon {
color: unset !important;
}
2023-07-06 12:18:15 +01:00
}
@media only screen and (min-width: 100px) {
2023-10-20 17:05:39 +01:00
.week-5 {
2023-08-11 16:38:23 +01:00
.calendar-title-container {
font-size: 14px;
}
.height-75 {
height: 75px;
}
2023-10-20 17:05:39 +01:00
2023-08-11 16:38:23 +01:00
.height-356 {
height: 324px;
}
2023-07-06 12:18:15 +01:00
}
2023-08-11 16:38:23 +01:00
2023-10-20 17:05:39 +01:00
.week-6 {
2023-08-11 16:38:23 +01:00
.calendar-title-container {
font-size: 14px;
}
.height-75 {
height: 75px;
}
2023-10-20 17:05:39 +01:00
2023-08-11 16:38:23 +01:00
.height-356 {
2023-08-24 22:19:40 +01:00
height: 360px;
2023-08-11 16:38:23 +01:00
}
2023-07-06 12:18:15 +01:00
}
}
@media only screen and (min-width: 500px) {
2023-08-11 16:38:23 +01:00
.week-5 {
.calendar-title-container {
font-size: 16px;
}
.height-75 {
height: 75px;
}
2023-10-20 17:05:39 +01:00
2023-08-11 16:38:23 +01:00
.height-356 {
height: 356px;
}
2023-07-06 12:18:15 +01:00
}
2023-08-11 16:38:23 +01:00
.week-6 {
.calendar-title-container {
font-size: 16px;
}
.height-75 {
height: 75px;
}
2023-10-20 17:05:39 +01:00
2023-08-11 16:38:23 +01:00
.height-356 {
height: 395px;
}
2023-07-06 12:18:15 +01:00
}
}
2023-08-24 22:19:40 +01:00
.calendar-conteiner-height {
height: 100%;
transition: 0.5s;
animation: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
-webkit-animation: 0.5s;
2023-10-20 17:05:39 +01:00
}