Browse Source

removing color code

master
ganga satish kumar 3 years ago
parent
commit
5c4b6939aa
  1. 8
      src/styles/common.scss
  2. 34
      src/styles/form-inputs.scss

8
src/styles/common.scss

@ -139,7 +139,7 @@ label {
} }
.hot-status { .hot-status {
background-color: $clr-red;
background-color: #c92a1c;
color: #ffffff; color: #ffffff;
padding: 2%; padding: 2%;
border-radius: 5px; border-radius: 5px;
@ -151,7 +151,7 @@ label {
} }
.errorMessage { .errorMessage {
color: $clr-red;
color: #c92a1c;
margin: 1%; margin: 1%;
text-align: center; text-align: center;
justify-content: center; justify-content: center;
@ -163,10 +163,10 @@ label {
color: #888888; color: #888888;
} }
.errorBorder { .errorBorder {
border: 1px solid $clr-red !important;
border: 1px solid #c92a1c !important;
} }
.errorTxt { .errorTxt {
color: $clr-red !important;
color: #c92a1c !important;
} }
.dashed { .dashed {
@include marginTRBL(10%, 0%, 0%, 0%); @include marginTRBL(10%, 0%, 0%, 0%);

34
src/styles/form-inputs.scss

@ -1,11 +1,11 @@
input.ng-invalid.ng-touched { input.ng-invalid.ng-touched {
border: 1px solid $clr-red;
border: 1px solid #c92a1c;
} }
.input-errors { .input-errors {
position: relative; position: relative;
top: -2%; top: -2%;
color: $clr-red;
color: #c92a1c;
} }
input[type='text'], input[type='text'],
@ -33,7 +33,7 @@ select {
} }
&::placeholder { &::placeholder {
color: $clr-grey-light-dark;
color: #cecece;
} }
} }
@ -61,8 +61,8 @@ input[type='checkbox'] {
} }
&:disabled{ &:disabled{
&::before { &::before {
background-color: $clr-white-dark;
border: 2px solid $clr-checkbox-disabled-border;
background-color: #f7f7f7;
border: 2px solid #343A3F;
} }
} }
} }
@ -74,13 +74,17 @@ input[type='checkbox'] {
&::before { &::before {
height: 12px; height: 12px;
width: 12px; width: 12px;
border: 1px solid $clr-black-light;
border: 1px solid #343A3F;
} }
} }
} }
.input-wrapper { .input-wrapper {
@include flex-box();
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative; position: relative;
width: 100%; width: 100%;
margin-bottom: 6%; margin-bottom: 6%;
@ -104,7 +108,11 @@ input[type='checkbox'] {
} }
.otp-wrapper { .otp-wrapper {
@include flex-box(row, space-between);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%; width: 100%;
input { input {
@ -121,9 +129,9 @@ select {
} }
button { button {
background: $clr-blue-gradient;
background: linear-gradient(178.84deg, #009cde 0.07%, #003087 95.33%);
border-radius: 10px; border-radius: 10px;
border: 1px solid $clr-blue-light;
border: 1px solid #009cde;
height: 50px; height: 50px;
width: 100%; width: 100%;
font-size: 1rem; font-size: 1rem;
@ -131,7 +139,7 @@ button {
letter-spacing: 1px; letter-spacing: 1px;
color: #ffffff; color: #ffffff;
font-weight: bold; font-weight: bold;
font-family: Blender Pro Bold;
font-family: 'Blender Pro Bold';
&.modify-state { &.modify-state {
background: #ffffff; background: #ffffff;
@ -140,9 +148,9 @@ button {
} }
&:disabled { &:disabled {
background: $clr-grey-button-disable;
background: #cecece;
border: none; border: none;
color: $clr-black-light;
color: #343A3F;
} }
} }

Loading…
Cancel
Save