diff --git a/src/sass/general.scss b/src/sass/general.scss index 32ecc27..0a3fd7a 100644 --- a/src/sass/general.scss +++ b/src/sass/general.scss @@ -60,6 +60,7 @@ input::-webkit-inner-spin-button { -webkit-animation: flash linear 1s infinite; animation: flash linear 1s infinite; } + @-webkit-keyframes flash { 0% { opacity: 1; @@ -71,6 +72,7 @@ input::-webkit-inner-spin-button { opacity: 1; } } + @keyframes flash { 0% { opacity: 1; @@ -307,6 +309,7 @@ button.clear-input { outline: none; } } + .custom-control-input { &:checked ~ .custom-control-label::before { border: none !important; @@ -336,6 +339,7 @@ button.clear-input { background-color: $primaryTransparency; } } + .disable-selection { user-select: none; -moz-user-select: none; /* Firefox */ @@ -344,12 +348,15 @@ button.clear-input { -webkit-user-select: none; /* Chrome, Safari, and Opera */ -webkit-touch-callout: none; /* Disable Android and iOS callouts*/ } + .foca-text-success { color: $textSuccess !important; } + .foca-text-danger { color: $textDanger !important; } + .cover-spin { width: -webkit-fill-available; height: -webkit-fill-available; @@ -360,6 +367,7 @@ button.clear-input { top: 0; z-index: 9999; } + .fadeIn { opacity: 0; animation: fadeIn 1.8s forwards; @@ -379,7 +387,7 @@ button.clear-input { } } -.bg-gray-gradient { +.bg-gray-gradient { background: linear-gradient(0deg, hsl(0, 0%, 90%),hsl(0, 0%, 70%)); }