Files
doneit-web/src/global.scss
T

1035 lines
20 KiB
SCSS
Raw Normal View History

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
2021-06-17 16:13:37 +01:00
ion-slide {
td {
2021-02-02 12:28:37 +01:00
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-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-04-05 14:12:59 +01:00
.line{
2021-04-21 19:59:49 +01:00
margin-top: 15px;
border-top: 1px solid #d8d8d8;
2021-04-05 14:12:59 +01:00
}
2021-02-02 12:28:37 +01:00
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;
}
/* .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
color: black !important;
margin: 0px auto !important;
2021-03-19 15:56:58 +01:00
border: 1px solid #fff;
border-radius: 50px;
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
border-radius: 106px;
padding: 0px !important;
div.day{
padding: 0px !important;
transform: rotate(-45deg);
}
2021-01-29 13:50:38 +01:00
}
2021-03-19 15:56:58 +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-03-19 15:56:58 +01:00
border-top: 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;
2021-03-19 15:56:58 +01:00
border-top: 3px solid #f05d5e !important;
2021-02-01 15:27:12 +01:00
}
.calendar-pr-event-type-both{
2021-03-19 15:56:58 +01:00
border-right: 3px solid #99e47b !important;
border-bottom: 3px solid #958bfc !important;
2021-02-01 15:27:12 +01:00
}
.calendar-pr-event-type-Oficial{
2021-03-19 15:56:58 +01:00
border-right: 3px solid #99e47b !important;
2021-02-01 15:27:12 +01:00
}
2021-02-03 17:13:32 +01:00
2021-02-01 15:27:12 +01:00
.calendar-pr-event-type-Pessoal{
2021-03-19 15:56:58 +01:00
border-bottom: 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-04-21 19:59:49 +01:00
}
2021-02-12 11:08:03 +01:00
.modal-desktop{
.modal-wrapper{
2021-06-11 00:15:26 +01:00
max-width: 1466px !important;
2021-02-12 11:08:03 +01:00
height: 100%;
}
}
2021-04-06 10:29:07 +01:00
@media screen and (min-width: 1200px) {
.hide-desktop{
display: none !important;
}
.container-div{
border-bottom:none !important;
}
}
@media only screen and (max-width: 800px){
.btn-refresh{
display: none;
}
2021-07-05 08:25:17 +01:00
.attach-title-item{
width: 200px !important;
border: 1px solid red;
}
}
2021-04-06 10:29:07 +01:00
2021-03-25 15:46:43 +01:00
.hideAsideOptions{
2021-03-26 12:14:33 +01:00
@media only screen and (max-width: 800px) {
2021-03-25 15:46:43 +01:00
.div-icon{
display: none;
}
.content{
width: 100%;
border-right: 1px solid #d8d8d8;
}
.aside-right{
display: none;
}
}
/* .aside-right{
display: none;
width: 0;
}
.content{
width: 100%;
} */
}
2021-03-30 15:35:22 +01:00
.app-default-padding{
padding: 30px 20px 0 20px !important;
}
2021-03-25 15:46:43 +01:00
.showAsideOptions{
2021-03-26 12:14:33 +01:00
2021-04-06 17:39:27 +01:00
@media only screen and (min-width: 800px) {
2021-03-26 12:14:33 +01:00
.div-icon{
display: none;
}
.content{
width: 65%;
border-right: 1px solid #d8d8d8;
}
.aside-right{
width: 35%;
}
}
@media only screen and (min-width: 1024px){
.content{
width: 70%;
}
.aside-right{
width: 30%;
}
}
@media only screen and (min-width: 1140px) {
2021-03-25 15:46:43 +01:00
.div-icon{
display: none;
}
.content{
width: 75%;
border-right: 1px solid #d8d8d8;
}
.aside-right{
width: 25%;
}
}
}
2021-02-18 12:44:35 +01:00
.profile-modal{
.modal-wrapper{
position: absolute;
top: -40px;
right: 0px;
height: 100%;
2021-05-27 21:44:18 +01:00
max-width: 400px;
2021-02-18 12:44:35 +01:00
}
}
2021-06-08 15:59:06 +01:00
2021-06-24 11:08:17 +01:00
.desktop-search {
padding-top: 0px !important;
margin-top: 80px !important;
position: relative !important;
ion-backdrop {
display: none !important;
}
// margin-top: 86px;
.model-wrapper {
}
}
2021-06-08 15:59:06 +01:00
.notification-modal {
ion-backdrop {
display: none;
}
.modal-wrapper {
position: absolute;
top: 23px;
right: 0px;
height: 87px;
max-width: 400px;
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
}
.ion-page {
box-shadow: 0 28px 48px rgba(0, 0, 0, 0.2) !important;
}
}
2021-05-12 16:15:30 +01:00
.hide-footer{
ion-footer{
display: none !important;
}
}
2021-05-12 16:18:33 +01:00
.aside-modal{
.modal-wrapper{
position: absolute;
right: 0px;
height: 100%;
width: 400px;
2021-05-12 16:32:26 +01:00
}
2021-05-12 16:18:33 +01:00
}
2021-05-12 16:15:30 +01:00
2021-04-23 14:30:18 +01:00
.modal-width-100-width-background, .modal-desktop {
2021-05-20 11:59:51 +01:00
padding-top: 76px;
2021-06-24 11:08:17 +01:00
.modal-wrapper {
2021-04-23 14:30:18 +01:00
width: 100% !important;
height: 99% !important;
position: relative;
2021-04-21 19:59:49 +01:00
}
}
2021-06-24 11:08:17 +01:00
.modal-padding-top {
margin-top: 87px;
.modal-wrapper {
// height: 99%;
// top: 2%;
// position: relative;
2021-04-23 14:30:18 +01:00
}
}
2021-04-21 19:59:49 +01:00
2021-04-23 14:30:18 +01:00
.modal-top-100-width-background, .modal-desktop {
2021-06-24 11:08:17 +01:00
.modal-wrapper {
2021-04-23 14:30:18 +01:00
width: 100%;
height: 99%;
position: relative;
}
}
@media only screen and (min-width: 1366px) {
.modal-desktop-shadow{
.ion-page{
box-shadow: 0 0 15px 0 rgb(0 0 0 / 49%);
}
}
.modal-desktop-remove-background{
padding-top: 0px;
top: 85px;
ion-backdrop{
display: none;
transform: none !important;
}
.modal-wrapper{
transform: none !important;
box-shadow: none !important;
height: 100% !important;
top: unset !important;
.ion-page {
transform: none !important;
-webkit-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
}
}
}
2021-03-11 10:31:46 +01:00
}
2021-02-18 12:44:35 +01:00
2021-04-23 14:30:18 +01:00
.modal-desktop-shadow{
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.49);
}
2021-02-18 12:44:35 +01:00
.footer-container{
padding: 10px 20px;
}
2021-03-04 15:14:09 +01:00
2021-04-14 18:12:52 +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%;
transform: none !important;
2021-03-04 18:50:26 +01:00
ion-backdrop{
display: none;
transform: none !important;
2021-03-04 18:50:26 +01:00
}
.modal-wrapper{
transform: none !important;
2021-03-04 18:50:26 +01:00
width: 100%;
height: 100%;
box-shadow: none !important;
.ion-page {
transform: none !important;
}
2021-03-04 15:14:09 +01:00
}
}
2021-04-23 14:30:18 +01:00
.modal-width-100{
.modal-wrapper{
width: 100%;
height: 100%;
}
}
2021-04-06 16:25:20 +01:00
@media only screen and (min-width: 1365px) {
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-05 14:54:10 +01:00
2021-04-23 10:35:53 +01:00
@media only screen and (min-width: 1024px) {
2021-03-26 15:52:30 +01:00
.timeline-mobile{
.timeline-box {
position: relative;
left: -4%;
width: 102%;
}
}
}
2021-04-14 18:12:52 +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
}
2021-05-12 16:28:58 +01:00
.timeline-container {
div:nth-child(3) {
.cal-time{
display: none;
}
.cal-current-time-marker::before {
display: none !important;
}
.timeline-box{
2021-06-03 14:18:30 +01:00
left: -13%;
2021-05-12 16:28:58 +01:00
position: relative;
width: 113%;
}
2021-03-17 20:45:57 +01:00
}
}
.timeline{
div.cal-event:focus{
outline: none !important;
}
2021-03-19 15:56:58 +01:00
}
2021-06-17 16:13:37 +01:00
.calendar-component .monthview-container table.table {
2021-05-06 14:22:59 +01:00
td {
2021-06-17 16:13:37 +01:00
width: 50px;
height: 40px;
2021-05-06 14:22:59 +01:00
div {
2021-03-19 15:56:58 +01:00
padding-left: 0px;
}
2021-06-16 09:51:15 +01:00
display: flex;
align-content: center;
justify-content: center;
2021-06-16 09:11:20 +01:00
}
2021-06-16 15:58:44 +01:00
td div:not(.day, .day-container, .number) {
2021-06-16 09:11:20 +01:00
width: 30px !important;
height: 30px;
2021-03-19 15:56:58 +01:00
}
2021-06-16 09:51:15 +01:00
tr {
display: flex;
justify-content: space-around;
}
2021-03-29 14:08:20 +01:00
}
// agenda attendee component
.attendee-search-bar input{
border: 1px solid #cecece !important;
box-shadow: none !important;
border-radius: 3px !important;
-webkit-border-radius: 3px !important;
-moz-border-radius: 3px !important;
-ms-border-radius: 3px !important;
-o-border-radius: 3px !important;
}
.attendee-search-bar .searchbar-input {
border: 1px solid #cecece !important;
box-shadow: none !important;
border-radius: 3px !important;
-webkit-border-radius: 3px !important;
-moz-border-radius: 3px !important;
-ms-border-radius: 3px !important;
-o-border-radius: 3px !important;
2021-04-07 16:46:21 +01:00
}
2021-05-06 14:22:59 +01:00
.title-icon {
2021-04-07 16:46:21 +01:00
font-size: 40px !important;
2021-04-08 11:55:44 +01:00
color: #42b9fe;
2021-04-07 16:46:21 +01:00
overflow: auto;
2021-04-08 12:04:22 +01:00
}
ion-icon {
pointer-events: none;
2021-04-08 16:26:54 +01:00
}
2021-05-06 14:22:59 +01:00
.btn-no-color {
2021-04-08 16:26:54 +01:00
background: transparent;
margin: 0 !important;
padding: 0 !important;
2021-05-06 14:22:59 +01:00
ion-icon {
2021-04-08 16:26:54 +01:00
font-size: 35px;
}
}
2021-05-06 14:22:59 +01:00
.btn-no-color:focus {
2021-04-08 16:26:54 +01:00
outline: 0;
2021-04-23 10:35:53 +01:00
}
// center
2021-07-05 13:15:52 +01:00
app-diploma-assinar ion-content .main-content,
2021-06-11 00:15:26 +01:00
app-approve-event ion-content .main-content,
2021-06-14 14:34:18 +01:00
app-view-event ion-content .main-content,
app-expediente-pr .main-content{
2021-05-21 15:39:24 +01:00
max-width: 1366px !important;
margin: 0px auto !important;
}
app-expediente-detail ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
2021-04-23 10:35:53 +01:00
2021-05-21 16:36:55 +01:00
app-despacho ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
app-despacho-pr ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
2021-05-11 15:44:57 +01:00
app-pedido ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
2021-04-23 10:35:53 +01:00
2021-05-21 16:36:55 +01:00
app-diploma ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
2021-04-23 10:35:53 +01:00
app-gabinete-digital ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
app-publications ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
app-agenda ion-content .container-wrapper{
max-width: 1366px !important;
margin: 0px auto !important;
}
app-chat ion-content .main-content{
max-width: 1366px !important;
margin: 0px auto !important;
}
app-header .ion-toolbar{
max-width: 1366px;
margin: 0px auto;
}
app-header-no-search .ion-toolbar{
max-width: 1366px;
margin: 0px auto;
}
2021-06-23 13:31:25 +01:00
/* .main-content{
height: 100% !important;
overflow-y: auto !important;
} */
2021-04-23 10:35:53 +01:00
2021-06-17 09:07:36 +01:00
body, .blue-background{ background: #0782C9 !important;}
2021-04-23 10:35:53 +01:00
@media only screen and (min-width: 1365px) {
body{
2021-06-18 12:02:14 +01:00
background: linear-gradient(270deg, #45BAFF 0%, #0782C9 23.44%, rgba(7, 130, 201, 0.9425) 78.13%, #45BAFF 100%) !important;
2021-04-23 10:35:53 +01:00
}
.blue-background {
2021-06-18 12:02:14 +01:00
background: linear-gradient(270deg, #45BAFF 0%, #0782C9 23.44%, rgba(7, 130, 201, 0.9425) 78.13%, #45BAFF 100%) !important;
2021-04-23 10:35:53 +01:00
}
}
:host {
ion-content {
--background:none;
}
--background:none;
}
ion-content {
--background:none;
}
2021-06-21 10:21:09 +01:00
.header-default-padding{
padding: 30px 20px 0 20px !important;
}
.content-default-padding{
padding: 0px 20px 0 20px !important;
}
.chat-popover .popover-content {
width: 100% !important;
left: 0 !important;
bottom: 0 !important;
right: 0 !important;
top: calc(100% - 160px) !important;
max-height: 160px;
min-height: 160px;
2021-05-12 16:32:26 +01:00
}
.monthview-secondary-with-event, .text-muted {
.day {
color: #cecece;
}
2021-05-04 16:21:24 +01:00
}
ion-icon{
cursor: pointer;
2021-05-24 16:49:25 +01:00
}
.temporary-message {
background-color: #00000073;
.modal-wrapper {
width: 500px;
height: fit-content;
height: 300px;
}
2021-06-10 14:58:44 +01:00
}
2021-06-14 13:33:46 +01:00
@media only screen and (max-width: 500px) {
2021-06-10 14:58:44 +01:00
::-webkit-scrollbar {
2021-06-14 13:33:46 +01:00
width: 5px !important;
height: 5px !important;
2021-06-10 14:58:44 +01:00
}
}
2021-06-14 12:07:07 +01:00
::-webkit-scrollbar {
2021-06-16 15:58:44 +01:00
width: 7px;
height: 7px;
2021-06-14 12:07:07 +01:00
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
2021-06-10 14:58:44 +01:00
2021-06-14 12:07:07 +01:00
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(92, 92, 92);
2021-06-10 14:58:44 +01:00
}
2021-06-14 12:07:07 +01:00
// ===================================
2021-06-10 14:58:44 +01:00
.hide-scroll::-webkit-scrollbar {
display: none !important;
}
2021-06-17 16:33:38 +01:00
/* Track */
2021-06-10 14:58:44 +01:00
.hide-scroll::-webkit-scrollbar-track {
display: none !important;
}
/* Handle */
.hide-scroll::-webkit-scrollbar-thumb {
display: none !important;
}
/* Handle on hover */
.hide-scroll::-webkit-scrollbar-thumb:hover {
display: none !important;
}
2021-06-15 14:30:32 +01:00
2021-06-16 15:58:44 +01:00
.notification{
2021-06-15 14:30:32 +01:00
position: absolute;
top: 23px;
right: 0px;
height: 87px;
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
background-color: white;
text-align: center;
align-items: center;
display: flex;
justify-content: center;
background-image: url("/assets/background/background-circle-negative.svg");
background-size: 686px 674px;
background-position: center;
background-position-y: 0px;
background-repeat: no-repeat;
min-width: 340px;
box-shadow: 0px 2px 10px #0000003d;
2021-06-18 16:03:34 +01:00
animation-name: notification;
2021-06-16 15:58:44 +01:00
animation-duration: 1s;
animation-timing-function: ease-in;
transition: 1s;
2021-06-15 14:30:32 +01:00
.main-content {
display: flex;
align-items: center;
}
.message {
font-size: 12pt;
}
2021-06-16 15:58:44 +01:00
}
2021-06-21 09:10:45 +01:00
.notificationPush{
position: absolute;
top: 23px;
right: 0px;
height: 87px;
max-width: 400px;
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
-ms-border-radius: 9px;
-o-border-radius: 9px;
background-color: white;
text-align: center;
align-items: center;
display: flex;
justify-content: center;
background-image: url("/assets/background/background-circle-negative.svg");
background-size: 686px 674px;
background-position: center;
background-position-y: 0px;
background-repeat: no-repeat;
min-width: 340px;
box-shadow: 0px 2px 10px #0000003d;
display: flex;
align-items: center;
animation-name: notification-top;
animation-duration: 1s;
animation-timing-function: ease-in;
transition: 1s;
.main-content {
display: flex;
align-items: center;
}
.message {
font-size: 12pt;
}
}
2021-06-16 15:58:44 +01:00
2021-06-18 16:03:34 +01:00
@keyframes notification {
2021-06-16 15:58:44 +01:00
from {right: -100%;}
to {right: 0px;}
}
2021-06-16 16:29:17 +01:00
2021-06-21 09:10:45 +01:00
@keyframes notification-top {
from {top: -100%;}
to {top: 23px;}
}
2021-06-16 16:29:17 +01:00
2021-06-17 16:13:37 +01:00
.calendar-component .monthview-container table.table tbody {
2021-06-16 16:29:17 +01:00
tr:nth-child(n+6) {
display: none;
}
2021-06-17 21:22:43 +01:00
}
.modal {
display: flex !important;
2021-06-23 15:39:45 +01:00
}
// calendar
.mat-calendar-body-selected {
background-color: #42b9fe !important;
}
// select background
// .mat-primary .mat-option.mat-selected:not(.mat-option-disabled), .mat-option-ripple {
// background-color: #fafafa !important;
// }
.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
background-color: #42b9fe36 !important;
}
.mat-form-field-underline.ng-tns-c193-6.ng-star-inserted, .mat-form-field-underline {
2021-06-25 10:50:31 +01:00
// display: none;
2021-06-23 15:39:45 +01:00
}
.date-hour-picker {
margin-top: -6px;
2021-07-05 11:15:55 +01:00
2021-06-24 11:08:17 +01:00
label#mat-form-field-label-7 {
2021-06-25 10:50:31 +01:00
display: none;
2021-06-23 15:39:45 +01:00
}
2021-07-05 11:15:55 +01:00
2021-06-23 15:39:45 +01:00
.span.ng-tns-c193-4, .ng-star-inserted {
// display: none;
}
.ng-star-inserted{
// display: none;
position: absolute;
2021-07-05 11:15:55 +01:00
width: 100%;
2021-06-23 15:39:45 +01:00
height: 43px;
opacity: 0;
button {
width: 100%;
height: 100%;
}
}
2021-07-05 11:15:55 +01:00
button {
width: 100%;
height: 100%;
}
.mat-datepicker-toggle, mat-datepicker-toggle {
width: 100%;
}
}
2021-06-23 15:39:45 +01:00
.mat-active span {
color: #0d89d1 !important;
}
// .ng-star-inserted {
// opacity: 0;
2021-06-28 11:16:21 +01:00
// }
.input-error{
border: 1px solid #fba0a0 !important;
}
.input-errror-message{
margin-top: -16px;
margin-bottom: 10px;
font-size: 11pt;
2021-07-01 11:57:45 +01:00
}
.mat-selected {
background-color: #87cefa !important;
span {
color: white !important;
}
2021-07-01 12:21:37 +01:00
}
2021-07-01 16:23:47 +01:00
ngx-mat-datetime-content{
.actions {
.mat-button-disabled {
background-color: #ff5a5a59 !important;
}
}
}
2021-07-02 16:05:21 +01:00
// angular material inputs
.mat-form-field-infix, .mat-form-field-wrapper {
padding: 0px !important;
}