Skip to content

Commit

Permalink
Merge pull request #299 from Fliplet/feat/agenda-filter
Browse files Browse the repository at this point in the history
Add filters and search to Agenda layout
  • Loading branch information
tonytlwu authored Jan 30, 2020
2 parents 9d0bdea + 1f9289c commit 44ef801
Show file tree
Hide file tree
Showing 20 changed files with 2,614 additions and 1,131 deletions.
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

0 comments on commit 44ef801

Please sign in to comment.