2020-02-16 18:30:00 +00:00
|
|
|
.ft-input-component {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ft-input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
outline: none;
|
|
|
|
width: 100%;
|
2020-06-04 01:17:48 +00:00
|
|
|
padding: 1rem;
|
2020-02-16 18:30:00 +00:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
margin-bottom: 10px;
|
2020-05-31 14:03:03 +00:00
|
|
|
font-size: 16px;
|
2020-02-16 18:30:00 +00:00
|
|
|
height: 45px;
|
2020-03-24 14:33:53 +00:00
|
|
|
color: var(--secondary-text-color);
|
2020-06-04 01:17:13 +00:00
|
|
|
border-radius: 5px;
|
2020-06-04 01:15:29 +00:00
|
|
|
background-color: var(--search-bar-color);
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.ft-input-component ::-webkit-input-placeholder {
|
2020-03-24 14:33:53 +00:00
|
|
|
color: var(--tertiary-text-color);
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 02:42:29 +00:00
|
|
|
.forceTextColor .ft-input {
|
2020-09-16 02:07:54 +00:00
|
|
|
color: #EEEEEE;
|
2020-06-04 01:15:29 +00:00
|
|
|
background-color: var(--primary-input-color);
|
2020-03-01 03:37:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 01:18:31 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2020-06-02 02:42:29 +00:00
|
|
|
.forceTextColor ::-webkit-input-placeholder {
|
2020-09-16 02:07:54 +00:00
|
|
|
color: #EEEEEE;
|
2020-03-01 03:37:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.inputAction {
|
|
|
|
position: absolute;
|
|
|
|
padding: 10px;
|
2020-06-02 02:42:29 +00:00
|
|
|
top: 5px;
|
2020-02-16 18:30:00 +00:00
|
|
|
right: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 200px 200px 200px 200px;
|
|
|
|
color: var(--primary-text-color);
|
|
|
|
}
|
|
|
|
|
2020-06-02 02:42:29 +00:00
|
|
|
.search ::-webkit-calendar-picker-indicator {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-03-01 03:37:02 +00:00
|
|
|
.search .inputAction {
|
2020-06-02 02:42:29 +00:00
|
|
|
top: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.forceTextColor .inputAction {
|
2020-09-16 02:07:54 +00:00
|
|
|
color: #EEEEEE;
|
2020-03-01 03:37:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.inputAction:hover {
|
|
|
|
background-color: var(--side-nav-hover-color);
|
|
|
|
-moz-transition: background 0.2s ease-in;
|
|
|
|
-o-transition: background 0.2s ease-in;
|
|
|
|
transition: background 0.2s ease-in;
|
|
|
|
}
|
|
|
|
|
2020-06-02 02:42:29 +00:00
|
|
|
.forceTextColor .inputAction:hover {
|
2020-03-01 03:37:02 +00:00
|
|
|
background-color: var(--primary-color-hover);
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.inputAction:active {
|
2020-03-24 14:33:53 +00:00
|
|
|
background-color: var(--tertiary-text-color);
|
2020-02-16 18:30:00 +00:00
|
|
|
-moz-transition: background 0.2s ease-in;
|
|
|
|
-o-transition: background 0.2s ease-in;
|
|
|
|
transition: background 0.2s ease-in;
|
|
|
|
}
|
2020-03-01 03:37:02 +00:00
|
|
|
|
2020-06-02 02:42:29 +00:00
|
|
|
.forceTextColor .inputAction:active {
|
2020-03-01 03:37:02 +00:00
|
|
|
background-color: var(--primary-color-active);
|
|
|
|
}
|
2020-12-11 18:14:11 +00:00
|
|
|
|
|
|
|
.list {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 0;
|
2021-02-15 15:44:09 +00:00
|
|
|
z-index: 10;
|
2020-12-11 18:14:11 +00:00
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
|
border: 1px #ccc solid;
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list li {
|
|
|
|
display: block;
|
|
|
|
padding: 0px 15px;
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hover {
|
|
|
|
background-color: #ccc;
|
|
|
|
/* color: white; */
|
2021-02-15 15:44:09 +00:00
|
|
|
}
|