cashless2ecash

cashless2ecash: pay with cards for digital cash (experimental)
Log | Files | Refs | README

schemaSpy.css (2535B)


      1 /* background must be specified for it to propagate into diagrams */
      2 .diagram {
      3   margin: 0;
      4   background: #ffffff;
      5   border: none;
      6   padding:.4em;
      7 }
      8 /* background-color must be specified for th to propagate into diagrams */
      9 th.diagram  {
     10   background-color: #f5f5f5;
     11   text-align: left;
     12   padding: 0 4px;
     13 }
     14 
     15 /* background-color must be specified for td to propagate into diagrams */
     16 td.diagram  {
     17   background-color: #ffffff;
     18 }
     19 /* background must be specified for .primaryKey to propagate into diagrams */
     20 .diagram .primaryKey {
     21   background: #dcdf8d;
     22   padding: 0 4px;
     23 }
     24 
     25 /* background must be specified for .indexedColumn to propagate into diagrams */
     26 .diagram .indexedColumn {
     27   background: #FFFFFF;
     28 }
     29 
     30 .iconkey {
     31   font-size: 20px;
     32   display: inline-block;
     33   transform: rotate(180deg);
     34 }
     35 
     36 .primaryKey {
     37   font-weight: bold;
     38   white-space: nowrap;
     39 }
     40 
     41 .foreignKey {
     42   font-weight: bold;
     43   white-space: nowrap;
     44 }
     45 
     46 .uniqueKey {
     47   font-weight: bold;
     48   white-space: nowrap;
     49 }
     50 
     51 .indexedColumn {
     52   font-style: italic;
     53 }
     54 
     55 .primaryKey .iconkey {
     56   color: #D7DF01;
     57 }
     58 
     59 .foreignKey .iconkey {
     60   color: #BDBDBD;
     61 }
     62 
     63 .uniqueKey .iconkey {
     64   color: #35A9FE;
     65 }
     66 
     67 /* background must be specified for .excludedColumn to propagate into diagrams */
     68 .excludedColumn {
     69   background: #C0C0C0;
     70 }
     71 
     72 /* background must be specified for .selectedTable to propagate into diagrams */
     73 .selectedTable {
     74   background: #A9AB96;
     75 }
     76 
     77 .detail {
     78   padding: 0 4px;
     79 }
     80 
     81 .impliedRelationship {
     82   display: none;
     83   font-style: italic;
     84   color: #183118
     85 }
     86 
     87 .dataTable>tbody>tr>td, .dataTable>tfoot>tr>td, .dataTable>thead>tr>td {
     88   padding: 6px;
     89 }
     90 
     91 .description {
     92   display: block;
     93   padding: 8px 0;
     94 }
     95 
     96 .signature {
     97   font-size: 105%;
     98   font-weight: bold;
     99   font-style: italic;
    100 }
    101 
    102 .relatedTable {
    103   padding: 0 4px;
    104 }
    105 
    106 .relatedKey {
    107   display: none;
    108   padding: 0 -4px 0 4px;
    109 }
    110 
    111 .constraint {
    112   display: none;
    113   text-align: right;
    114   padding: 0 0 0 15px;
    115 }
    116 
    117 .comment {
    118   display: none;
    119   text-align: left;
    120   padding: 0 4px;
    121 }
    122 
    123 .impliedNotOrphan {
    124 }
    125 
    126 .excludedRelationship {
    127   font-size: 85%;
    128 }
    129 
    130 .degrees {
    131 }
    132 
    133 .viewDefinition {
    134   font-size: 90%;
    135   background-color: #ffffff;
    136   border-style: solid;
    137   border-width: 1px;
    138   float: left;
    139   padding: 4px;
    140   font-family: "Courier New", Courier, monospace
    141 }
    142 
    143 .viewReferences {
    144   font-size: 90%;
    145   padding: 4px;
    146 }
    147 
    148 .CodeMirror {
    149   height: auto;    
    150 }
    151 
    152 .logo-text {
    153   font-family: "Indie Flower", "Helvetica Neue", Helvetica, Arial, cursive;
    154 }
    155 
    156 .dataTables_filter {
    157   padding-top: 4px;
    158 }
    159 
    160 .dataTables_filter .input-sm {
    161   padding-left: 13px;
    162 }