web-apps/apps/common/mobile/resources/less/search.less

63 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-01-20 16:18:48 +00:00
@statusBarBorderColor: #cbcbcb;
.navbar {
2021-04-02 21:40:44 +00:00
.subnavbar {
.searchbar {
background-color: var(--f7-navbar-bg-color);
2021-01-20 16:18:48 +00:00
2021-04-02 21:40:44 +00:00
.buttons-row {
align-self: center;
display: flex;
}
.searchbar-bg {
.hairline(bottom, @statusBarBorderColor);
}
2021-01-20 16:18:48 +00:00
}
}
2021-01-28 10:27:18 +00:00
.searchbar-inner {
2021-04-02 21:40:44 +00:00
justify-content: space-between;
2021-04-19 14:50:40 +00:00
padding-left: 22px;
2021-04-02 21:40:44 +00:00
height: 100%;
&__left {
2021-04-19 14:50:40 +00:00
width: 75%;
}
&__right {
2021-04-19 14:50:40 +00:00
margin-left: 10px;
2021-04-02 21:40:44 +00:00
.buttons-row {
2021-04-15 11:07:26 +00:00
display: flex;
2021-04-02 21:40:44 +00:00
justify-content: flex-end;
}
.link-settings {
min-width: 24px;
}
}
2021-04-19 14:50:40 +00:00
.buttons-row-replace {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding-left: 19px;
a {
font-size: 15px;
height: auto;
display: block;
line-height: normal;
padding: 0;
}
a:nth-child(2) {
margin-left: 20px;
}
2021-04-02 21:40:44 +00:00
}
}
2021-04-02 21:40:44 +00:00
.searchbar-expandable {
transition-duration: 0s;
}
2021-04-02 21:40:44 +00:00
.searchbar-expandable.searchbar-enabled {
top: 0;
}
2021-01-20 16:18:48 +00:00
}