diff options
author | terminaldweller <thabogre@gmail.com> | 2022-07-21 05:36:02 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-07-21 05:36:02 +0000 |
commit | 85db7c5287ae58efc108263f7a40bdbd02de1a82 (patch) | |
tree | 8292d90db8999dabc2e3872ea75547cb7fcf0c2d /dbdocs/schemaSpy.css | |
parent | changed the max doc size to 40K characters.255 was not enough... (diff) | |
download | mdrtl-85db7c5287ae58efc108263f7a40bdbd02de1a82.tar.gz mdrtl-85db7c5287ae58efc108263f7a40bdbd02de1a82.zip |
added docs for the db using schemaspy
Diffstat (limited to 'dbdocs/schemaSpy.css')
-rw-r--r-- | dbdocs/schemaSpy.css | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/dbdocs/schemaSpy.css b/dbdocs/schemaSpy.css new file mode 100644 index 0000000..1285c1f --- /dev/null +++ b/dbdocs/schemaSpy.css @@ -0,0 +1,162 @@ +/* background must be specified for it to propagate into diagrams */ +.diagram { + margin: 0px; + background: #ffffff; + border: 0 0; + padding:.4em; +} +/* background-color must be specified for th to propagate into diagrams */ +th.diagram { + background-color: #f5f5f5; + text-align: left; + padding: 0px 4px; +} + +/* background-color must be specified for td to propagate into diagrams */ +td.diagram { + background-color: #ffffff; +} +/* background must be specified for .primaryKey to propagate into diagrams */ +.diagram .primaryKey { + background: #dcdf8d; + padding: 0px 4px; +} + +/* background must be specified for .indexedColumn to propagate into diagrams */ +.diagram .indexedColumn { + background: #FFFFFF; +} + +.iconkey { + font-size: 20px; + display: inline-block; + transform: rotate(180deg); +} + +.primaryKey { + font-weight: bold; + white-space: nowrap; +} + +.foreignKey { + font-weight: bold; + white-space: nowrap; +} + +.uniqueKey { + font-weight: bold; + white-space: nowrap; +} + +.indexedColumn { + font-style: italic; +} + +.primaryKey .iconkey { + color: #D7DF01; +} + +.foreignKey .iconkey { + color: #BDBDBD; +} + +.uniqueKey .iconkey { + color: #35A9FE; +} + +/* background must be specified for .excludedColumn to propagate into diagrams */ +.excludedColumn { + background: #C0C0C0; +} + +/* background must be specified for .selectedTable to propagate into diagrams */ +.selectedTable { + background: #A9AB96; +} + +.detail { + padding: 0px 4px; +} + +.impliedRelationship { + display: none; + font-style: italic; + color: #183118 +} + +.dataTable>tbody>tr>td, .dataTable>tfoot>tr>td, .dataTable>thead>tr>td { + padding: 6px; +} + +.description { + display: block; + padding: 8px 0px; +} + +.signature { + font-size: 105%; + font-weight: bold; + font-style: italic; +} + +.relatedTable { + padding: 0px 4px; +} + +.relatedKey { + display: none; + padding: 0px -4px 0px 4px; +} + +.constraint { + display: none; + text-align: right; + padding: 0px 4px; +} + +.comment { + display: none; + text-align: left; + padding: 0px 4px; +} + +.impliedNotOrphan { +} + +.excludedRelationship { + font-size: 85%; +} + +.degrees { +} + +.viewDefinition { + font-size: 90%; + background-color: #ffffff; + border-style: solid; + border-width: 1px; + float: left; + padding: 4px; + font-family: "Courier New", Courier, monospace +} + +.viewReferences { + font-size: 90%; + padding: 4px; +} + +.CodeMirror { + height: auto; +} + +.logo-text { + font-family: "Indie Flower", "Helvetica Neue", Helvetica, Arial, cursive; +} + +.dataTables_filter { + padding-top: 4px; +} + +.dataTables_filter .input-sm { + padding-left: 13px; +}
\ No newline at end of file |