Merge pull request #29 from cjfloss/ui-tweaks

Ui tweaks
This commit is contained in:
Preston 2020-06-03 21:40:44 -04:00 committed by GitHub
commit e91ed400cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -8,14 +8,15 @@
-moz-box-sizing: border-box;
outline: none;
width: 100%;
padding: 7px;
padding: 1rem;
border: none;
background: transparent;
margin-bottom: 10px;
font-size: 16px;
height: 45px;
color: var(--secondary-text-color);
border-bottom: 1px solid var(--secondary-text-color);
border-radius: 5px;
background-color: var(--search-bar-color);
}
.ft-input-component ::-webkit-input-placeholder {
@ -24,7 +25,14 @@
.forceTextColor .ft-input {
color: var(--text-with-main-color);
border-bottom: 1px solid var(--text-with-main-color);
background-color: var(--primary-input-color);
}
.forceTextColor .ft-input:focus {
box-shadow: 0 0 1rem 0 var(--primary-input-color);
-moz-transition: box-shadow 0.2s ease-in-out;
-o-transition: box-shadow 0.2s ease-in-out;
transition: box-shadow 0.2s ease-in-out;
}
.forceTextColor ::-webkit-input-placeholder {