Skip to content

Commit

Permalink
Implement Journal View.
Browse files Browse the repository at this point in the history
  • Loading branch information
UtkarshSiddhpura committed Jul 22, 2024
1 parent 0dbea3c commit 7625ff7
Show file tree
Hide file tree
Showing 28 changed files with 1,783 additions and 101 deletions.
47 changes: 47 additions & 0 deletions v2/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ input[type="checkbox"], input[type="radio"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: inherit;
}

input[type="checkbox"]:checked {
Expand Down Expand Up @@ -270,6 +271,14 @@ a {
overflow-y: auto;
}

.popup-item-disabled, .popup-title-disabled {
pointer-events: none;
user-select: none;
}
.popup-item-disabled {
opacity: .6;
}

.popup-footer :hover{
background-color: #808080;
}
Expand Down Expand Up @@ -1355,6 +1364,44 @@ a {
left: -10000px;
}

/* journal screen */
.journal-list-container {
position: absolute;
top: 55px;
left: 0;
height: calc(100vh - 110px);
overflow-y: auto;
width: 100%;
background-color: white;
}
.journal-list-container.expanded {
height: calc(100vh - 55px);
}
#journal-listview {
margin-inline: auto;
padding-left: 10px;
padding-right: 40px;
}
#journal-listview .journal-checkbox {
width: 18px;
height: 18px;
}
#journal-listview .journal-star {
padding: 10px .5rem;
}
.journal-footer {
position: absolute;
inset: 0;
top: auto;
justify-content: left;
}
.journal-footer .icon {
margin-right: .7rem !important;
}
#journal-sync {
margin-left: 34% !important;
}

/* neighborhood screen */
.server-error {
display: flex;
Expand Down
75 changes: 75 additions & 0 deletions v2/icons/application-x-csv.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions v2/icons/application-x-doc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions v2/icons/application-x-generic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions v2/icons/application-x-odt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions v2/icons/application-x-pdf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 75 additions & 0 deletions v2/icons/application-x-txt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7625ff7

Please sign in to comment.