-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added basics of an API and frontend for managing type metadata
Type metadata is information about types and fields, as hardcoded in the app.
- Loading branch information
Showing
116 changed files
with
20,110 additions
and
16,611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
@import "lib/docview-portal/css/portal.scss"; | ||
|
||
//Admin | ||
@import "./admin/admin"; | ||
@import "./admin/forms"; | ||
|
||
// Styling common to docview VueJS applications | ||
|
||
#app-error-notice { | ||
position: absolute; | ||
bottom: $margin-sm; | ||
right: $margin-sm; | ||
padding: $margin-xs $margin-sm; | ||
z-index: 100; | ||
|
||
.close { | ||
margin-left: $margin-xs; | ||
margin-top: -3px; | ||
cursor: pointer; | ||
} | ||
} | ||
|
||
.modal { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.modal-alert { | ||
z-index: 1000; | ||
display: flex !important; | ||
|
||
.modal-content { | ||
box-shadow: $box-shadow-lg; | ||
} | ||
} | ||
|
||
.modal-content.resizable { | ||
min-height: 30rem; | ||
} | ||
|
||
.modal-content.resizable > .modal-body { | ||
display: flex; | ||
flex-direction: column; | ||
flex: 1; | ||
} | ||
|
||
.modal-resize-handle { | ||
position: absolute; | ||
right: 0; | ||
bottom: 0; | ||
display: inline; | ||
width: 1rem; | ||
height: 1rem; | ||
cursor: nwse-resize; | ||
} | ||
|
||
.modal-resize-handle:after { | ||
content:''; | ||
display:block; | ||
border-left: 5px solid transparent; | ||
border-right: 5px solid transparent; | ||
border-bottom: 5px solid $ehri-border-gray; | ||
width: 2px; | ||
height: 5px; | ||
position: absolute; | ||
pointer-events: none; | ||
right: -1px; | ||
bottom: 1px; | ||
transform: rotate(135deg); | ||
} | ||
|
||
.options-form { | ||
padding: $margin-md; | ||
input:invalid { | ||
background-color: lighten($danger, 40%); | ||
} | ||
} | ||
|
||
.resizable .options-form { | ||
flex: 1; | ||
} | ||
|
||
.options-form .small.form-text { | ||
color: $text-muted; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@import "apps"; | ||
|
||
$active-table-row: #e7f1ff; | ||
|
||
.app-wrapper { | ||
background-color: $white; | ||
} | ||
|
||
// Make content area scrollable, this prevents | ||
// weird behaviour with modal popups | ||
.app-content { | ||
overflow: auto; | ||
flex-basis: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.