-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements to attribute drawer form and function.
* use facs attr * delete sample image * update readme * add version number * improve text styling * don't activate refs * put attr drawer on top * make attr drawer disappear when not in use * improve layout of attr drawer * display multiple els * deal w nodes properly * attribute drawer should appear on the bottom in note pop up * render all attrs * attr field layout * improve definitions * hi control wip * add select field support * fix blank key * switch from dagger to sticky * note windows always on top
- Loading branch information
1 parent
efe9bd7
commit 0bb279e
Showing
17 changed files
with
3,099 additions
and
193 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
.drawerHeader { | ||
padding: 10px; | ||
background: #D8D8D8; | ||
.attributePanel { | ||
border: 1px solid #ddd; | ||
margin-top: 3px; | ||
} | ||
|
||
.drawerBody { | ||
background: #F7F6F6; | ||
padding: 5px; | ||
.attributeSelectField { | ||
min-width: 300px; | ||
} | ||
|
||
.attrTextField { | ||
margin: 5px; | ||
max-width: 80%; | ||
min-width: 300px; | ||
margin: 10px; | ||
} | ||
|
||
.attributeFields { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} |
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,60 @@ | ||
/* language support */ | ||
/* render Arabic, Persian, Ottoman, Hebrew as rtl */ | ||
[lang = "ar"], | ||
[lang = "ota"], | ||
[lang = "fa"], | ||
[lang = "he"], | ||
[lang *="-Arab-AR"]{ | ||
direction:rtl; | ||
text-align:right; | ||
} | ||
/* display latin scripts as ltr */ | ||
[lang = "en"], | ||
[lang = "fr"], | ||
[lang = "de"], | ||
[lang = "it"], | ||
[lang *="ar-Latn-"], | ||
[lang *="ota-Latn-"]{ | ||
direction:ltr; | ||
text-align:left; | ||
} | ||
|
||
/* Phrase level markup styling is based on information layers */ | ||
[phraselvl = "true"] { | ||
border-bottom: dotted; | ||
} | ||
|
||
/* p */ | ||
tei-p { | ||
display: block; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
text-align: justify; | ||
} | ||
|
||
tei-pb { | ||
margin-right: 3px; | ||
margin-left: 3px; | ||
} | ||
|
||
tei-note { | ||
margin-right: 3px; | ||
margin-left: 3px; | ||
} | ||
|
||
tei-hi[rend="caps"] { | ||
text-transform: uppercase; | ||
} | ||
tei-hi[rend="italic"] { | ||
font-style: italic; | ||
} | ||
tei-hi[rend="bold"] { | ||
font-weight: bold; | ||
} | ||
|
||
.ProseMirror { | ||
/* font-family: "Lucida Grande", "Cardo", "Arial Unicode MS","Galilee Unicode Gk", "New Athena Unicode", "Athena Unicode", "Palatino Linotype", "Titus Cyberbit Basic", "Vusillus Old Face", "Alphabetum", "Galatia SIL", "Code 2000", "GentiumAlt", "Gentium", "Minion Pro", "GeorgiaGreek", "Vusillus Old Face Italic", "Everson Mono", "Aristarcoj", "Porson", "Legendum", "Aisa Unicode", "Hindsight Unicode", "Caslon", "Verdana", "Tahoma"; */ | ||
font-size: 14pt; | ||
line-height: 1.4em; | ||
} | ||
|
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
Binary file not shown.
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.