forked from I2P_Developers/i2p.i2p
Console: Improve news CSS (ticket #1710)
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2016-02-22 zzz
|
||||||
|
* Console: Improve news CSS (ticket #1710)
|
||||||
|
* Crypto: Blacklist certificates by SHA1 hash, not by serial/CN/OU
|
||||||
|
* I2CP: Improve client error message when internal router connection fails
|
||||||
|
* Graphs: Increase font size
|
||||||
|
* Transports: Increase default max inbound bandwidth,
|
||||||
|
increase minimum in/out bandwidths
|
||||||
|
|
||||||
2016-02-19 zzz
|
2016-02-19 zzz
|
||||||
* Clock: Add sanity checks to detect invalid system clock
|
* Clock: Add sanity checks to detect invalid system clock
|
||||||
|
|
||||||
|
@@ -390,15 +390,25 @@ div.news {
|
|||||||
min-width: 490px;
|
min-width: 490px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news p {
|
div.newscontent {
|
||||||
|
background-color: rgba(242, 242, 248, 0.9);
|
||||||
|
border: 1px solid #ccf;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: inset 0px 0px 4px 4px #e8e8ff;
|
||||||
|
margin: 8px 8px 28px 8px;
|
||||||
|
opacity: 0.95;
|
||||||
|
padding: 24px 18px 10px 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.newscontent p {
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
text-align: justify !important;
|
text-align: justify !important;
|
||||||
line-height: 120%;
|
line-height: 120%;
|
||||||
margin-top: -7px;
|
margin-top: -2px;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news hr {
|
div.newscontent hr {
|
||||||
color: #225;
|
color: #225;
|
||||||
background: #225;
|
background: #225;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
@@ -407,7 +417,7 @@ div.news hr {
|
|||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news li {
|
div.newscontent li {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 5px 0 16px 0 !important;
|
margin: 5px 0 16px 0 !important;
|
||||||
@@ -427,7 +437,7 @@ div.news li {
|
|||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news li:first-child {
|
div.newscontent li:first-child {
|
||||||
margin-top: 10px !important;
|
margin-top: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -447,11 +457,28 @@ div.news h3 {
|
|||||||
text-shadow: 0px 0px 0px #77f;
|
text-shadow: 0px 0px 0px #77f;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news h4 {
|
div.newscontent h4 {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0 0 -10px 0;
|
margin: 14px 15px 7px 15px;
|
||||||
font-size: 11pt;
|
font-size: 10pt;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.newscontent h5 {
|
||||||
|
border-bottom: 0px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 12px 15px 6px 15px;
|
||||||
|
font-size: 9.5pt;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.newscontent h6 {
|
||||||
|
border-bottom: 0px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 12px 15px 6px 15px;
|
||||||
|
font-size: 9pt;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.confignav {
|
div.confignav {
|
||||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 7;
|
public final static long BUILD = 8;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user