Changeset 1d655c7a
- Timestamp:
- Jul 29, 2009 2:46:47 PM (11 years ago)
- Branches:
- master
- Children:
- b0a477c
- Parents:
- abf2bea
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
installer/resources/themes/console/classic/console.css
rabf2bea r1d655c7a 5 5 background: #FFF; 6 6 color: #000; 7 font: 10 0% Verdana, Tahoma, Helvetica, sans-serif;7 font: 10pt/120% Verdana, Tahoma, Helvetica, sans-serif; 8 8 } 9 9 … … 55 55 text-align: left; 56 56 border: medium solid #efefff; 57 font-size: 0.82em;57 font-size: 9pt; 58 58 word-wrap: break-word; 59 59 } 60 60 61 div.routersummary hr { 62 color: #ccf; 63 background: #ccf; 64 height: 2px; 65 border: 0px solid #ccf; 66 margin: 10px 0; 67 } 61 68 div.warning { 62 69 margin: 0em 1em 1em 224px; … … 86 93 background: #ffffc0; 87 94 border: medium solid #ffffa0; 88 text-align: left;95 text-align: justify; 89 96 color: inherit; 90 97 } … … 121 128 display: none !important; 122 129 } 130 131 table { 132 border-collapse: collapse; 133 width: 100%; 134 border: 5px solid #dfd; 135 margin: 5px 0px; 136 cell-padding: 1px; 137 font-size: 7pt; 138 background: #fff; 139 } 140 141 th { 142 background-color: #ccf; 143 padding: 5px 2px; 144 } 145 146 tt { 147 font-size: 8pt; 148 } 149 150 td { 151 padding: 2px; 152 } 153 154 tr:nth-child(even) { 155 background-color: #eef; 156 } 157 158 tr:nth-child(odd) { 159 background-color: #ddf; 160 } 161 162 hr { 163 color: #ff9; 164 background: #ff9; 165 height: 2px; 166 border: 0px solid #ff9; 167 margin: 10px 0; 168 } -
installer/resources/themes/console/dark/console.css
rabf2bea r1d655c7a 592 592 593 593 .smallhead { 594 font-size: 8pt594 font-size: 7pt 595 595 } 596 596 -
router/java/src/net/i2p/router/RouterVersion.java
rabf2bea r1d655c7a 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 3 3;21 public final static long BUILD = 34; 22 22 /** for example "-test" */ 23 23 public final static String EXTRA = "-rc";
Note: See TracChangeset
for help on using the changeset viewer.