+
{{ts.trPK('login','login')}}
diff --git a/Mohem/src/app/authentication/login/login.component.scss b/Mohem/src/app/authentication/login/login.component.scss
index 81d65d6c..5b7fc282 100644
--- a/Mohem/src/app/authentication/login/login.component.scss
+++ b/Mohem/src/app/authentication/login/login.component.scss
@@ -1,15 +1,21 @@
.signupDiv {
font-size: 14px;
}
+
.customGrid {
margin-bottom: 20px;
}
-.gridBtn.active{
- background:var(--customnavy) !important;
- color:var(--light) !important;
-
+
+.gridBtn.active {
+ background: var(--customnavy) !important;
+ color: var(--light) !important;
+
}
-.gridDiv{direction: rtl}
+
+.gridDiv {
+ direction: rtl
+}
+
.pageTitle {
color: var(--dark);
font-size: 23px;
@@ -42,15 +48,14 @@ img.centerDiv {
min-width: 20px;
min-height: 20px;
display: block;
- margin-top: 30px;
+
background: var(--light);
}
.gridDiv {
width: 100%;
height: 40px;
- margin-top: 20px;
- // margin-bottom: 10px;
+ padding: 10px 15px;
font-size: 14px;
:root[dir="ltr"] {
@@ -107,28 +112,29 @@ img.centerDiv {
border-radius: 0px 2px 2px 0px !important;
}
}
-
+
}
.login-input {
border: none;
+ margin-right: 5px;
}
-.item-input{
+.item-input {
--min-height: 1.0cm !important;
--border-radius: 12px;
--ion-color-base: white !important;
// --background: color: var(--darkgray) !important;
// background: #7f8c8d !important;
- border-radius: 33px;
- --border: solid #9999992b !important;
- border: solid #9999992b !important;
- margin-bottom :12px;
- margin-left: 12px;
- margin-right: 12px;
+ border-radius: 33px;
+ --border: solid #9999992b !important;
+ border: solid #9999992b !important;
+ margin-bottom: 12px;
+ margin-left: 12px;
+ margin-right: 12px;
}
-.button-login{
+.button-login {
--background: var(--newgreen) !important;
background: var(--newgreen) !important;
@@ -142,7 +148,7 @@ img.centerDiv {
width: 315px;
}
-.button-digital-id{
+.button-digital-id {
--background: white !important;
background: white !important;
white-space: normal;
@@ -158,10 +164,11 @@ img.centerDiv {
.content {
- width: 500px;
- margin-left: auto;
- margin-right: auto;
+ width: 500px;
+ margin-left: auto;
+ margin-right: auto;
}
+
.first-circle {
background: var(--newgreen) !important;
border-radius: 50%;
@@ -172,14 +179,16 @@ img.centerDiv {
margin-top: -140px;
}
+
.middle-circle {
position: relative;
- background:#1a586d !important;
+ background: #1a586d !important;
border-radius: 50%;
height: 160px;
width: 170px;
margin: -115px 0px 0px 179px;
}
+
.last-circle {
position: inherit;
background: #65C399 !important;
@@ -192,10 +201,10 @@ img.centerDiv {
.logoFotor {
width: 45px !important;
height: 45px !important;
-
+
}
-.welcomeText{
+.welcomeText {
justify-content: center;
align-items: center;
text-align: left;
@@ -206,56 +215,60 @@ img.centerDiv {
margin-left: 48px;
}
-.forgetText{
+.forgetText {
background: transparent;
color: var(--darkblue) !important;
}
@media only screen and (max-width: 980px) {
- .content{width:100%;}
+ .content {
+ width: 100%;
+ }
}
-.circle1{
+.circle1 {
width: 15%;
padding-top: 15%;
- margin:0 42%;
+ margin: 0 42%;
background-color: black;
border-radius: 50%;
- display:inline-block;
- }
- .circle2{
+ display: inline-block;
+}
+
+.circle2 {
width: 15%;
padding-top: 15%;
margin-left: 20%;
- background-color:darkred;
+ background-color: darkred;
border-radius: 50%;
- display:inline-block;
- margin-top:20px;
- }
- .circle3{
- width: 15%;
+ display: inline-block;
+ margin-top: 20px;
+}
+
+.circle3 {
+ width: 15%;
padding-top: 15%;
margin-left: 26%;
- background-color:gold;
- border-radius: 50%;
- display:inline-block;
- margin-top:20px;
- margin-right: 15%;
- }
+ background-color: gold;
+ border-radius: 50%;
+ display: inline-block;
+ margin-top: 20px;
+ margin-right: 15%;
+}
- .digital-id-en{
+.digital-id-en {
color: black;
position: absolute;
right: 20px;
width: 10%;
- }
+}
- .digital-id-ar{
+.digital-id-ar {
color: black;
position: absolute;
left: 20px;
width: 10%;
- }
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/Mohem/src/app/authentication/login/login.component.ts b/Mohem/src/app/authentication/login/login.component.ts
index 95d86244..a3c7beac 100644
--- a/Mohem/src/app/authentication/login/login.component.ts
+++ b/Mohem/src/app/authentication/login/login.component.ts
@@ -142,12 +142,13 @@ export class LoginComponent implements OnInit, OnDestroy {
public changeLanguage(langNumber) {
console.log("current lang: " + this.currentLang)
console.log("click lang: " + langNumber)
+
if (this.currentLang == langNumber) {
this.currentLang = langNumber;
return;
} else {
this.ts.switchLanguage();
- // tslint:disable-next-line: triple-equals
+
if (TranslatorService.CURRENT_LANGUAGE == TranslatorService.EN) {
this.language = 'US';
} else {
@@ -156,6 +157,7 @@ export class LoginComponent implements OnInit, OnDestroy {
this.currentLang = TranslatorService.getCurrentLanguageCode();
}
this.currentLang = langNumber;
+
}
public forgetPasswordPage() {
@@ -390,19 +392,19 @@ export class LoginComponent implements OnInit, OnDestroy {
return await modal.present();
}
- showPassword(){
+ showPassword() {
this.inputType = 'password';
}
- hidePassword(){
+ hidePassword() {
this.inputType = 'text';
}
async appUpdate(msg, result) {
const modal = await this.modalController.create({
- component: AppUpdateComponent,
- cssClass: 'app-update-modal-css',
- componentProps: {'msg':msg}
+ component: AppUpdateComponent,
+ cssClass: 'app-update-modal-css',
+ componentProps: { 'msg': msg }
});
modal.onDidDismiss().then((data) => {
this.handleAppUpdate(result);
diff --git a/Mohem/src/app/authentication/sms-page/sms-page.page.scss b/Mohem/src/app/authentication/sms-page/sms-page.page.scss
index 986beeb9..86b95644 100644
--- a/Mohem/src/app/authentication/sms-page/sms-page.page.scss
+++ b/Mohem/src/app/authentication/sms-page/sms-page.page.scss
@@ -1,25 +1,26 @@
-.header-toolbar{
+.header-toolbar {
--background: linear-gradient(45deg, #3ac1f1 0%, #19a163 36%, #19a163 59%, #1a586d 100%);
}
-.btnBack{
+.btnBack {
background: transparent;
}
-ion-img{
+ion-img {
width: 180px;
height: 180px;
- background:transparent;
+ background: transparent;
}
-h1{
+h1 {
font-size: 28px !important;
}
-span{
+span {
font-weight: bold;
}
-.button-login{
+
+.button-login {
--background: var(--newgreen) !important;
background: var(--newgreen) !important;
@@ -35,11 +36,11 @@ span{
.leftDiv {
margin: auto;
- text-align: left;
+
display: block;
}
-.sms_code{
+.sms_code {
margin: 0px;
text-align: center;
}
@@ -57,12 +58,13 @@ ion-input {
transition: all .2s ease-in-out;
border-radius: 3px;
display: inline-block;
+
&:focus {
- border-color:var(--ion-color-secondary) !important;
- box-shadow: 0 0 5px var(--ion-color-secondary) !important inset;
+ border-color: var(--ion-color-secondary) !important;
+ box-shadow: 0 0 5px var(--ion-color-secondary) !important;
}
-
+
&::selection {
- background: transparent;
+ background: transparent;
}
- }
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/Mohem/src/app/authentication/sms-page/sms-page.page.ts b/Mohem/src/app/authentication/sms-page/sms-page.page.ts
index aa9bf3b6..d92065bc 100644
--- a/Mohem/src/app/authentication/sms-page/sms-page.page.ts
+++ b/Mohem/src/app/authentication/sms-page/sms-page.page.ts
@@ -1,8 +1,8 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit, ViewChild } from '@angular/core';
import { ElementRef } from '@angular/core';
-import { NavController, Platform } from '@ionic/angular';
+import { IonContent, NavController, Platform } from '@ionic/angular';
import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service';
@@ -28,6 +28,7 @@ import { NFC } from "@ionic-native/nfc/ngx";
import { SmsRetriever } from '@ionic-native/sms-retriever/ngx';
+
@Component({
selector: 'app-sms-page',
@@ -41,7 +42,7 @@ import { SmsRetriever } from '@ionic-native/sms-retriever/ngx';
export class SmsPageComponent implements OnInit {
-
+ @ViewChild(IonContent) content: IonContent;
public static LOGIN_DATA = 'LOGIN_DATA';
Channel = 0;
@@ -189,6 +190,7 @@ export class SmsPageComponent implements OnInit {
.then((res: any) => this.checkActivation(res, true))
.catch((error: any) => console.error(error));
+ this.content.scrollToTop(0);
}
@@ -620,7 +622,7 @@ export class SmsPageComponent implements OnInit {
const sibPre = t.previousElementSibling;
- if (key === undefined && e.target.value.length==4 && (this.platform.is('ios') && !this.platform.is('mobileweb'))) {
+ if (key === undefined && e.target.value.length == 4 && (this.platform.is('ios') && !this.platform.is('mobileweb'))) {
this.checkActivation(e.target.value, false);
}
diff --git a/Mohem/src/app/hmg-common/services/connector/connector.service.ts b/Mohem/src/app/hmg-common/services/connector/connector.service.ts
index 04f3a8ac..e2677ece 100644
--- a/Mohem/src/app/hmg-common/services/connector/connector.service.ts
+++ b/Mohem/src/app/hmg-common/services/connector/connector.service.ts
@@ -27,9 +27,9 @@ export class ConnectorService {
public static retryTimes = 0;
public static timeOut = 180 * 1000;
- //public static host = 'https://uat.hmgwebservices.com/';
+ public static host = 'https://uat.hmgwebservices.com/';
// public static host = 'https://hmgwebservices.com/';
- public static host = 'http://riyt-mohemm1:1010/' //MOE
+ // public static host = 'http://riyt-mohemm1:1010/' //MOE
constructor(public httpClient: HttpClient,
public cs: CommonService,
private events: Events,
diff --git a/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss b/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
index 6895ceb4..eaffea28 100644
--- a/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
+++ b/Mohem/src/app/hmg-common/ui/stats-button/stats-button.component.scss
@@ -13,6 +13,7 @@
display: block;
width: 100%;
position: static;
+
img {
// display: block;
// max-width: 45%;
@@ -28,6 +29,7 @@
.titleBox {
display: block;
+
span {
font-size: 25px;
font-weight: bold;
@@ -37,6 +39,10 @@
}
}
+ion-app[dir="rtl"] .titleBox {
+ text-align: right;
+}
+
.pClass {
color: black;
width: 85%;
@@ -47,7 +53,7 @@
font-size: 14px !important;
}
-.iconFab{
+.iconFab {
margin-left: -20px;
margin-top: 10px;
width: 100px;
@@ -59,7 +65,8 @@
width: 100%;
top: 70px;
left: 2px;
+
img {
width: 25px;
}
-}
+}
\ No newline at end of file
diff --git a/Mohem/src/app/home/home.page.html b/Mohem/src/app/home/home.page.html
index 00a271ad..4e65355e 100644
--- a/Mohem/src/app/home/home.page.html
+++ b/Mohem/src/app/home/home.page.html
@@ -27,7 +27,7 @@
- {{menuItem.PROMPT}}
+
diff --git a/Mohem/src/app/home/home.page.scss b/Mohem/src/app/home/home.page.scss
index f74783fe..aa1f09cf 100644
--- a/Mohem/src/app/home/home.page.scss
+++ b/Mohem/src/app/home/home.page.scss
@@ -3,10 +3,11 @@ ion-row {
margin-top: 10px;
}
-.header-toolbar-new{
+.header-toolbar-new {
--background: #269DB8;
}
-.profile-image-container{
+
+.profile-image-container {
position: relative;
z-index: 999;
// img {
@@ -18,7 +19,8 @@ ion-row {
// // margin-right: 4px;
// }
}
-.profile-image{
+
+.profile-image {
width: 32px;
float: right;
// margin-top: -42px;
@@ -26,45 +28,51 @@ ion-row {
height: 32px;
// margin-right: 4px;
}
-ion-title{
+
+ion-title {
color: white;
position: absolute;
top: 0;
text-align: center;
- left:20%;
+ left: 20%;
right: 20%;
font-size: 0.42cm;
font-weight: bold;
height: 100%;
}
-ion-label{
+
+ion-label {
display: block;
color: black !important;
font-size: 14px;
font-weight: bold;
}
-.main-dashboard-container{
+
+.main-dashboard-container {
position: relative;
width: 100%;
}
+
.contentBg:before {
position: absolute;
- content: "";
- background: #269DB8;
- height: 100px;
- width: 100%;
- left: 0;
- top: 0px;
- z-index: 1;
+ content: "";
+ background: #269DB8;
+ height: 100px;
+ width: 100%;
+ left: 0;
+ top: 0px;
+ z-index: 1;
}
-.main-container{
+
+.main-container {
position: relative;
z-index: 2;
padding-right: 15px;
padding-left: 15px;
padding-bottom: 130px;
}
-.attendance-module{
+
+.attendance-module {
border-radius: 20px;
background-color: #292F42;
padding: 10px;
@@ -72,21 +80,25 @@ ion-label{
width: 100%;
margin-top: 25px;
margin-bottom: 0px;
- h3{
+
+ h3 {
font-size: 18px;
font-weight: bold;
margin: 0;
}
- span{
+
+ span {
font-size: 13px;
display: block;
}
- img{
+
+ img {
display: block;
margin: 10px auto;
width: 80%;
}
- ion-button{
+
+ ion-button {
border-radius: 10px;
padding: 10px;
background: #269db8;
@@ -98,10 +110,12 @@ ion-label{
font-size: 12px;
}
}
+
.swiper-container {
margin: 0 !important;
width: 100% !important;
}
+
.fixed-shift-time-en {
right: 20px;
}
@@ -110,10 +124,11 @@ ion-label{
left: 20px;
}
-.fixed-shift-timer{
+.fixed-shift-timer {
position: fixed;
bottom: 20px;
z-index: 2;
+
span.subTitle {
position: absolute;
left: 50%;
@@ -163,6 +178,7 @@ ion-label{
width: 100%;
top: 70px;
left: 2px;
+
img {
width: 25px;
}
diff --git a/Mohem/src/theme/styles.scss b/Mohem/src/theme/styles.scss
index e5217a79..f8e4688e 100644
--- a/Mohem/src/theme/styles.scss
+++ b/Mohem/src/theme/styles.scss
@@ -1,187 +1,228 @@
-
-
// $font-family-base: "WorkSans-Regular" !default;
-body{
- :root[dir="rtl"]{
- font-family: var(--fontFamilyIOSAR) !important;
- }
- :root[dir="ltr"]{
- font-family: var(--fontFamilyMediumEN) !important;
+body {
+ :root[dir="rtl"] {
+ font-family: var(--fontFamilyIOSAR) !important;
+ }
+
+ :root[dir="ltr"] {
+ font-family: var(--fontFamilyMediumEN) !important;
}
- }
- input, textarea, p ,label,div{
+}
+
+input,
+textarea,
+p,
+label,
+div {
font-size: 16px;
- :root[dir="rtl"]{
- font-family: var(--fontFamilyIOSAR) !important;
- }
- :root[dir="ltr"]{
- font-family: var(--fontFamilyLightEN) !important;
+
+ :root[dir="rtl"] {
+ font-family: var(--fontFamilyIOSAR) !important;
}
- }
- h1, h2,h3, button {
- :root[dir="rtl"]{
- font-family: var(--fontFamilyIOSAR) !important;
+
+ :root[dir="ltr"] {
+ font-family: var(--fontFamilyLightEN) !important;
}
- :root[dir="ltr"]{
- font-family: var(--fontFamilyMediumEN) !important;
}
-
- }
- .header-toolbar {
+h1,
+h2,
+h3,
+button {
+ :root[dir="rtl"] {
+ font-family: var(--fontFamilyIOSAR) !important;
+ }
+
+ :root[dir="ltr"] {
+ font-family: var(--fontFamilyMediumEN) !important;
+ }
+
+}
+
+.header-toolbar {
--background: linear-gradient(45deg, #3ac1f1 0%, #19a163 36%, #19a163 59%, #1a586d 100%);
- }
+}
-ion-label{
- color:var(--labelColor) !important;
+ion-label {
+ color: var(--labelColor) !important;
}
-.tipsPadding{
+.tipsPadding {
padding: 0px 10px;
}
-.profileDiv{
+
+.profileDiv {
margin: 5px auto !important;
}
-.profileDiv-ar{
+
+.profileDiv-ar {
margin: 16px auto !important;
}
-.full-modal{
- --height:100%;
- --width:100%;
+
+.full-modal {
+ --height: 100%;
+ --width: 100%;
}
-.profileImg{
+
+.profileImg {
width: 160px;
height: 160px;
display: inline-flex;
overflow: hidden;
background: transparent;
- -webkit-border-radius:50% !important;
- -moz-border-radius:50% !important;
+ -webkit-border-radius: 50% !important;
+ -moz-border-radius: 50% !important;
border-radius: 20% !important;
position: relative;
top: 7px;
- // margin:0 auto 40px;
- img{
- -webkit-border-radius:50% !important;
- -moz-border-radius:50% !important;
+
+ // margin:0 auto 40px;
+ img {
+ -webkit-border-radius: 50% !important;
+ -moz-border-radius: 50% !important;
border-radius: 50% !important;
width: 90px;
height: 90px;
}
+
//box-shadow: 0px 0px 0px 10px #8c8c8c;
}
-.loading-gif{
+
+.loading-gif {
background: transparent !important;
- width:100px;
+ width: 100px;
height: 100px;
}
-#custom-progress-loader .container{
+
+#custom-progress-loader .container {
background: transparent !important;
box-shadow: none;
- -webkit-box-shadow:none;
+ -webkit-box-shadow: none;
-moz-box-shadow: none;
width: 150px;
}
/***********change header color***************/
-.headerBtn{
+.headerBtn {
background-color: transparent;
}
-.headerImg{
+
+.headerImg {
width: 36px;
}
-.header-toolbar{
+
+.header-toolbar {
--background: linear-gradient(45deg, #3ac1f1 0%, #19a163 36%, #19a163 59%, #1a586d 100%);
}
-.btnBack{
+
+.btnBack {
background: transparent !important;
}
/***************/
-.attachImg{
+.attachImg {
max-width: 30px;
width: 30px;
}
+
img.attachImg {
max-width: 30px;
width: 30px;
}
-.attachImgBtn{
+
+.attachImgBtn {
background-color: transparent;
}
-.toolbar-title,.toolbar-title-md,.toolbar-title-ios{
- color:(--light);
+
+.toolbar-title,
+.toolbar-title-md,
+.toolbar-title-ios {
+ color: (--light);
font-size: 18px;
}
+
ion-header ion-icon.back-button-icon.icon {
color: (--light);
font-size: 25px;
}
-ion-header ion-icon.icon.icon-ios.ion-ios-back{
+
+ion-header ion-icon.icon.icon-ios.ion-ios-back {
font-size: 25px;
}
+
ion-header ion-icon.icon.icon-md.ion-md-back,
ion-header ion-icon.icon.icon-md.ion-md-search,
-ion-header ion-icon.icon.icon-ios.ion-ios-search{
+ion-header ion-icon.icon.icon-ios.ion-ios-search {
color: (--light);
font-size: 18px;
}
-button.disable-hover.item-button.button.button-md.button-clear.button-clear-md ,
-button.disable-hover.item-button.button.button-ios.button-clear.button-clear-ios{
+button.disable-hover.item-button.button.button-md.button-clear.button-clear-md,
+button.disable-hover.item-button.button.button-ios.button-clear.button-clear-ios {
background: transparent;
font-size: 16px;
- color:(--darkgray);
+ color: (--darkgray);
}
+
button.item-button.button.button-md.button-clear.button-clear-md,
button.item-button.button.button-ios.button-clear.button-clear-ios {
background: transparent;
font-size: 16px;
- color:(--darkgray);
+ color: (--darkgray);
}
+
ion-header ion-icon.icon.icon-md.ion-md-close,
-ion-header ion-icon.icon.icon-ios.ion-ios-close{
+ion-header ion-icon.icon.icon-ios.ion-ios-close {
color: (--light);
}
+
ion-header ion-icon.icon.icon-md.ion-md-add,
-ion-header ion-icon.icon.icon-ios.ion-ios-add{
+ion-header ion-icon.icon.icon-ios.ion-ios-add {
color: (--light);
}
- ion-icon.icon.icon-md.ion-md-search,
- ion-icon.icon.icon-ios.ion-ios-search{
+
+ion-icon.icon.icon-md.ion-md-search,
+ion-icon.icon.icon-ios.ion-ios-search {
color: (--darkgray);
}
+
.toolbar-background {
- background: var(--primary);
- background: -moz-linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%,var(--secondary) 59%, var(--customnavy) 100%);
- background: -webkit-linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%,var(--secondary) 59%, var(--customnavy) 100%);
- background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%,var(--secondary) 59%, var(--customnavy) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--primary)', endColorstr='--var(customnavy)',GradientType=1 );
+ background: var(--primary);
+ background: -moz-linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%, var(--secondary) 59%, var(--customnavy) 100%);
+ background: -webkit-linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%, var(--secondary) 59%, var(--customnavy) 100%);
+ background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 36%, var(--secondary) 59%, var(--customnavy) 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary)', endColorstr='--var(customnavy)', GradientType=1);
}
+
/***************button bckground***************/
-a{
- color:var(--primary);
-}
-.button,.button-md, button-ios{
- background:var(--customnavy);
- white-space: normal;
-// background: $primary;
-// background: -moz-linear-gradient(45deg, $primary 0%, $secondary 36%, $secondary 59%, $customnavy 100%);
-// background: -webkit-linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
-// background: linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
-// filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary', endColorstr='$customnavy',GradientType=1 );
-color:var(--light);
-text-transform: capitalize;
-// min-width: 200px;
-min-height: 45px;
-}
-.iconButton{
+a {
+ color: var(--primary);
+}
+
+.button,
+.button-md,
+button-ios {
+ background: var(--customnavy);
+ white-space: normal;
+ // background: $primary;
+ // background: -moz-linear-gradient(45deg, $primary 0%, $secondary 36%, $secondary 59%, $customnavy 100%);
+ // background: -webkit-linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
+ // background: linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
+ // filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary', endColorstr='$customnavy',GradientType=1 );
+ color: var(--light);
+ text-transform: capitalize;
+ // min-width: 200px;
+ min-height: 45px;
+}
+
+.iconButton {
min-width: auto;
min-height: auto;
}
+
/*********select style************/
ion-item.item.item-block.item-md.item-select.ng-touched,
ion-item.item.item-block.item-ios.item-select.ng-touched,
@@ -196,96 +237,125 @@ ion-item.item.item-block.item-md.item-datetime.ng-touched.input-has-value.item-i
ion-item.item.item-block.item-ios.item-datetime.ng-touched.input-has-value.item-input-has-value {
border-bottom: 0px;
}
+
/********center element****************/
-.centerDiv{
- margin:auto;
+.centerDiv {
+ margin: auto;
text-align: center;
display: block;
+
// .button,.button-md, button-ios{
// min-width: 200px;
// }
- .iconButton{
+ .iconButton {
min-width: auto;
min-height: auto;
}
}
+
/***********item icon************/
- .item-icon{
- width:25px;
- height:25px;
+.item-icon {
+ width: 25px;
+ height: 25px;
}
-[dir="ltr"] .item-icon{
+
+[dir="ltr"] .item-icon {
margin: 9px 8px 9px 0;
}
-[dir="rtl"] .item-icon{
+
+[dir="rtl"] .item-icon {
margin: 6px 0px 9px 9px;
}
+
/**********text format**********/
-p.text-caps{
+p.text-caps {
text-transform: uppercase;
}
-.boldTxt,p.boldTxt,.boldTxt>label {
- :root[dir="ltr"]{
+
+.boldTxt,
+p.boldTxt,
+.boldTxt>label {
+ :root[dir="ltr"] {
font-family: var(--fontFamilyBoldEN) !important;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR) !important;
font-weight: bold;
}
}
-.boldTxtNav,p.boldTxtNav,.boldTxtNav>label {
+
+.boldTxtNav,
+p.boldTxtNav,
+.boldTxtNav>label {
color: var(--dark) !important;
- :root[dir="ltr"]{
+
+ :root[dir="ltr"] {
font-family: var(--fontFamilyBoldEN) !important;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR) !important;
font-weight: bold;
}
}
-ion-label.boldTxtNav.label.label-md,ion-label.boldTxtNav.label.label-ios{
+
+ion-label.boldTxtNav.label.label-md,
+ion-label.boldTxtNav.label.label-ios {
// font-weight: bold;
- color:var(--dark);
- :root[dir="ltr"]{
+ color: var(--dark);
+
+ :root[dir="ltr"] {
font-family: var(--fontFamilySemiBoldEN) !important;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR) !important;
font-weight: bold;
}
-
+
}
+
/******* label stacked***********/
-.label-md[stacked], .label-ios[stacked] {
-font-size: 16px;
+.label-md[stacked],
+.label-ios[stacked] {
+ font-size: 16px;
}
+
/**********input **************/
input.text-input.text-input-md,
-input.text-input.text-input-ios{
+input.text-input.text-input-ios {
font-size: 16px;
- :root[dir="ltr"]{
- text-align: left;
- }
- :root[dir="rtl"]{
- text-align: right;
- }
+
+ :root[dir="ltr"] {
+ text-align: left;
+ }
+
+ :root[dir="rtl"] {
+ text-align: right;
+ }
}
+
ion-datetime.datetime.datetime-md.ng-valid.ng-dirty.ng-touched,
ion-datetime.datetime.datetime-ios.ng-valid.ng-dirty.ng-touched {
direction: ltr !important;
text-align: left !important;
}
+
/**********background************/
-.gray-bg{
- background-color:var(--gray);
+.gray-bg {
+ background-color: var(--gray);
margin-top: 10px;
}
+
/***************select and alert ************/
-.alert-md .alert-head,.alert-ios .alert-head{
- background-color:var(--grayBG);
+.alert-md .alert-head,
+.alert-ios .alert-head {
+ background-color: var(--grayBG);
color: var(--light);
}
+
/********profile grid************/
// .profile-grid{
// .col{
@@ -293,23 +363,25 @@ ion-datetime.datetime.datetime-ios.ng-valid.ng-dirty.ng-touched {
// }
// }
/**********card**********/
-ion-card ,ion-card-md ,ion-card-ios {
+ion-card,
+ion-card-md,
+ion-card-ios {
box-shadow: black;
- // background-color: #99999938;
- -webkit-border-top-left-radius: 10px !important;
- -webkit-border-top-right-radius: 10px !important;
- -moz-border-radius-topleft: 10px !important;
- -moz-border-radius-topright: 10px !important;
- border-top-left-radius: 10px !important;
- border-top-right-radius: 10px !important;
-
+ // background-color: #99999938;
+ -webkit-border-top-left-radius: 10px !important;
+ -webkit-border-top-right-radius: 10px !important;
+ -moz-border-radius-topleft: 10px !important;
+ -moz-border-radius-topright: 10px !important;
+ border-top-left-radius: 10px !important;
+ border-top-right-radius: 10px !important;
+
}
ion-card-content {
background-color: white;
}
-ion-card-header{
+ion-card-header {
padding: 0px 10px !important;
color: var(--light) !important;
-webkit-border-top-left-radius: 10px;
@@ -319,47 +391,59 @@ ion-card-header{
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background: var(--grayBG);
- .hrTitle{
+
+ .hrTitle {
white-space: normal;
padding: 5px;
padding-top: 12px;
- width:85%;
+ width: 85%;
min-height: 45px;
+
@media screen and (max-width: var(--break-big)) {
width: 80%;
- }
+ }
+
@media screen and (max-width: var(--break-small)) {
width: 74%;
- }
-
- :root[dir="ltr"]{
- float:left;
}
- :root[dir="rtl"]{
- float:right;
+
+ :root[dir="ltr"] {
+ float: left;
}
+
+ :root[dir="rtl"] {
+ float: right;
+ }
+
line-height: 1.2;
}
- .button,.button-md, button-ios{
+
+ .button,
+ .button-md,
+ button-ios {
background: transparent;
box-shadow: none;
- -webkit-box-shadow:none;
+ -webkit-box-shadow: none;
-moz-box-shadow: none;
min-width: auto;
padding: 0px !important;
- margin:0px 5px !important;
- :root[dir="ltr"]{
- float:right;
+ margin: 0px 5px !important;
+
+ :root[dir="ltr"] {
+ float: right;
}
- :root[dir="rtl"]{
- float:left;
+
+ :root[dir="rtl"] {
+ float: left;
}
}
}
-ion-col.colBold,ion-col.colBold>label{
+
+ion-col.colBold,
+ion-col.colBold>label {
// font-weight: bold;
- color:var(--customnavy);
- font-weight:bold;
+ color: var(--customnavy);
+ font-weight: bold;
// :root[dir="ltr"]{
// font-family: var(--fontFamilyBoldEN) !important;
@@ -368,8 +452,9 @@ ion-col.colBold,ion-col.colBold>label{
// font-family: var(--fontFamilyIOSAR) !important;
// font-weight: bold;
// }
- font-size: 15px;
+ font-size: 15px;
}
+
// .boldTxt{
// font-weight: bold;
// }
@@ -402,7 +487,7 @@ ion-col.colBold,ion-col.colBold>label{
.floating-form {
- width:320px;
+ width: 320px;
}
// /**** floating-Lable style start ****/
@@ -545,14 +630,14 @@ ion-col.colBold,ion-col.colBold>label{
/*****************dynamic form*******************/
-.dynamicField{
+.dynamicField {
border-radius: 30px;
- border: 1px solid #a2a5a6!important;
+ border: 1px solid #a2a5a6 !important;
margin-bottom: 20px;
}
-
-.daynamicForm-Label{
+
+.daynamicForm-Label {
font-size: 16px;
// margin-left: 15px;
color: #a2a5a6 !important;
@@ -570,18 +655,20 @@ ion-col.colBold,ion-col.colBold>label{
padding: 5px 0px;
padding-left: 10px !important;
margin: 10px auto;
- :root[dir="ltr"]{
+
+ :root[dir="ltr"] {
font-family: var(--fontFamilySemiBoldEN) !important;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR) !important;
font-weight: bold;
}
}
-
-.ardaynamicForm-Label{
+
+.ardaynamicForm-Label {
font-size: 16px;
// margin-left: 15px;
color: #a2a5a6 !important;
@@ -600,56 +687,58 @@ ion-col.colBold,ion-col.colBold>label{
padding-left: 10px !important;
margin: 10px auto;
margin-right: 12px !important;
- :root[dir="ltr"]{
+
+ :root[dir="ltr"] {
font-family: var(--fontFamilySemiBoldEN) !important;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR) !important;
font-weight: bold;
}
}
-img.flipImg{
- :root[dir="rtl"]{
- -webkit-transform: scaleX(-1);
- transform: scaleX(-1);
+img.flipImg {
+ :root[dir="rtl"] {
+ -webkit-transform: scaleX(-1);
+ transform: scaleX(-1);
}
- }
+}
-.daynamicForm-Input{
+.daynamicForm-Input {
width: 100%;
border: none;
border-bottom: var(--gray) solid 1px;
border-radius: 0px;
// margin-left: 10px;
// text-align: right;
- color: var(--dark);
+ color: var(--dark);
font-size: 15px;
padding: 6px 0px;
}
-.daynamicForm-Button{
- background:var(--customnavy);
+.daynamicForm-Button {
+ background: var(--customnavy);
white-space: normal;
- // background: $primary;
- // background: -moz-linear-gradient(45deg, $primary 0%, $secondary 36%, $secondary 59%, $customnavy 100%);
- // background: -webkit-linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
- // background: linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
- // filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary', endColorstr='$customnavy',GradientType=1 );
- color:var(--light);
- text-transform: capitalize;
- min-width: 200px;
- min-height: 45px;
-
-
+ // background: $primary;
+ // background: -moz-linear-gradient(45deg, $primary 0%, $secondary 36%, $secondary 59%, $customnavy 100%);
+ // background: -webkit-linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
+ // background: linear-gradient(45deg, $primary 0%,$secondary 36%,$secondary 59%,$customnavy 100%);
+ // filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary', endColorstr='$customnavy',GradientType=1 );
+ color: var(--light);
+ text-transform: capitalize;
+ min-width: 200px;
+ min-height: 45px;
+
+
font-weight: 500;
-
+
border: none;
border-radius: 2px;
- -ms-flex: 1;
+ -ms-flex: 1;
flex: 1;
font-size: 14px;
padding: 0 1.1em;
@@ -657,12 +746,13 @@ img.flipImg{
justify-content: center;
}
-.custom-button-element{
+.custom-button-element {
//margin-top: 10px;
margin: 10px auto;
text-align: center;
}
-.daynamicForm-DateTime{
+
+.daynamicForm-DateTime {
color: var(--dark);
font-size: 15px;
border: none;
@@ -678,11 +768,12 @@ img.flipImg{
-moz-appearance: none;
text-indent: 1px;
box-shadow: none;
- -webkit-box-shadow:none;
+ -webkit-box-shadow: none;
-moz-box-shadow: none;
margin-bottom: 8px;
}
-.daynamicForm-DateTime:after{
+
+.daynamicForm-DateTime:after {
width: 0;
height: 0;
border-left: 6px solid transparent;
@@ -691,18 +782,22 @@ img.flipImg{
border-radius: 0px;
position: absolute;
top: 40%;
- :root[dir="ltr"]{
- right: 5px;
+
+ :root[dir="ltr"] {
+ right: 5px;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
left: 5px;
- }
+ }
+
content: "";
z-index: 98;
margin-left: 31px;
-
+
}
-.daynamicForm-Select{
+
+.daynamicForm-Select {
color: var(--dark);
font-size: 15px;
// background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 96% 0;
@@ -727,30 +822,31 @@ img.flipImg{
text-indent: 1px;
// text-overflow: '';
box-shadow: none;
- -webkit-box-shadow:none;
+ -webkit-box-shadow: none;
-moz-box-shadow: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
- :root[dir="ltr"]{
- background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%), linear-gradient(to right, #ffffff, #ffffff);
- background-position: calc(100% - 14px) calc(1em + 2px), calc(100% - 8px) calc(1em + 2px), 100% 0;
- background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
- background-repeat: no-repeat;
- padding-right: 20px;
+ :root[dir="ltr"] {
+ background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%), linear-gradient(to right, #ffffff, #ffffff);
+ background-position: calc(100% - 14px) calc(1em + 2px), calc(100% - 8px) calc(1em + 2px), 100% 0;
+ background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
+ background-repeat: no-repeat;
+ padding-right: 20px;
}
- :root[dir="rtl"]{
- background-image: linear-gradient(-135deg, #999 50%, transparent 50%),linear-gradient(-45deg, transparent 50%, #999 50%), linear-gradient(to right, #ffffff, #ffffff);
+
+ :root[dir="rtl"] {
+ background-image: linear-gradient(-135deg, #999 50%, transparent 50%), linear-gradient(-45deg, transparent 50%, #999 50%), linear-gradient(to right, #ffffff, #ffffff);
background-position: calc(1em - 10px) calc(100% - 8px), calc(1em - 4px) calc(100% - 8px), 0 100%;
background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
background-repeat: no-repeat;
padding-left: 20px;
- }
+ }
}
-.ardaynamicForm-Select{
+.ardaynamicForm-Select {
color: var(--dark);
font-size: 15px;
// background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 96% 0;
@@ -774,30 +870,31 @@ img.flipImg{
text-indent: 1px;
// text-overflow: '';
box-shadow: none;
- -webkit-box-shadow:none;
+ -webkit-box-shadow: none;
-moz-box-shadow: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
- :root[dir="ltr"]{
- background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%), linear-gradient(to right, #ffffff, #ffffff);
- background-position: calc(100% - 14px) calc(1em + 2px), calc(100% - 8px) calc(1em + 2px), 100% 0;
- background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
- background-repeat: no-repeat;
- padding-right: 20px;
+ :root[dir="ltr"] {
+ background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%), linear-gradient(to right, #ffffff, #ffffff);
+ background-position: calc(100% - 14px) calc(1em + 2px), calc(100% - 8px) calc(1em + 2px), 100% 0;
+ background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
+ background-repeat: no-repeat;
+ padding-right: 20px;
}
- :root[dir="rtl"]{
- background-image: linear-gradient(-135deg, #999 50%, transparent 50%),linear-gradient(-45deg, transparent 50%, #999 50%), linear-gradient(to right, #ffffff, #ffffff);
+
+ :root[dir="rtl"] {
+ background-image: linear-gradient(-135deg, #999 50%, transparent 50%), linear-gradient(-45deg, transparent 50%, #999 50%), linear-gradient(to right, #ffffff, #ffffff);
background-position: calc(1em - 10px) calc(100% - 8px), calc(1em - 4px) calc(100% - 8px), 0 100%;
background-size: 6px 6px, 6px 6px, 2.9em 2.9em;
background-repeat: no-repeat;
padding-left: 20px;
- }
+ }
}
-.daynamicForm-Select:after{
+.daynamicForm-Select:after {
width: 0;
height: 0;
border-radius: 0px;
@@ -806,61 +903,74 @@ img.flipImg{
border-top: 6px solid #999;
position: absolute;
top: 40%;
- :root[dir="ltr"]{
- right: 5px;
+
+ :root[dir="ltr"] {
+ right: 5px;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
left: 5px;
- }
-
+ }
+
z-index: 98;
-
+
}
-.requiredClass::before{
- content:"* ";
+
+.requiredClass::before {
+ content: "* ";
}
-.requiredClassElm{
- border-bottom:2px solid var(--danger);
+
+.requiredClassElm {
+ border-bottom: 2px solid var(--danger);
}
-textarea:disabled, input:disabled ,.daynamicForm-Select:disabled, .daynamicForm-DateTime:disabled{
+textarea:disabled,
+input:disabled,
+.daynamicForm-Select:disabled,
+.daynamicForm-DateTime:disabled {
background: rgba(204, 204, 204, 0.11);
}
-div.daynamicForm-DateTime.disabled{
- background: rgba(204, 204, 204, 0.11);
+
+div.daynamicForm-DateTime.disabled {
+ background: rgba(204, 204, 204, 0.11);
}
-.iconButton{
+.iconButton {
background: transparent;
- -webkit-box-shadow:none;
--moz-box-shadow: none;
-box-shadow: none;
-}
-.imgSize{
-width: 22px !important;
-height: 22px;
--webkit-box-shadow:none;
--moz-box-shadow: none;
-box-shadow: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+.imgSize {
+ width: 22px !important;
+ height: 22px;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
}
+
/************footer****************/
ion-footer {
-padding:15px 0px;
-background-color: var(--light) !important;
-border: 0px !important;
-box-shadow: none !important;
--webkit-box-shadow:none;
--moz-box-shadow: none;
-}
-.footer-md::before,.footer-ios::before{
+ padding: 15px 0px;
background-color: var(--light) !important;
- background-image:none;
border: 0px !important;
box-shadow: none !important;
- -webkit-box-shadow:none;
--moz-box-shadow: none;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
}
+
+.footer-md::before,
+.footer-ios::before {
+ background-color: var(--light) !important;
+ background-image: none;
+ border: 0px !important;
+ box-shadow: none !important;
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+}
+
/*************progress bar****************/
.progcontainer {
margin: auto;
@@ -868,31 +978,39 @@ box-shadow: none !important;
width: 100%;
min-height: 100px;
}
+
.cusprogressbar {
counter-reset: step;
padding: 0px;
}
+
.cusprogressbar li {
list-style-type: none;
width: 33.333%;
- :root[dir="ltr"]{
+
+ :root[dir="ltr"] {
float: left;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
float: right;
}
+
font-size: 12px;
position: relative;
text-align: center;
color: var(--darkgray);
- :root[dir="ltr"]{
- font-family:var(--fontFamilySemiBoldEN);
+
+ :root[dir="ltr"] {
+ font-family: var(--fontFamilySemiBoldEN);
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
font-family: var(--fontFamilyIOSAR);
font-weight: bold;
}
}
+
.cusprogressbar li:before {
width: 40px;
height: 40px;
@@ -907,6 +1025,7 @@ box-shadow: none !important;
margin: 0 auto 10px auto;
border-radius: 50%;
}
+
.cusprogressbar li:after {
width: 100%;
height: 2px;
@@ -914,30 +1033,37 @@ box-shadow: none !important;
position: absolute;
background-color: var(--cusgray);
top: 20px;
- :root[dir="ltr"]{
+
+ :root[dir="ltr"] {
left: -50%;
}
- :root[dir="rtl"]{
+
+ :root[dir="rtl"] {
right: -50%;
}
-
+
z-index: -1;
}
+
.cusprogressbar li:first-child:after {
content: none;
}
+
.cusprogressbar li.active {
color: var(--custgreen);
}
+
.cusprogressbar li.active:before {
background-color: var(--custgreen);
}
+
//.cusprogressbar li.active + li:after {
- // background-color: #55b776;
- //color: $custgreen;
+// background-color: #55b776;
+//color: $custgreen;
//}
/**************badge **********************/
-.badge-md,.badge-ios {
+.badge-md,
+.badge-ios {
color: #fff;
background-color: #327eff;
background: red;
@@ -946,37 +1072,46 @@ box-shadow: none !important;
min-height: 30px;
line-height: 2;
}
+
/**********no data div***********/
-div.no-dataDiv{
-.row {
- border-bottom: 1px solid;
- border-color:var(--cusgray);
- }
-h4 {
-font-size: 140%;
-text-align: center;
-color: #888888;
-
-}
-.empty-data {
- font-size: 10.2em;
- display: block;
- margin: .2em auto 0;
- color: var(--custgreen);
- }
+div.no-dataDiv {
+ .row {
+ border-bottom: 1px solid;
+ border-color: var(--cusgray);
+ }
+
+ h4 {
+ font-size: 140%;
+ text-align: center;
+ color: #888888;
+
+ }
+
+ .empty-data {
+ font-size: 10.2em;
+ display: block;
+ margin: .2em auto 0;
+ color: var(--custgreen);
+ }
}
-.toast-md .toast-message,.toast-ios .toast-message {
+.toast-md .toast-message,
+.toast-ios .toast-message {
background-color: var(--secondary);
}
+
/*************picker style*********************/
- .picker-md .picker-opt,.picker-ios .picker-opt{
- font-size: 18px;
- }
- .picker-md .picker-col,.picker-ios .picker-col {
- padding: 0px 2px !important;
+.picker-md .picker-opt,
+.picker-ios .picker-opt {
+ font-size: 18px;
}
-.progress-loading-page{
+
+.picker-md .picker-col,
+.picker-ios .picker-col {
+ padding: 0px 2px !important;
+}
+
+.progress-loading-page {
position: fixed;
height: 100%;
z-index: 1000000;
@@ -988,6 +1123,7 @@ color: #888888;
bottom: 0;
display: flex;
}
+
.progress-loading-page .container {
background: transparent !important;
box-shadow: none;
@@ -995,14 +1131,18 @@ color: #888888;
-moz-box-shadow: none;
width: 100px !important;
margin: auto;
-
+
}
+
.progress-loading-page .loading-gif {
margin-top: 0.42cm;
- width:100%;
-
+ width: 100%;
+
+}
+
+.centerDiv .button {
+ width: 200px;
}
-.centerDiv .button{width:200px;}
.note-modal {
// width: 90%;
@@ -1018,16 +1158,16 @@ color: #888888;
--height: 12cm !important;
// --width: 80% !important;
--border-radius: 0.4cm;
-
+
}
.replaceRoll-modal {
-
+
padding: 30% 1% !important;
--height: 15cm !important;
--width: 100% !important;
--border-radius: 0.4cm;
-
+
}
.slides-gray-bullets {
@@ -1041,26 +1181,26 @@ color: #888888;
.slides-gray-bullets .swiper-pagination {
top: 0.2cm !important;
-
+
}
-.swiper-container-horizontal>.swiper-pagination-bullets {
- width: initial;
- top: 34%;
- right: 0;
- bottom: inherit;
+.swiper-container-horizontal>.swiper-pagination-bullets {
+ width: initial;
+ top: 34%;
+ right: 0;
+ bottom: inherit;
// left: inherit;
}
-.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
- margin: 5px;
+.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
+ margin: 5px;
width: 12px;
height: 12px;
}
// .skipbutton,.button-md, button-ios{
-.skipbutton{
+.skipbutton {
width: 100px;
--background: var(--orange);
white-space: normal;
@@ -1071,46 +1211,47 @@ color: #888888;
float: right;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
-
+
--background-focused: none;
--background-hover: none;
- }
-
- .cancelBtn {
- background:var(--darkblue) !important;
- white-space: normal !important;
- color:var(--light) !important;
- text-transform: capitalize !important;
- // min-width: 200px;
- min-height: 45px !important;
- border-radius: 5px !important;
- width:125px !important;
+}
+
+.cancelBtn {
+ background: var(--darkblue) !important;
+ white-space: normal !important;
+ color: var(--light) !important;
+ text-transform: capitalize !important;
+ // min-width: 200px;
+ min-height: 45px !important;
+ border-radius: 5px !important;
+ width: 125px !important;
min-width: 5px !important;
width: 10px !important;
margin: 8px !important;
- --background:transparent;
+ --background: transparent;
+
+}
- }
.confirmBtn {
- background:var(--newgreen) !important;
- white-space: normal !important;
- color:var(--light) !important;
- text-transform: capitalize !important;
- // min-width: 200px;
- min-height: 45px !important;
- border-radius: 5px !important;
- width:125px !important;
+ background: var(--newgreen) !important;
+ white-space: normal !important;
+ color: var(--light) !important;
+ text-transform: capitalize !important;
+ // min-width: 200px;
+ min-height: 45px !important;
+ border-radius: 5px !important;
+ width: 125px !important;
min-width: 5px !important;
width: 10px !important;
margin: 8px !important;
- --background:transparent;
- }
+ --background: transparent;
+}
-.checkOutOkBtn{
- margin-left: 50px !important;
- margin-right: 55px !important;
+.checkOutOkBtn {
+ margin-left: 50px !important;
+ margin-right: 55px !important;
margin-top: 10px !important;
- margin-bottom: 10px !important;
+ margin-bottom: 10px !important;
border-radius: 5px !important;
height: 40px !important;
min-height: 40px !important;
@@ -1126,11 +1267,11 @@ color: #888888;
}
-.checkOutCancelBtn{
- margin-left: 50px !important;
- margin-right: 55px !important;
- margin-top: 10px !important;
- margin-bottom: 10px !important;
+.checkOutCancelBtn {
+ margin-left: 50px !important;
+ margin-right: 55px !important;
+ margin-top: 10px !important;
+ margin-bottom: 10px !important;
border-radius: 5px !important;
height: 40px !important;
min-height: 40px !important;
@@ -1145,7 +1286,7 @@ color: #888888;
--background: var(--darkblue) !important;
}
- .buttonClassWhite {
+.buttonClassWhite {
border-radius: 10px !important;
width: 95% !important;
height: 3.7cm !important;
@@ -1170,9 +1311,9 @@ color: #888888;
}
.logo {
-max-width:150%;
-width:150%;
-border:0px
+ max-width: 150%;
+ width: 150%;
+ border: 0px
}
.logoHeader {
@@ -1180,7 +1321,8 @@ border:0px
width: 130%;
border: 0px;
}
-.headerTxt{
+
+.headerTxt {
font-size: 20px;
font-weight: bold;
}
@@ -1189,21 +1331,22 @@ border:0px
.login-input {
border: none;
}
-.item-input-login{
+
+.item-input-login {
--min-height: 1.0cm !important;
--border-radius: 12px;
--ion-color-base: white !important;
// --background: color: var(--darkgray) !important;
// background: #7f8c8d !important;
- border-radius: 33px;
- --border: solid #9999992b !important;
- border: solid #9999992b !important;
- margin-bottom :12px;
- margin-left: 12px;
- margin-right: 12px;
+ border-radius: 33px;
+ --border: solid #9999992b !important;
+ border: solid #9999992b !important;
+ margin-bottom: 12px;
+ margin-left: 12px;
+ margin-right: 12px;
}
-.button-login{
+.button-login {
--background: var(--newgreen) !important;
background: var(--newgreen) !important;
@@ -1260,7 +1403,7 @@ border:0px
padding: 30% 10% !important;
--height: 12cm !important;
--border-radius: 0.4cm;
-
+
}
// .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
@@ -1280,13 +1423,16 @@ border:0px
--width: 88% !important;
--border-radius: 0.6cm;
}
+
.slideFullWidth {
- margin-left:-15px;
- margin-right:-15px;
+ margin-left: -10px;
+ margin-right: -1-px;
}
+
.slideFullWidth .swiper-container .swiper-wrapper .swiper-slide:first-child {
- margin-left:15px;
+ margin-left: 15px;
}
+
.alert-button-group.sc-ion-alert-md,
.alert-button.sc-ion-alert-ios {
text-align: center;
@@ -1306,43 +1452,50 @@ border:0px
.alert-button-inner.sc-ion-alert-md {
justify-content: center !important;
}
+
.replaceRoll-modal {
-
+
padding: 30% 1% !important;
--height: 15cm !important;
--width: 100% !important;
--border-radius: 0.4cm;
-
+
}
+
.replaceRoll-modal2 {
-
+
padding: 5% 1% !important;
--height: 100% !important;
--width: 100% !important;
--border-radius: 0.4cm;
-
+
}
+
.header-md:after {
height: 0px !important;
display: none !important;
}
+
.attendance-home .header-toolbar-new {
--background: #094773 !important;
}
+
.header-toolbar-new {
--background: #269DB8;
}
-.boldText{
+.boldText {
color: var(--dark) !important;
font-weight: bold;
font-size: 20px;
}
-.boldP{
-
+
+.boldP {
+
font-size: 20px;
}
+
// .select-text{
// --margin-left: -10px;
// margin-left:0;
@@ -1363,7 +1516,10 @@ border:0px
// }
// }
-.monthview-primary-with-event, .absent, .present, .dayoff {
+.monthview-primary-with-event,
+.absent,
+.present,
+.dayoff {
background-color: #fff !important;
z-index: 1;
@@ -1398,25 +1554,26 @@ border:0px
.monthview-datetable {
@media screen and (min-width: 300px) and (max-width:360px) {
- *{
+ * {
font-size: 9px !important;
font-weight: normal !important;
}
}
-
+
@media screen and (min-width: 361px) {
- *{
+ * {
font-size: 11px !important;
font-weight: normal !important;
}
}
thead th {
- border:none !important;
- color:#888;
+ border: none !important;
+ color: #888;
}
- tbody td{
- border:none !important;
+
+ tbody td {
+ border: none !important;
line-height: 40px !important;
background: none !important;
padding: 0 !important;
@@ -1428,34 +1585,38 @@ border:0px
&.monthview-selected {
color: black;
}
-
+
&.monthview-selected.present,
&.present {
- color:#fff !important;
+ color: #fff !important;
+
&:before {
background-color: #269DB8 !important;
}
}
-
+
&.monthview-selected.absent,
&.absent {
- color:#fff !important;
+ color: #fff !important;
+
&:before {
- background-color:#292F42 !important;
+ background-color: #292F42 !important;
}
}
&.monthview-selected.dayoff,
&.dayoff {
- color:#555 !important;
+ color: #555 !important;
+
&:before {
- background-color:#e5e5e5 !important;
+ background-color: #e5e5e5 !important;
}
}
-
+
&.monthview-selected.scheduleDay,
&.scheduleDay {
color: #000 !important;
+
&:before {
background-color: #fff !important;
border: 1px solid #ccc !important;
@@ -1474,9 +1635,10 @@ border:0px
}
}
-.table-bordered{
- border:none !important;
+.table-bordered {
+ border: none !important;
}
+
// .monthview-primary-with-event::after, .absent::after, .present::after, .dayoff::after {
// content: " ";
// width: 80%;
@@ -1520,7 +1682,7 @@ table.monthview-datetable th small {
}
-.modal-wrapper{
+.modal-wrapper {
border-radius: 20px !important;
}
@@ -1530,123 +1692,155 @@ table.monthview-datetable th small {
}
// .replaceRoll-modal {
-
+
// padding: 30% 1% !important;
// --height: 15cm !important;
// --width: 100% !important;
// --border-radius: 0.4cm;
-
+
// }
-.calendar-modal .swiper-container-horizontal > .swiper-pagination-bullets{
+.calendar-modal .swiper-container-horizontal>.swiper-pagination-bullets {
top: auto;
bottom: -8px;
+
.swiper-pagination-bullet-active {
background: #269DB8;
}
}
.alert-wrapper {
- min-width: 80% !important;//what ever you like
- }
+ min-width: 80% !important; //what ever you like
+}
- .disable-button-opacity {
- opacity: .2;
- }
+.disable-button-opacity {
+ opacity: .2;
+}
- .digital-id-modal-css .modal-wrapper {
+.digital-id-modal-css .modal-wrapper {
height: 90%;
width: 90%;
top: 3%;
- position: absolute;
- display: block;
- }
- .business-card-modal-css .modal-wrapper{
+ position: absolute;
+ display: block;
+}
+
+.business-card-modal-css .modal-wrapper {
height: 500px;
width: 300px;
top: 50%;
- position: absolute;
+ position: absolute;
display: block;
margin-top: -250px;
- }
+}
- .app-update-modal-css .modal-wrapper{
- border-radius: 0px !important;
- }
- .fav-employee-details{
+.app-update-modal-css .modal-wrapper {
+ border-radius: 0px !important;
+}
+
+.fav-employee-details {
font-size: 20px;
position: absolute;
bottom: 85px;
font-weight: bold;
color: black !important;
padding: 5px;
- }
- .fav-profileImageDiv{
+}
+
+.fav-profileImageDiv {
width: 100%;
text-align: start;
}
+
ion-segment-button {
--indicator-color: transparent !important;
--indicator-color-checked: transparent !important;
- }
- #surveyRatingNew ion-button{
+}
+
+#surveyRatingNew ion-button {
background: #fff !important;
- }
- #surveyRatingNew ion-buttons{
- border-radius: 12px;
- background: #fff;
- width: 75%;
- margin: auto;
- }
- .filter-modal .modal-wrapper{
+}
+
+#surveyRatingNew ion-buttons {
+ border-radius: 12px;
+ background: #fff;
+ width: 75%;
+ margin: auto;
+}
+
+.filter-modal .modal-wrapper {
border-radius: 0px !important;
- }
- .offers-discount-card ion-card-content div{
+}
+
+.offers-discount-card ion-card-content div {
font-size: 11px !important;
- }
+}
- .searchbar-input-container.sc-ion-searchbar-ios{
+.searchbar-input-container.sc-ion-searchbar-ios {
height: 48px;
background: #FFFFFF 0% 0% no-repeat padding-box;
border: 10px solid white;
border-radius: 50px;
width: 345px;
left: 3px;
- }
+}
- .searchbar-input.sc-ion-searchbar-md {
- border-radius: 25px;
- }
+.searchbar-input.sc-ion-searchbar-md {
+ border-radius: 25px;
+}
- .top svg {
+.top svg {
height: 30px !important;
- }
+}
+
-
.top-filter svg {
margin-top: 15px !important;
}
-.disabledField{
+.disabledField {
opacity: .5;
pointer-events: none;
}
-.filterClass input{
+.filterClass input {
box-shadow: none !important;
-webkit-box-shadow: none !important;
- }
- .select-alert .alert-radio-label{
-
- font-size: 12px !important;
- }
- .modal-image-viewer-landscape {
+}
+
+.select-alert .alert-radio-label {
+
+ font-size: 12px !important;
+}
+
+.modal-image-viewer-landscape {
--height: 35% !important;
--width: 90% !important;
--border-radius: 0.4cm;
- }
- .modal-image-viewer-portrait {
+}
+
+.modal-image-viewer-portrait {
--height: 45% !important;
--width: 60% !important;
--border-radius: 0.4cm;
- }
\ No newline at end of file
+}
+
+.menu-label {
+ margin-left: 5px;
+}
+
+ion-app[dir="rtl"] {
+
+ .slideFullWidth {
+ margin-right: 0px !important;
+ }
+
+ .menu-label {
+ margin-right: 10px !important;
+ }
+
+ .slideFullWidth .swiper-slide {
+ margin-right: 10px !important;
+ }
+
+}
\ No newline at end of file