mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
147 lines
2.1 KiB
SCSS
147 lines
2.1 KiB
SCSS
.indicator-container {
|
|
padding-left: 0.5rem;
|
|
padding-bottom: 0.4rem;
|
|
}
|
|
|
|
.event-indicator {
|
|
background: #333;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 5px;
|
|
display: table-cell;
|
|
}
|
|
|
|
:host ::ng-deep {
|
|
.monthview-primary-with-event {
|
|
background-color: white !important;
|
|
}
|
|
|
|
.monthview-selected {
|
|
background-color: lightskyblue !important;
|
|
}
|
|
.item{
|
|
/* background: red !important; */
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
.input-wrapper{
|
|
border-left: red !important;
|
|
/* background: red; */
|
|
margin-left: 1px solid red;
|
|
}
|
|
}
|
|
|
|
.with-event {
|
|
background-color: #ccc;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
|
|
|
|
/* TOGGLE button */
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 90px;
|
|
height: 34px;
|
|
float: right;
|
|
right: -4px !important;
|
|
margin:20px 20px 0 0;
|
|
}
|
|
|
|
.switch input {display:none;}
|
|
|
|
.slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ffffff;
|
|
border: 1px solid #e16817;
|
|
color: #e16817;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
.slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 23.5px; /* 26px; */
|
|
width: 24px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: #ffffff;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
input:checked + .slider {
|
|
background-color: #e16817;
|
|
}
|
|
|
|
input:focus + .slider {
|
|
box-shadow: 0 0 1px #2196F3;
|
|
}
|
|
|
|
input:checked + .slider:before {
|
|
-webkit-transform: translateX(55px);
|
|
-ms-transform: translateX(55px);
|
|
transform: translateX(55px);
|
|
}
|
|
|
|
/*------ ADDED CSS ---------*/
|
|
.pr
|
|
{
|
|
display: none;
|
|
text-align: left !important;
|
|
left: 25px !important;
|
|
color: white;
|
|
}
|
|
.mdgpr
|
|
{
|
|
|
|
left: 58px !important;
|
|
color: #e16817;
|
|
}
|
|
|
|
.pr, .mdgpr
|
|
{
|
|
position: absolute;
|
|
transform: translate(-50%,-50%);
|
|
top: 50%;
|
|
left: 50%;
|
|
font-size: 12px;
|
|
font-family: Verdana, sans-serif;
|
|
}
|
|
|
|
input:checked+ .slider .pr
|
|
{display: block;
|
|
background:#e16817;
|
|
}
|
|
|
|
input:checked + .slider .mdgpr
|
|
{display: none;
|
|
}
|
|
|
|
/*--------- END --------*/
|
|
|
|
/* Rounded sliders */
|
|
.slider.round {
|
|
border-radius: 34px;
|
|
|
|
}
|
|
|
|
.slider.round:before {
|
|
border-radius: 50%;
|
|
border: 1px solid #e16817;
|
|
}
|
|
|
|
/*
|
|
|
|
Calendar
|
|
|
|
*/
|
|
|