forked from I2P_Developers/i2p.i2p
merge of '01c1a5c0e70a460534e66dd487aa8676d666168d'
and '441b352d1cef1c64ee96f55692be67cfc4b4abf1'
This commit is contained in:
@ -86,7 +86,7 @@ public class SnarkManager implements Snark.CompleteListener {
|
|||||||
public static final String PROP_STARTUP_DELAY = "i2psnark.startupDelay";
|
public static final String PROP_STARTUP_DELAY = "i2psnark.startupDelay";
|
||||||
public static final String PROP_REFRESH_DELAY = "i2psnark.refreshSeconds";
|
public static final String PROP_REFRESH_DELAY = "i2psnark.refreshSeconds";
|
||||||
public static final String RC_PROP_THEME = "routerconsole.theme";
|
public static final String RC_PROP_THEME = "routerconsole.theme";
|
||||||
public static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.theme.universal";
|
public static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.universal.theme";
|
||||||
public static final String PROP_THEME = "i2psnark.theme";
|
public static final String PROP_THEME = "i2psnark.theme";
|
||||||
public static final String DEFAULT_THEME = "ubergine";
|
public static final String DEFAULT_THEME = "ubergine";
|
||||||
private static final String PROP_USE_OPENTRACKERS = "i2psnark.useOpentrackers";
|
private static final String PROP_USE_OPENTRACKERS = "i2psnark.useOpentrackers";
|
||||||
@ -310,6 +310,10 @@ public class SnarkManager implements Snark.CompleteListener {
|
|||||||
themeExists = true;
|
themeExists = true;
|
||||||
}
|
}
|
||||||
if (!themeExists) {
|
if (!themeExists) {
|
||||||
|
// Since the default is not "light", explicitly check if universal theme is "classic"
|
||||||
|
if (theme.equals("classic"))
|
||||||
|
theme = "light";
|
||||||
|
else
|
||||||
theme = DEFAULT_THEME;
|
theme = DEFAULT_THEME;
|
||||||
_config.setProperty(PROP_THEME, DEFAULT_THEME);
|
_config.setProperty(PROP_THEME, DEFAULT_THEME);
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ public class CSSHelper extends HelperBase {
|
|||||||
|
|
||||||
public CSSHelper() {}
|
public CSSHelper() {}
|
||||||
|
|
||||||
public static final String PROP_UNIVERSAL_THEMING = "routerconsole.theme.universal";
|
public static final String PROP_UNIVERSAL_THEMING = "routerconsole.universal.theme";
|
||||||
public static final String PROP_THEME_NAME = "routerconsole.theme";
|
public static final String PROP_THEME_NAME = "routerconsole.theme";
|
||||||
public static final String DEFAULT_THEME = "light";
|
public static final String DEFAULT_THEME = "light";
|
||||||
public static final String BASE_THEME_PATH = "/themes/console/";
|
public static final String BASE_THEME_PATH = "/themes/console/";
|
||||||
|
@ -22,7 +22,7 @@ public class BaseBean
|
|||||||
private static final String DEFAULT_PRIVATE_BOOK = "../privatehosts.txt";
|
private static final String DEFAULT_PRIVATE_BOOK = "../privatehosts.txt";
|
||||||
|
|
||||||
public static final String RC_PROP_THEME_NAME = "routerconsole.theme";
|
public static final String RC_PROP_THEME_NAME = "routerconsole.theme";
|
||||||
public static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.theme.universal";
|
public static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.universal.theme";
|
||||||
public static final String PROP_THEME_NAME = "theme";
|
public static final String PROP_THEME_NAME = "theme";
|
||||||
public static final String DEFAULT_THEME = "light";
|
public static final String DEFAULT_THEME = "light";
|
||||||
public static final String BASE_THEME_PATH = "/themes/susidns/";
|
public static final String BASE_THEME_PATH = "/themes/susidns/";
|
||||||
|
@ -169,7 +169,7 @@ public class WebMail extends HttpServlet
|
|||||||
private static final String CONFIG_BCC_TO_SELF = "composer.bcc.to.self";
|
private static final String CONFIG_BCC_TO_SELF = "composer.bcc.to.self";
|
||||||
|
|
||||||
private static final String RC_PROP_THEME = "routerconsole.theme";
|
private static final String RC_PROP_THEME = "routerconsole.theme";
|
||||||
private static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.theme.universal";
|
private static final String RC_PROP_UNIVERSAL_THEMING = "routerconsole.universal.theme";
|
||||||
private static final String CONFIG_THEME = "theme";
|
private static final String CONFIG_THEME = "theme";
|
||||||
private static final String DEFAULT_THEME = "light";
|
private static final String DEFAULT_THEME = "light";
|
||||||
|
|
||||||
|
11
history.txt
11
history.txt
@ -1,3 +1,14 @@
|
|||||||
|
2012-08-07 str4d
|
||||||
|
* Console:
|
||||||
|
- Theme updates from dr|z3d
|
||||||
|
- Changed universal theming key so it is not mistaken as a theme
|
||||||
|
name by the routerconsole
|
||||||
|
* i2psnark:
|
||||||
|
- Theme updates from dr|z3d
|
||||||
|
- If universal theming is set and routerconsole theme is classic,
|
||||||
|
use light theme explicitly
|
||||||
|
* susidns: new midnight theme from dr|z3d
|
||||||
|
|
||||||
2012-08-06 zzz
|
2012-08-06 zzz
|
||||||
* Clone System properties before iterating to avoid
|
* Clone System properties before iterating to avoid
|
||||||
ConcurrentModificationException (ticket #680)
|
ConcurrentModificationException (ticket #680)
|
||||||
|
@ -180,6 +180,10 @@ div.routersummary input[type=text] {
|
|||||||
text-align: right !important;
|
text-align: right !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#xhr {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
div.routersummary hr {
|
div.routersummary hr {
|
||||||
color: #89f;
|
color: #89f;
|
||||||
background: #89f;
|
background: #89f;
|
||||||
@ -238,9 +242,15 @@ div.routersummary tr {
|
|||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.routersummary form {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
div.newsheadings {
|
div.newsheadings {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: 0 0 0 -20px;
|
margin: 0 5px 0 -20px;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 8pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.newsheadings li {
|
div.newsheadings li {
|
||||||
@ -248,6 +258,11 @@ div.newsheadings li {
|
|||||||
margin: 0 -4px 2px 8px;
|
margin: 0 -4px 2px 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.newsheadings ul {
|
||||||
|
margin: 0 5px -3px 38px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
div.tunnels table {
|
div.tunnels table {
|
||||||
margin: 0 -7px !important;
|
margin: 0 -7px !important;
|
||||||
width: 193px;
|
width: 193px;
|
||||||
@ -354,7 +369,6 @@ div.main textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.main h2 {
|
div.main h2 {
|
||||||
margin-top: 20px;
|
|
||||||
margin-bottom: 10px !important;
|
margin-bottom: 10px !important;
|
||||||
-moz-border-radius: 0 3px 0 0;
|
-moz-border-radius: 0 3px 0 0;
|
||||||
-khtml-border-radius: 0 3px 0 0;
|
-khtml-border-radius: 0 3px 0 0;
|
||||||
@ -370,6 +384,11 @@ div.main h2:first-child, div.main h3:first-child {
|
|||||||
margin-bottom: -5px;
|
margin-bottom: -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.topness {
|
||||||
|
text-align: right;
|
||||||
|
font-size: 8pt;
|
||||||
|
}
|
||||||
|
|
||||||
div.wideload h2 {
|
div.wideload h2 {
|
||||||
margin-bottom: 0px !important;
|
margin-bottom: 0px !important;
|
||||||
}
|
}
|
||||||
@ -396,11 +415,8 @@ div.news {
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
color: #770;
|
color: #770;
|
||||||
min-width: 500px;
|
min-width: 500px;
|
||||||
padding-bottom: 8px;
|
padding: 3px 10px 3px 10px;
|
||||||
padding-left: 10px;
|
font-size: 8pt;
|
||||||
padding-right: 10px;
|
|
||||||
padding: 0 10px 3px 10px;
|
|
||||||
font-size: 7pt;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* convert the list entry to our title */
|
/* convert the list entry to our title */
|
||||||
@ -471,11 +487,15 @@ div.news hr {
|
|||||||
margin: 10px 0 2px 0;
|
margin: 10px 0 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.news hr:last-child {
|
||||||
|
margin-bottom: 10px !important;
|
||||||
|
}
|
||||||
|
|
||||||
div.confignav {
|
div.confignav {
|
||||||
padding: 15px 0;
|
padding: 15px 0;
|
||||||
margin: -16px -16px 0 -16px;
|
margin: -16px -16px 5px -16px;
|
||||||
border: 1px solid #89f;
|
border: 1px solid #89f;
|
||||||
font-size: 9.5pt;
|
font-size: 8.5pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.confignav a {
|
div.confignav a {
|
||||||
@ -560,11 +580,11 @@ div.configure h2:first-child {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.messages {
|
div.messages {
|
||||||
padding: 0px 10px;
|
padding: 10px 10px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #89f;
|
border: 1px solid #89f;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
margin: -1px -15px 10px -16px;
|
margin: -6px -15px 10px -16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -572,12 +592,19 @@ div.messages {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.messages li, div.messages ul {
|
div.messages li, div.messages ul {
|
||||||
padding: 10px 0 0 5px;
|
padding: 10px 0 0 5px !important;
|
||||||
margin: -10px 0 0 0;
|
margin: -10px 0 0 25px !important;
|
||||||
|
list-style: none;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.error {
|
div.error {
|
||||||
color: #d00000;
|
color: #d00000;
|
||||||
|
background-image: url("../images/errortriangle.png");
|
||||||
|
background-position: 10px center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
padding: 10px 0;
|
||||||
|
margin-left: -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.notice {
|
div.notice {
|
||||||
@ -662,7 +689,7 @@ table {
|
|||||||
border: 1px solid #89f;
|
border: 1px solid #89f;
|
||||||
margin: 0 0 5px 0;
|
margin: 0 0 5px 0;
|
||||||
cell-padding: 1px;
|
cell-padding: 1px;
|
||||||
font-size: 7.5pt;
|
font-size: 8pt;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
@ -677,7 +704,7 @@ table hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
table tt {
|
table tt {
|
||||||
font-size: 7.5pt;
|
font-size: 8pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
table code {
|
table code {
|
||||||
@ -722,8 +749,16 @@ h2.app {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
h4.app, h4.app2 {
|
h4.app, h4.app2 {
|
||||||
margin: 0 10px 2px 10px;
|
margin: 0 10px 5px 10px;
|
||||||
padding: 10px 0 8px 0;
|
padding: 10px 0 8px 0;
|
||||||
|
font-size: 12pt;
|
||||||
|
padding: 6px 10px 8px;
|
||||||
|
border: 1px solid #89f;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
background: #fff;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-shadow: 0px 1px 1px #99f;
|
||||||
|
background: url('images/tinytitle.png') center center repeat-x;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4.app2 {
|
h4.app2 {
|
||||||
@ -732,15 +767,24 @@ h4.app2 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.ag2 {
|
div.ag2 {
|
||||||
margin: 0;
|
margin: 0 -10px -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.app {
|
div.app {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
height: 90px;
|
min-width: 60px;
|
||||||
width: 112px;
|
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
|
border: none;
|
||||||
|
margin: 0 2px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.app:last-child {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.app a:link, div.app a:visited, div.app a:hover, div.app a:active {
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.appgroup {
|
div.appgroup {
|
||||||
@ -766,44 +810,53 @@ table.search {
|
|||||||
img.app {
|
img.app {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
padding: 6px;
|
padding: 5px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.app2p {
|
img.app2 {
|
||||||
height: 40px;
|
height: 40px;
|
||||||
padding: 3px 6px 0 6px;
|
padding: 3px 6px 0 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.app {
|
.app table {
|
||||||
background: none;
|
background: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.app {
|
.app tr {
|
||||||
background: none;
|
background: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.app {
|
.app td {
|
||||||
background: none;
|
background: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.applabel {
|
div.applabel {
|
||||||
background: url('images/header.png') center center repeat-x;
|
background: url('images/tinytitle.png') center center repeat-x;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 3px;
|
||||||
-khtml-border-radius: 4px;
|
-khtml-border-radius: 3px;
|
||||||
border: 2px #00f;
|
border-radius: 3px;
|
||||||
border-radius: 4px;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 3px 6px 4px 6px;
|
padding: 4px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
min-width: 60px;
|
||||||
|
line-height: 110%;
|
||||||
|
text-transform: lowercase;
|
||||||
|
font-size: 8pt;
|
||||||
|
border: 1px solid #89f;
|
||||||
|
box-shadow: 0 1px 1px #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.applabel:hover {
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* end home page */
|
/* end home page */
|
||||||
@ -841,9 +894,9 @@ hr {
|
|||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
color: #001;
|
color: #001;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: -5px 0 7px 0;
|
margin: -8px 0 7px 0;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #bbf;
|
border: 1px solid #89f !important;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
padding: 4px 0 2px 0;
|
padding: 4px 0 2px 0;
|
||||||
background-image: url("images/tinytitle.png") !important;
|
background-image: url("images/tinytitle.png") !important;
|
||||||
@ -927,21 +980,31 @@ p {
|
|||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p img:first-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.formaction {
|
.formaction {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: -10px -5px;
|
margin: -10px -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.langbox {
|
.langbox {
|
||||||
margin: 5px -20px 0px 5px;
|
margin: 5px 5px 0 5px;
|
||||||
color: #001;
|
color: #001;
|
||||||
font-size: 7pt;
|
font-size: 7pt;
|
||||||
width: 280px;
|
width: 280px;
|
||||||
text-align: center;
|
text-align: right;
|
||||||
float: right;
|
float: right;
|
||||||
valign: middle;
|
valign: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* opera targetted hack */
|
||||||
|
x:-o-prefocus, .langbox img {
|
||||||
|
margin-bottom: 2px;
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
.langbox img {
|
.langbox img {
|
||||||
padding: 0 2px; /* Ignored by IE8 */
|
padding: 0 2px; /* Ignored by IE8 */
|
||||||
}
|
}
|
||||||
@ -989,7 +1052,6 @@ a:hover {
|
|||||||
color: #f60;
|
color: #f60;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-shadow: 0px 0px 1px rgba(255, 96, 0, 0.7);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:active {
|
a:active {
|
||||||
|
@ -108,7 +108,7 @@ div.routersummaryouter {
|
|||||||
|
|
||||||
div.routersummary {
|
div.routersummary {
|
||||||
width: 173px;
|
width: 173px;
|
||||||
padding: 10px 10px 8px;
|
padding: 8px 10px 8px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid #494;
|
border: 1px solid #494;
|
||||||
background: #000 url(images/camotile2.png);
|
background: #000 url(images/camotile2.png);
|
||||||
@ -746,7 +746,7 @@ p img:first-child {
|
|||||||
h1 {
|
h1 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: #EE9;
|
color: #EE9;
|
||||||
padding: 14px 15px;
|
padding: 13px 15px;
|
||||||
margin: 0 5px 0 205px !important;
|
margin: 0 5px 0 205px !important;
|
||||||
font-size: 17pt;
|
font-size: 17pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -1233,8 +1233,9 @@ div.ag2 {
|
|||||||
|
|
||||||
div.app {
|
div.app {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 5px 0 0 !important;
|
padding: 2px 0 0 !important;
|
||||||
width: 137px;
|
/* width: 137px; */
|
||||||
|
min-width: 70px;
|
||||||
border: 1px solid #494;
|
border: 1px solid #494;
|
||||||
background: #000;
|
background: #000;
|
||||||
background-image: -moz-linear-gradient(center top , #000B00, #000);
|
background-image: -moz-linear-gradient(center top , #000B00, #000);
|
||||||
@ -1242,7 +1243,7 @@ div.app {
|
|||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
-khtml-border-radius: 3px;
|
-khtml-border-radius: 3px;
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
height: 60px;
|
height: 53px;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
@ -1280,10 +1281,14 @@ table.search {
|
|||||||
margin-right:auto;
|
margin-right:auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.appimg {
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
img.app {
|
img.app {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
padding: 2px 0 0 0;
|
padding: 2px 0 0;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1316,14 +1321,30 @@ td.app {
|
|||||||
div.applabel {
|
div.applabel {
|
||||||
font-size: 7.5pt;
|
font-size: 7.5pt;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 1px 0 0 0;
|
padding: 2px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
line-height: 95%;
|
line-height: 95%;
|
||||||
text-transform: lowercase;
|
text-transform: lowercase;
|
||||||
border: none;
|
border: none;
|
||||||
|
/* width: 131px; */
|
||||||
|
min-width: 72px;
|
||||||
|
background: #010;
|
||||||
|
border-radius: 0 0 2px 2px;
|
||||||
|
border-top: 1px solid #494;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.applabel:hover {
|
||||||
|
background: #000;
|
||||||
|
border-top: 1px solid #f60;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.applabel a, div.applabel a:hover {
|
||||||
|
text-decoration: none !important;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* end home page */
|
/* end home page */
|
||||||
|
|
||||||
iframe.iframed {
|
iframe.iframed {
|
||||||
|
@ -44,11 +44,19 @@ div.routersummary h3 {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.routersummary td {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
div.routersummary td:last-child {
|
div.routersummary td:last-child {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.routersummary td:first-child {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
div.tunnels {
|
div.tunnels {
|
||||||
padding: -3px 0 !important;
|
padding: -3px 0 !important;
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ body {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
background: #000;
|
background: #000;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
font: 9pt/140% "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
font: 8pt/137% "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hide {
|
.hide {
|
||||||
@ -44,29 +44,30 @@ div.logo {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
background-color: #00000A;
|
background-color: #00000A;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 2px #00000A;
|
-moz-box-shadow: inset 0 0 0 2px #00000A;
|
||||||
-khtml-box-shadow: inset 0px 0px 0px 2px #00000A;
|
-khtml-box-shadow: inset 0 0 0 2px #00000A;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.logo hr {
|
div.logo hr {
|
||||||
color: #99f;
|
color: #99f;
|
||||||
background: #99f;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 0px solid #99f;
|
border: 0 solid #99f;
|
||||||
margin: 8px -5px;
|
margin: 8px -5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.logo a:link, div.logo a:visited {
|
div.logo a:link, div.logo a:visited {
|
||||||
text-shadow: 0px 0px 1px rgba(0, 0, 32, 0.3);
|
text-shadow: 0 0 1px rgba(0, 0, 32, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.logo a:active {
|
div.logo a:active {
|
||||||
text-shadow: 0px 0px 1px rgba(255, 96, 0, 0.5);
|
text-shadow: 0 0 1px rgba(255, 96, 0, 0.5);
|
||||||
color: #f60;
|
color: #f60;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.logo a:hover {
|
div.logo a:hover {
|
||||||
text-shadow: 0px 0px 1px rgba(128, 0, 0, 0.5);
|
text-shadow: 0 0 1px rgba(128, 0, 0, 0.5);
|
||||||
color: #f90;
|
color: #f90;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,7 +75,7 @@ div.logo a:hover {
|
|||||||
|
|
||||||
div.warning {
|
div.warning {
|
||||||
margin: 25px 25px 15px 260px;
|
margin: 25px 25px 15px 260px;
|
||||||
padding: 0px 20px 20px 75px;
|
padding: 0 20px 20px 75px;
|
||||||
background: #001;
|
background: #001;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@ -82,13 +83,14 @@ div.warning {
|
|||||||
background-image:url("../images/itoopie_sm.png");
|
background-image:url("../images/itoopie_sm.png");
|
||||||
background-position: 12px center;
|
background-position: 12px center;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #f60;
|
-moz-box-shadow: inset 0 0 0 1px #f60;
|
||||||
-khtml-box-shadow: inset 0px 0px 0px 1px #f60;
|
-khtml-box-shadow: inset 0 0 0 1px #f60;
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.warning a:link {
|
div.warning a:link {
|
||||||
color: #f60;
|
color: #f60;
|
||||||
text-shadow: 0px 0px 1px rgba(255, 96, 0, 0.3);
|
text-shadow: 0 0 1px rgba(255, 96, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.warning a:visited {
|
div.warning a:visited {
|
||||||
@ -97,7 +99,7 @@ div.warning a:visited {
|
|||||||
|
|
||||||
div.warning a:hover {
|
div.warning a:hover {
|
||||||
color: #f90;
|
color: #f90;
|
||||||
text-shadow: 0px 0px 1px rgba(255, 128, 0, 0.5);
|
text-shadow: 0 0 1px rgba(255, 128, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.warning a:active {
|
div.warning a:active {
|
||||||
@ -105,24 +107,50 @@ div.warning a:active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.warning hr {
|
div.warning hr {
|
||||||
color: #fb7;
|
color: #99f;
|
||||||
background: #fb7;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 0px solid #fb7;
|
border: 0 solid #99f;
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.warning h3 {
|
div.warning h3 {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-bottom: 1px solid #fb7;
|
border-bottom: 1px solid #99f;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
font-variant: small-caps;
|
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
font-size: 12.5pt;
|
font-size: 11pt;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
|
border-radius: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.warning p {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.warning b {
|
||||||
|
font-size: 8.5pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.proxyfooter {
|
||||||
|
border: 1px solid #99f;
|
||||||
|
margin: -16px 25px 20px 260px;
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
|
background: #002;
|
||||||
|
}
|
||||||
|
|
||||||
|
.proxyfooter p {
|
||||||
|
font-size: 7pt;
|
||||||
|
text-align: right;
|
||||||
|
padding: 0 5px;
|
||||||
|
margin: 3px 3px 5px 3px;
|
||||||
|
line-height: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.proxyfooter i {
|
||||||
|
font-style: normal !important;
|
||||||
|
}
|
||||||
/* console error messages */
|
/* console error messages */
|
||||||
|
|
||||||
div.sorry {
|
div.sorry {
|
||||||
@ -132,13 +160,14 @@ div.sorry {
|
|||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #d00;
|
-moz-box-shadow: inset 0 0 0 1px #d00;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
background-image: url("../images/errortriangle.png");
|
background-image: url("../images/errortriangle.png");
|
||||||
background-position: 15px center;
|
background-position: 15px center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.sorry hr {
|
div.sorry hr {
|
||||||
@ -158,7 +187,7 @@ div.toolbar {
|
|||||||
div.routersummaryouter {
|
div.routersummaryouter {
|
||||||
float: left;
|
float: left;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
margin: 0 0 5px 0px;
|
margin: 0 0 5px 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
clear: left; /* fixes a bug in Opera */
|
clear: left; /* fixes a bug in Opera */
|
||||||
@ -170,13 +199,14 @@ div.routersummary {
|
|||||||
width: 190px;
|
width: 190px;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 8px 1px 4px 1px;
|
padding: 6px 1px 8px 1px;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
font-size: 9pt;
|
font-size: 8pt;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
font: 9pt/125%;
|
font: 9pt/125%;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #00000A;
|
-moz-box-shadow: inset 0 0 0 1px #00000A;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.routersummary input[type=text] {
|
div.routersummary input[type=text] {
|
||||||
@ -187,7 +217,7 @@ div.routersummary hr {
|
|||||||
color: #99f;
|
color: #99f;
|
||||||
background: #99f;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border-bottom: 0px solid #99f;
|
border-bottom: 0 solid #99f;
|
||||||
margin: 8px -1px 7px -1px;
|
margin: 8px -1px 7px -1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,11 +226,11 @@ div.routersummary hr:last-child {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.routersummary h3 {
|
div.routersummary h3 {
|
||||||
border: 0px solid #f00;
|
border: 0 solid #f00;
|
||||||
font-size: 9.5pt;
|
font-size: 8.5pt;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.01em;
|
||||||
margin: -6px 0px -6px 0px;
|
margin: -6px 0 -6px 0;
|
||||||
padding: 3px 0;
|
padding: 3px 0 2px;
|
||||||
background: #002;
|
background: #002;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
background: #002 url("images/titles.png") repeat-x !important;
|
background: #002 url("images/titles.png") repeat-x !important;
|
||||||
@ -213,11 +243,11 @@ div.routersummary h3 a, div.routersummary h4 a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.routersummary h4 {
|
div.routersummary h4 {
|
||||||
border: 0px solid #f00;
|
border: 0 solid #f00;
|
||||||
border-bottom: 0 !important;
|
border-bottom: 0 !important;
|
||||||
font-size: 8.5pt;
|
font-size: 7.5pt;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
margin: -6px 0px -6px 0px !important;
|
margin: -6px 0 -6px 0 !important;
|
||||||
padding: 5px 2px;
|
padding: 5px 2px;
|
||||||
background: #000;
|
background: #000;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
@ -233,10 +263,9 @@ div.routersummary ul {
|
|||||||
div.routersummary table {
|
div.routersummary table {
|
||||||
border: 0;
|
border: 0;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
margin: -5px 0px -5px 2px;
|
margin: -5px 0 -5px 2px;
|
||||||
width: 186px !important;
|
width: 186px !important;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-size: 8pt;
|
|
||||||
padding: 0 -12px;
|
padding: 0 -12px;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
@ -269,18 +298,27 @@ div.routersummary td:first-child {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.routersummary form {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
div.newsheadings {
|
div.newsheadings {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: 0 0 0 -20px;
|
margin: 0 7px 0 -20px;
|
||||||
|
line-height: 110%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.newsheadings li {
|
div.newsheadings li {
|
||||||
list-style: none outside url('images/newsbullet_mini.png');
|
list-style: none outside url('images/newsbullet_mini.png');
|
||||||
margin: 0 -4px 2px 8px;
|
margin: 0 -4px 2px 8px;
|
||||||
|
line-height: 115%;
|
||||||
|
font-weight: normal !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.tunnels table{
|
div.tunnels table{
|
||||||
margin: -2px 0px -4px 2px !important;
|
margin: -2px 0 -4px 2px !important;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
width: 186px;
|
width: 186px;
|
||||||
}
|
}
|
||||||
@ -315,11 +353,11 @@ div.routersummary a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.routersummary a:link, div.routersummary a:visited {
|
div.routersummary a:link, div.routersummary a:visited {
|
||||||
text-shadow: 0px 0px 1px rgba(0, 0, 32, 0.3);
|
text-shadow: 0 0 1px rgba(0, 0, 32, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.routersummary a:hover {
|
div.routersummary a:hover {
|
||||||
text-shadow: 0px 0px 1px rgba(255, 96, 0, 0.7);
|
text-shadow: 0 0 1px rgba(255, 96, 0, 0.7);
|
||||||
color: #f60;
|
color: #f60;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -330,8 +368,8 @@ div.routersummary td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.main {
|
div.main {
|
||||||
margin: 0px 5px 5px 200px;
|
margin: 0 5px 5px 200px;
|
||||||
padding: 15px 15px 10px 15px;
|
padding: 5px 15px 10px 15px;
|
||||||
background: #00000A;
|
background: #00000A;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
@ -339,6 +377,7 @@ div.main {
|
|||||||
color: #eef;
|
color: #eef;
|
||||||
min-width: 590px;
|
min-width: 590px;
|
||||||
background: #000 url(images/scarface.jpg) right bottom no-repeat !important;
|
background: #000 url(images/scarface.jpg) right bottom no-repeat !important;
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.main ul {
|
div.main ul {
|
||||||
@ -369,11 +408,16 @@ div.main textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.main h2 {
|
div.main h2 {
|
||||||
margin-top: 20px;
|
margin-bottom: 5px;
|
||||||
margin-bottom: -5px;
|
|
||||||
padding-bottom: 10px !important;
|
padding-bottom: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
div.main h2:last-child {
|
||||||
|
margin: 20px 0 0 !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
table h2 {
|
table h2 {
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
}
|
}
|
||||||
@ -383,12 +427,11 @@ div.welcome {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.main h2:first-child, div.main h3:first-child {
|
div.main h2:first-child, div.main h3:first-child {
|
||||||
margin-top: 0px;
|
/* margin: 5px 10px -10px; */
|
||||||
margin-bottom: -5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div.wideload h2 {
|
div.wideload h2 {
|
||||||
margin-bottom: 0px !important;
|
margin-bottom: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.wideload h3:first-child {
|
div.wideload h3:first-child {
|
||||||
@ -397,26 +440,27 @@ div.wideload h3:first-child {
|
|||||||
|
|
||||||
div.wideload h3 {
|
div.wideload h3 {
|
||||||
margin-top: 15px !important;
|
margin-top: 15px !important;
|
||||||
margin-bottom: 0px !important;
|
margin-bottom: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.wideload p !important {
|
div.wideload p {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.wideload table {
|
||||||
|
margin-top: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
div.news {
|
div.news {
|
||||||
margin: -1px 5px 0 200px;
|
margin: -1px 5px 0 200px;
|
||||||
padding: -10px 0px 8px 0px;
|
|
||||||
background: #001;
|
background: #001;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: #99f;
|
color: #99f;
|
||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
padding-bottom: 8px;
|
padding: 3px 8px 3px;
|
||||||
padding-left: 10px;
|
-moz-box-shadow: inset 0 0 4px 2px #00000A;
|
||||||
padding-right: 10px;
|
font-size: 8pt;
|
||||||
-moz-box-shadow: inset 0px 0px 4px 2px #00000A;
|
|
||||||
font-size: 7pt;
|
|
||||||
background: #001 url("images/planet.png")no-repeat scroll bottom right;
|
background: #001 url("images/planet.png")no-repeat scroll bottom right;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -426,9 +470,9 @@ div.news li {
|
|||||||
text-align: justify;
|
text-align: justify;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 15px 15px -10px -20px;
|
margin: 15px 15px -10px -20px;
|
||||||
padding: 0px 0 15px 0;
|
padding: 0 0 15px 0;
|
||||||
border-bottom: 1px dotted #99f;
|
border-bottom: 1px dotted #99f;
|
||||||
border-top: 0px solid #99f;
|
border-top: 0 solid #99f;
|
||||||
padding: 3px 5px 5px 0;
|
padding: 3px 5px 5px 0;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
@ -441,7 +485,7 @@ div.news h3 {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
padding-top: 0px;
|
padding-top: 0;
|
||||||
border-bottom: 1px dotted !important;
|
border-bottom: 1px dotted !important;
|
||||||
-moz-box-shadow: none;
|
-moz-box-shadow: none;
|
||||||
-hktml-box-shadow: none;
|
-hktml-box-shadow: none;
|
||||||
@ -455,7 +499,7 @@ div.news h3 {
|
|||||||
|
|
||||||
div.news p {
|
div.news p {
|
||||||
color: #eef;
|
color: #eef;
|
||||||
font-size: 9pt;
|
font-size: 8pt;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
@ -466,33 +510,33 @@ div.news p:last-child {
|
|||||||
|
|
||||||
div.news a:link {
|
div.news a:link {
|
||||||
color: #aaf;
|
color: #aaf;
|
||||||
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
text-shadow: 0 0 1px rgba(128, 128, 48, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news a:visited {
|
div.news a:visited {
|
||||||
color: #99f !important;
|
color: #99f !important;
|
||||||
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
text-shadow: 0 0 1px rgba(128, 128, 48, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news hr {
|
div.news hr {
|
||||||
color: #99f;
|
color: #99f;
|
||||||
background: #99f;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 0px solid #99f;
|
border: 0 solid #99f;
|
||||||
margin: 10px 0 2px 0;
|
margin: 10px 0 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.confignav {
|
div.confignav {
|
||||||
padding: 14px 0 15px;
|
padding: 14px 0 15px;
|
||||||
background: #000018;
|
background: #000018;
|
||||||
margin: -16px -16px 0 -16px;
|
margin: -6px -16px 5px -16px;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
-moz-box-shadow: inset 0px 0px 4px 2px #00000A;
|
-moz-box-shadow: inset 0 0 4px 2px #00000A;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure {
|
div.configure {
|
||||||
margin: 1px -20px 0 -20px;
|
margin: 15px -20px;
|
||||||
padding: 0px 20px 0px 20px;
|
padding: 0 20px 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure hr {
|
div.configure hr {
|
||||||
@ -500,21 +544,22 @@ div.configure hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.configure table {
|
div.configure table {
|
||||||
font-size: 9pt;
|
font-size: 8pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure tr, div.configure td {
|
div.configure tr, div.configure td {
|
||||||
padding: 10px 2px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure tr {
|
div.configure tr {
|
||||||
-moz-box-shadow: inset 0px 0px 1px 0px #000;
|
-moz-box-shadow: inset 0 0 1px 0 #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure li:first-child, div.main li:first-child {
|
div.configure li:first-child, div.main li:first-child {
|
||||||
margin-top: -10px;
|
margin-top: 0;
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure li:last-child {
|
div.configure li:last-child {
|
||||||
@ -525,6 +570,9 @@ div.configure h2:first-child {
|
|||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.configure form {
|
||||||
|
margin: 20px 15px;
|
||||||
|
}
|
||||||
.sidebarconf input[type="image"] {
|
.sidebarconf input[type="image"] {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
@ -570,43 +618,52 @@ div.configure h2:first-child {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.messages {
|
div.messages {
|
||||||
padding: 0px 10px;
|
padding: 10px;
|
||||||
background: #001;
|
background: #000;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
margin: -1px -15px 10px -16px;
|
margin: -6px -15px 10px -16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #474;
|
color: #474;
|
||||||
-moz-box-shadow: inset 0px 0px 4px 2px #00000A;
|
-moz-box-shadow: inset 0 0 4px 2px #00000A;
|
||||||
|
background: url("../images/info_rhombus.png") no-repeat scroll 18px center #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.messages li, div.messages ul {
|
div.messages li, div.messages ul {
|
||||||
padding: 10px 0 0 5px;
|
padding: 10px 0 0 5px;
|
||||||
margin: -10px 0 0 0;
|
margin: -10px 0 0 0;
|
||||||
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.main li b{
|
div.main li b{
|
||||||
color: #bb7 !important;
|
color: #bb7 !important;
|
||||||
letter-spacing: 0.07em;
|
letter-spacing: 0.07em;
|
||||||
font-size: 9.5pt;
|
font-size: 9pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.error {
|
div.error {
|
||||||
color: #d00000;
|
color: #d00;
|
||||||
|
background: url("../images/errortriangle.png") no-repeat scroll 5px center #000;
|
||||||
|
padding: 10px 10px 10px 45px;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.notice {
|
div.notice {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1,h2,h3 {
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 18pt;
|
font-size: 18pt;
|
||||||
text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);
|
text-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
|
||||||
text-align: center;
|
text-align: left;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
padding: 15px 10px;
|
padding: 13px;
|
||||||
margin: 5px 5px 0 200px;
|
margin: 5px 5px 0 200px;
|
||||||
line-height: 93%;
|
line-height: 93%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -615,6 +672,7 @@ h1 {
|
|||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.newtab {
|
span.newtab {
|
||||||
@ -630,7 +688,7 @@ x:-o-prefocus, span.newtab {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 13pt;
|
font-size: 12pt;
|
||||||
padding: 10px 10px 10px 10px;
|
padding: 10px 10px 10px 10px;
|
||||||
border: 1px solid #77f;
|
border: 1px solid #77f;
|
||||||
border-top: 1px solid #99f;
|
border-top: 1px solid #99f;
|
||||||
@ -638,16 +696,16 @@ h2 {
|
|||||||
background: #000008;
|
background: #000008;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.07em;
|
letter-spacing: 0.07em;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 11pt;
|
font-size: 10pt;
|
||||||
padding: 6px 10px;
|
padding: 7px 10px;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
border-right: 1px solid #77f;
|
border-right: 1px solid #77f;
|
||||||
border-bottom: 1px solid #77f;
|
border-bottom: 1px solid #77f;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
margin-bottom: 10px;
|
|
||||||
font-weight: bold !important;
|
font-weight: bold !important;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
@ -658,38 +716,34 @@ h3 a {
|
|||||||
|
|
||||||
h2, h3, .confignav {
|
h2, h3, .confignav {
|
||||||
background: #002 url("images/tinytitles.png") center center repeat-x !important;
|
background: #002 url("images/tinytitles.png") center center repeat-x !important;
|
||||||
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead, tfoot, th {
|
thead, tfoot, th {
|
||||||
background: #002 url("images/titles.png") repeat-x center center !important;
|
background: #002 url("images/titles.png") repeat-x center center !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.proxyfooter{
|
|
||||||
font-size: 7pt;
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
margin: 0 0 5px 0;
|
margin: 15px 0 5px 0;
|
||||||
cell-padding: 1px;
|
cell-padding: 1px;
|
||||||
font-size: 7.5pt;
|
font-size: 8pt;
|
||||||
background: #000;
|
background: #000;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
table hr {
|
table hr {
|
||||||
padding: 0px 0;
|
padding: 0 0;
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #000;
|
background: #000;
|
||||||
border: 0px solid #99f;
|
border: 0 solid #99f;
|
||||||
margin: 0px -5px;
|
margin: 0 -5px;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tt {
|
table tt {
|
||||||
font-size: 7.5pt;
|
font-size: 8pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
@ -731,25 +785,56 @@ h2.app {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
h4.app, h4.app2 {
|
h4.app, h4.app2 {
|
||||||
margin: 0 10px 2px 10px;
|
font-size: 11pt;
|
||||||
padding: 10px 0 8px 0;
|
padding: 5px;
|
||||||
|
border: 1px solid #99f;
|
||||||
|
border-right: 1px solid #99f;
|
||||||
|
border-bottom: 1px solid #99f;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
font-weight: bold !important;
|
||||||
|
text-transform: uppercase;
|
||||||
|
margin: 5px 10px 5px;
|
||||||
|
color: #fff;
|
||||||
|
background: #022;
|
||||||
|
background: url("images/tinytitles.png") repeat-x scroll center center #000022 !important;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4.app2 {
|
h4.app2 {
|
||||||
clear: left;
|
clear: left;
|
||||||
margin-top: 5px !important;
|
margin-top: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.ag2 {
|
div.ag2 {
|
||||||
margin: 0;
|
margin: 5px -15px -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.app {
|
div.app {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 2px;
|
padding: 0;
|
||||||
height: 90px;
|
min-width: 60px;
|
||||||
width: 112px;
|
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
|
border: 1px solid #55a;
|
||||||
|
border-top: 1px solid #77b;
|
||||||
|
border-left: 1px solid #77b;
|
||||||
|
margin: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
background: -moz-linear-gradient(top, #001, #000);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.app:hover {
|
||||||
|
border: 1px solid #f60;
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.app:last-child {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.app a:link, div.app a:link:hover, div.app a:link:visited, div.app a:link:active {
|
||||||
|
font-size: 8pt !important;
|
||||||
|
text-transform: lowercase;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.appgroup {
|
div.appgroup {
|
||||||
@ -775,12 +860,12 @@ table.search {
|
|||||||
img.app {
|
img.app {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
padding: 6px;
|
padding: 6px 15px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.app2p {
|
img.app2p {
|
||||||
height: 40px;
|
height: 32px;
|
||||||
padding: 3px 6px 0 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.app {
|
table.app {
|
||||||
@ -802,19 +887,28 @@ td.app {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.applabel {
|
.applabel {
|
||||||
background: url('images/header.png') center center repeat-x;
|
background: #001;
|
||||||
-moz-border-radius: 4px;
|
font-size: 8pt;
|
||||||
-khtml-border-radius: 4px;
|
margin: -5px -3px -3px;
|
||||||
border: 2px #00f;
|
padding: 2px 5px;
|
||||||
border-radius: 4px;
|
|
||||||
border-width: 1px;
|
|
||||||
font-size: 9pt;
|
|
||||||
margin: 0;
|
|
||||||
padding: 3px 6px 4px 6px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
min-width: 60px;
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
border-radius: 0 0 2px 2px;
|
||||||
|
background: -moz-linear-gradient(top, #000, #001);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.applabel:hover {
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.applabel:hover {
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.appimg {}
|
||||||
|
|
||||||
/* end home page */
|
/* end home page */
|
||||||
|
|
||||||
tt {
|
tt {
|
||||||
@ -841,7 +935,7 @@ hr {
|
|||||||
color: #99f;
|
color: #99f;
|
||||||
background: #99f;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 0px solid #99f;
|
border: 0 solid #99f;
|
||||||
margin: 3px 0;
|
margin: 3px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -859,8 +953,7 @@ hr {
|
|||||||
|
|
||||||
div.joblog {
|
div.joblog {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
line-height: 130% !important;
|
line-height: 140% !important;
|
||||||
font-size: 90%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div.joblog li {
|
div.joblog li {
|
||||||
@ -915,9 +1008,9 @@ div.joblog hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.joblog ol {
|
div.joblog ol {
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
button, button:visited {
|
button, button:visited {
|
||||||
font: bold 9pt "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
font: bold 9pt "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
||||||
border: 1px outset #66a;
|
border: 1px outset #66a;
|
||||||
@ -932,9 +1025,9 @@ button, button:visited {
|
|||||||
margin: 2px;
|
margin: 2px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
min-width: 60px;
|
min-width: 60px;
|
||||||
-moz-box-shadow: inset 0px 0px 2px 1px #fff;
|
-moz-box-shadow: inset 0 0 2px 1px #fff;
|
||||||
-khtml-box-shadow: inset 0px 2px 8px 0px #fff;
|
-khtml-box-shadow: inset 0 2px 8px 0 #fff;
|
||||||
box-shadow: inset 0px 2px 8px 0px #fff;
|
box-shadow: inset 0 2px 8px 0 #fff;
|
||||||
color: #316;
|
color: #316;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1002,25 +1095,26 @@ button:hover {
|
|||||||
border: 1px solid #f60;
|
border: 1px solid #f60;
|
||||||
background-color: #f60 !important;
|
background-color: #f60 !important;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #fff;
|
-moz-box-shadow: inset 0 0 0 1px #fff;
|
||||||
-khtml-box-shadow: inset 0px 0px 0px 1px #fff;
|
-khtml-box-shadow: inset 0 0 0 1px #fff;
|
||||||
box-shadow: inset 0px 0px 0px 1px #fff;
|
box-shadow: inset 0 0 0 1px #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:active {
|
button:active {
|
||||||
border: 1px solid #f60;
|
border: 1px solid #f60;
|
||||||
background: #202 !important;
|
background: #202 !important;
|
||||||
color: #f60;
|
color: #f60;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #f60;
|
-moz-box-shadow: inset 0 0 0 1px #f60;
|
||||||
box-shadow: inset 0px 0px 0px 1px #f60;
|
box-shadow: inset 0 0 0 1px #f60;
|
||||||
-khtml-box-shadow: inset 0px 0px 0px 1px #f60;
|
-khtml-box-shadow: inset 0 0 0 1px #f60;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
input {
|
input {
|
||||||
margin: 3px 5px 3px 0;
|
margin: 3px 5px 3px 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
input.accept {
|
input.accept {
|
||||||
background: #ffe url('../images/accept.png') no-repeat 2px center;
|
background: #ffe url('../images/accept.png') no-repeat 2px center;
|
||||||
padding: 2px 3px 2px 20px;
|
padding: 2px 3px 2px 20px;
|
||||||
@ -1086,7 +1180,7 @@ input:hover {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
border: 1px solid #f60;
|
border: 1px solid #f60;
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #fff;
|
-moz-box-shadow: inset 0 0 0 1px #fff;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1094,17 +1188,24 @@ input[type=text], input[type=password] {
|
|||||||
margin: 3px 5px 3px 5px;
|
margin: 3px 5px 3px 5px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
select {
|
select {
|
||||||
margin: 3px 5px 3px 5px;
|
margin: 3px 5px 3px 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
min-width: 90px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=text], input[type=password] select {
|
input {
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text], input[type=password] {
|
||||||
background: #001;
|
background: #001;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
}
|
}
|
||||||
|
|
||||||
submit {
|
submit {
|
||||||
margin: 3px 5px 3px 5px;
|
margin: 3px 5px 3px 5px;
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
@ -1112,27 +1213,40 @@ submit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
padding: 5px 20px 0px 20px;
|
padding: 5px 20px 0 20px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p img:first-child {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.formaction {
|
.formaction {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin: -10px -5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.langbox {
|
.langbox {
|
||||||
margin: 4px 5px 0px 5px;
|
margin: 5px 3px 0;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
font-size: 7pt;
|
font-size: 7pt;
|
||||||
width: auto;
|
width: auto;
|
||||||
text-align: center;
|
text-align: right;
|
||||||
float: right;
|
float: right;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.langbox img {
|
.langbox img {
|
||||||
padding: 0 2px; /* Ignored by IE8 */
|
padding: 0 2px; /* Ignored by IE8 */
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* opera targetted hack */
|
||||||
|
x:-o-prefocus, .langbox img {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.langbox img:hover {
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.links {
|
.links {
|
||||||
@ -1153,6 +1267,7 @@ p {
|
|||||||
|
|
||||||
.links li:last-child {
|
.links li:last-child {
|
||||||
padding-bottom: 10px !important;
|
padding-bottom: 10px !important;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.links b {
|
.links b {
|
||||||
@ -1187,7 +1302,7 @@ a:active {
|
|||||||
|
|
||||||
pre {
|
pre {
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
margin: 0px 20px;
|
margin: 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tt {
|
tt {
|
||||||
@ -1217,7 +1332,7 @@ tt {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel {
|
div.graphspanel {
|
||||||
padding: 10px 0px 20px 0px;
|
padding: 10px 0 20px 0;
|
||||||
margin: -16px -16px -11px -16px;
|
margin: -16px -16px -11px -16px;
|
||||||
background: #000012;
|
background: #000012;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px;
|
||||||
@ -1290,18 +1405,18 @@ div.footnote hr{
|
|||||||
color: #99f;
|
color: #99f;
|
||||||
background: #99f;
|
background: #99f;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border: 0px solid #99f;
|
border: 0 solid #99f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.topness {
|
.topness {
|
||||||
font-size: 7.5pt;
|
font-size: 8pt;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-top: -5px;
|
margin-top: -5px;
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fixes for when app is not started and console error loads inside iframe */
|
/* Fixes for when app is not started and console loads inside iframe */
|
||||||
|
|
||||||
body.iframed {
|
body.iframed {
|
||||||
background: transparent url('../dark/images/transparent.gif') !important;
|
background: transparent url('../dark/images/transparent.gif') !important;
|
||||||
@ -1311,12 +1426,4 @@ body.iframed {
|
|||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iframed h1 {
|
|
||||||
margin: 5px 5px 0 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iframed div.sorry {
|
|
||||||
margin: 0 5px 0 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* end iframed console fixes */
|
/* end iframed console fixes */
|
||||||
|
@ -15,7 +15,7 @@ body {
|
|||||||
|
|
||||||
body.iframed {
|
body.iframed {
|
||||||
background: transparent url('../dark/images/transparent.gif') !important;
|
background: transparent url('../dark/images/transparent.gif') !important;
|
||||||
padding-top: 5px;
|
padding: 15px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
@ -38,17 +38,15 @@ h4, label {
|
|||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 10.5pt;
|
font-size: 10.5pt;
|
||||||
text-align: center !important;
|
text-align: left !important;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border: 1px solid #99f;
|
|
||||||
border-top: 2px solid #99f;
|
|
||||||
margin: -6px 0 5px -10px !important;
|
margin: -6px 0 5px -10px !important;
|
||||||
padding: 5px 10px 25px 10px;
|
padding: 5px 10px 5px 10px;
|
||||||
background: #001;
|
background: #001;
|
||||||
text-shadow: 0px 0px 1px rgba(32, 32, 192, 0.3);
|
text-shadow: 0px 0px 1px rgba(32, 32, 192, 0.3);
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: 782px;
|
width: 800px;
|
||||||
letter-spacing: 0.09em;
|
letter-spacing: 0.09em;
|
||||||
background: #001 url("/themes/console/midnight/images/tinytitles.png") repeat-x center center !important;
|
background: #001 url("/themes/console/midnight/images/tinytitles.png") repeat-x center center !important;
|
||||||
}
|
}
|
||||||
@ -74,6 +72,7 @@ textarea, input, select, button, a {
|
|||||||
margin: 2px 0 5px 0;
|
margin: 2px 0 5px 0;
|
||||||
background: #001;
|
background: #001;
|
||||||
color: #eef;
|
color: #eef;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@ -136,10 +135,10 @@ hr {
|
|||||||
|
|
||||||
.control {
|
.control {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 1px 2px 2px 2px;
|
padding: 2px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 60px;
|
min-width: 60px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background: #ddd;
|
background: #ddd;
|
||||||
color: #001 !important;
|
color: #001 !important;
|
||||||
@ -148,11 +147,12 @@ hr {
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.control:hover {
|
.control:hover {
|
||||||
background: #229;
|
background: #77f;
|
||||||
color: #fff;
|
color: #fff !important;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -168,8 +168,9 @@ hr {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
background: #001;
|
background: #001;
|
||||||
border: 4px solid #99f;
|
border: 1px solid #99f;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #99f;
|
-moz-box-shadow: inset 0px 0px 0px 1px #99f;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iframed .panel {
|
.iframed .panel {
|
||||||
@ -215,14 +216,14 @@ hr {
|
|||||||
|
|
||||||
#globalOperationsPanel {
|
#globalOperationsPanel {
|
||||||
background: #001;
|
background: #001;
|
||||||
border: 4px solid #99f;
|
border: 1px solid #99f;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #900;
|
-moz-box-shadow: inset 0px 0px 0px 1px #900;
|
||||||
padding: 5px 5px 10px 5px;
|
padding: 5px 5px 10px 5px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#globalOperationsPanel .control {
|
#globalOperationsPanel .control {
|
||||||
width: 100px !important;
|
min-width: 100px !important;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -111,10 +111,10 @@
|
|||||||
|
|
||||||
#tunnelListPage textarea {
|
#tunnelListPage textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 88px;
|
height: 60px;
|
||||||
padding: 0 0 0 4px;
|
padding: 0 0 0 4px;
|
||||||
color: green;
|
color: green;
|
||||||
margin-bottom: 7px;
|
margin: 5px 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tunnelListPage .footer .control {
|
#tunnelListPage .footer .control {
|
||||||
|
@ -356,10 +356,6 @@ td:first-child {
|
|||||||
border-top: 1px dotted #66f !important;
|
border-top: 1px dotted #66f !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.snarkFileIcon {
|
|
||||||
width: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.snarkFileName {
|
.snarkFileName {
|
||||||
padding: 4px 0px !important;
|
padding: 4px 0px !important;
|
||||||
text-align: left !important;
|
text-align: left !important;
|
||||||
@ -417,7 +413,7 @@ td:first-child {
|
|||||||
-khtml-border-radius: 0 0 5px 5px;
|
-khtml-border-radius: 0 0 5px 5px;
|
||||||
border-radius: 0 0 5px 5px;
|
border-radius: 0 0 5px 5px;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
text-shadow: 0px 2px 2px #999;
|
text-shadow: 0 1px 0 #aaa;
|
||||||
background: #fff url("../../console/light/images/header.png") repeat-x scroll center center;
|
background: #fff url("../../console/light/images/header.png") repeat-x scroll center center;
|
||||||
font-variant: small-caps !important;
|
font-variant: small-caps !important;
|
||||||
box-shadow: 0 1px 3px #999;
|
box-shadow: 0 1px 3px #999;
|
||||||
@ -589,7 +585,7 @@ input.default { width: 1px; height: 1px; visibility: hidden; }
|
|||||||
|
|
||||||
select {
|
select {
|
||||||
background: #fff !important;
|
background: #fff !important;
|
||||||
color: #66f;
|
color: #22f;
|
||||||
font: 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
font: 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding: 2px 2px 2px 3px;
|
padding: 2px 2px 2px 3px;
|
||||||
@ -613,7 +609,7 @@ textarea:hover {
|
|||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: #66f;
|
color: #22f;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
padding: 1px 4px 0px;
|
padding: 1px 4px 0px;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px;
|
||||||
|
321
installer/resources/themes/susidns/midnight/susidns.css
Normal file
321
installer/resources/themes/susidns/midnight/susidns.css
Normal file
@ -0,0 +1,321 @@
|
|||||||
|
/* Susidns Midnight theme by dr|z3d */
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family:"Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
||||||
|
background-color: #000;
|
||||||
|
color: #eef;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.iframed {
|
||||||
|
background: transparent !important;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#navi p {
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#navi a:link {
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
color: #99f;
|
||||||
|
background: #99f;
|
||||||
|
height: 1px;
|
||||||
|
border: 0px solid #99f;
|
||||||
|
width: 100%;
|
||||||
|
margin: 5px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color:#eef;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 8pt;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.addrhlpr {
|
||||||
|
font-size:8pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
color:#eef;
|
||||||
|
font-size:10pt;
|
||||||
|
font-weight:bold;
|
||||||
|
border: 1px solid #99f;
|
||||||
|
padding: 5px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #001 url("../../console/midnight/images/titles.png") repeat-x scroll center center !important;
|
||||||
|
letter-spacing: 0.08em;
|
||||||
|
padding: 6px;
|
||||||
|
text-shadow: 0 0 2px #001100;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color:#f60;
|
||||||
|
text-decoration:none;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration:underline;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
|
||||||
|
color:#ee9;
|
||||||
|
font-size: 9pt;
|
||||||
|
padding:5px 10px;
|
||||||
|
font-size:10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
|
||||||
|
color:#ee9;
|
||||||
|
line-height:12pt;
|
||||||
|
padding:5px 10px;
|
||||||
|
font-size:8pt;
|
||||||
|
vertical-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul {
|
||||||
|
margin: 0 20px 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
color:#ee9;
|
||||||
|
line-height:12pt;
|
||||||
|
margin: 0;
|
||||||
|
font-size:8pt;
|
||||||
|
list-style: square;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.list1 {
|
||||||
|
background-color:#001
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.list0 {
|
||||||
|
background-color:#000;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.messages {
|
||||||
|
background-color:#000;
|
||||||
|
color:#ee9;
|
||||||
|
border: 1px solid #99f;
|
||||||
|
padding: 5px;
|
||||||
|
margin: 5px 0 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#help {
|
||||||
|
border: 1px solid #99f;
|
||||||
|
padding: 10px 20px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0 0 15px;
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.footer {
|
||||||
|
font-size:7pt;
|
||||||
|
text-align: center;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.buttons, #buttons {
|
||||||
|
text-align: right;
|
||||||
|
margin: 5px 0 -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.illustrate {
|
||||||
|
margin: 20px 0 15px;
|
||||||
|
padding: 10px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid #001;
|
||||||
|
font-size: 10pt;
|
||||||
|
-moz-box-shadow: inset 0px 0px 1px 0px #002;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#book table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.destinations textarea {
|
||||||
|
width: 100%;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page {
|
||||||
|
color:#ee9;
|
||||||
|
margin: 10px 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 8pt !important;
|
||||||
|
-moz-box-shadow: inset 0px 0px 1px 0px #002;
|
||||||
|
}
|
||||||
|
|
||||||
|
.iframed .page {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit], input[type=reset] {
|
||||||
|
border: 1px outset #999;
|
||||||
|
background: #ddf;
|
||||||
|
color: #001;
|
||||||
|
margin: 5px;
|
||||||
|
font: bold 8pt "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
||||||
|
padding: 1px 2px;
|
||||||
|
text-decoration: none;
|
||||||
|
min-width: 110px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
-moz-box-shadow: inset 0px 2px 8px 0px #fff;
|
||||||
|
color: #006;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit]:hover, input[type=reset]:hover {
|
||||||
|
background: #000;
|
||||||
|
color: #f60;
|
||||||
|
border: 1px solid #f60;
|
||||||
|
-moz-box-shadow: inset 0 1px 1px 0 #ee9;
|
||||||
|
box-shadow: inset 0 1px 1px 0 #ee9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
input[type=reset] {
|
||||||
|
border: 1px outset #999;
|
||||||
|
background: #ddf;
|
||||||
|
color: #001;
|
||||||
|
margin: 5px;
|
||||||
|
font: bold 8pt "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, Tahoma, Helvetica, sans-serif;
|
||||||
|
padding: 1px 2px;
|
||||||
|
text-decoration: none;
|
||||||
|
min-width: 110px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
-moz-box-shadow: inset 0px 2px 8px 0px #fff;
|
||||||
|
color: #006;
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=reset]:hover {
|
||||||
|
background: #22a;
|
||||||
|
color: #fff;
|
||||||
|
border: 1px solid #f60;
|
||||||
|
opacity: 1.0;
|
||||||
|
-moz-box-shadow: inset 0px 0px 0px 1px #fff;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
input.accept {
|
||||||
|
background: #ddf url('/themes/console/images/accept.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 20px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.add {
|
||||||
|
background: #ddf url('/themes/console/images/add.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 20px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.cancel {
|
||||||
|
background: #ddf url('/themes/console/images/cancel.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 20px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.delete {
|
||||||
|
background: #ddf url('/themes/console/images/delete.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 20px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.reload {
|
||||||
|
background: #ddf url('/themes/console/images/arrow_refresh.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 20px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.search {
|
||||||
|
background: #ddf url('/themes/console/images/magnifier.png') no-repeat 2px center;
|
||||||
|
padding: 2px 3px 2px 24px;
|
||||||
|
min-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.search[type="text"] {
|
||||||
|
background: #eef url('/themes/console/images/magnifier.png') no-repeat 2px center;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 9pt;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: left;
|
||||||
|
padding: 3px 4px !important;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid #99f;
|
||||||
|
background: #000 none !important;
|
||||||
|
color: #99f;
|
||||||
|
margin: 2px 4px 2px 0;
|
||||||
|
font: bold 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
||||||
|
min-width: 64px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"] {
|
||||||
|
color: #eef;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit], input[type=reset] {
|
||||||
|
color: #99f;
|
||||||
|
background: #000;
|
||||||
|
border: 1px outset #119;
|
||||||
|
padding: 2px !important;
|
||||||
|
box-shadow: 0 1px 1px 0 #119 inset;
|
||||||
|
font: bold 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
min-height: 22px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit]:active, input[type=reset]:active {
|
||||||
|
background: #f60 !important;
|
||||||
|
color: #eef !important;
|
||||||
|
border: 1px solid #f60;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
color: #eef;
|
||||||
|
background: #000;
|
||||||
|
border: 1px solid #99f;
|
||||||
|
padding: 2px !important;
|
||||||
|
font: bold 8pt "Lucida Sans Unicode","Bitstream Vera Sans",Verdana,Tahoma,Helvetica,sans-serif;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100px;
|
||||||
|
spell-check: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:focus, textarea:focus {
|
||||||
|
color: #eef;
|
||||||
|
}
|
Reference in New Issue
Block a user