Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add filters and search to Agenda layout (and fixes pan-scroll glitches) #299

Merged
merged 14 commits into from
Jan 30, 2020
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"eqeqeq": [2, "smart"],
"func-names": [1, "as-needed"],
"max-depth": [1, 3],
"max-len": [1, 80],
"max-len": [1, 100],
"max-statements": [1, 15],
"new-cap": 1,
"no-extend-native": 2,
Expand Down
12 changes: 9 additions & 3 deletions css/build.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
bottom: calc(15px + 34px); /* For Fliplet Studio */
}

.fl-menu-circle-right .dynamic-list-add-item {
right: 75px;
}

.fl-with-bottom-menu .dynamic-list-add-item {
bottom: 80px;
bottom: calc(80px + env(safe-area-inset-bottom));
Expand All @@ -47,12 +51,14 @@
bottom: calc(80px + 34px); /* For Fliplet Studio */
}

.fl-with-bottom-menu.fl-menu-circle-left .dynamic-list-add-item {
.fl-with-bottom-menu.fl-menu-circle-left .dynamic-list-add-item,
.fl-with-bottom-menu.fl-menu-circle-right .dynamic-list-add-item {
bottom: 15px;
bottom: calc(15px + env(safe-area-inset-bottom));
}

[data-has-notch].platform-web .fl-with-bottom-menu.fl-menu-circle-left .dynamic-list-add-item {
[data-has-notch].platform-web .fl-with-bottom-menu.fl-menu-circle-left .dynamic-list-add-item,
[data-has-notch].platform-web .fl-with-bottom-menu.fl-menu-circle-right .dynamic-list-add-item {
bottom: calc(15px + 34px); /* For Fliplet Studio */
}

Expand Down Expand Up @@ -141,7 +147,7 @@
}

/* Safari layout */
@media not all and (min-resolution:.001dpcm) {
@media not all and (min-resolution:.001dpcm) {
@media {
[data-widget-package="com.fliplet.dynamic-lists"] .close-icon .fa-times-thin {
padding-top: 1px;
Expand Down
Loading