Moved towards smarty templates, support php7, switched to mysqli,
finalized language support and fixed some more bugs
This commit is contained in:
+203
-164
@@ -1,164 +1,203 @@
|
||||
body {
|
||||
background-color: #fff;
|
||||
background-image: url("../images/background.png");
|
||||
background-repeat: repeat-x;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 11px;
|
||||
margin: 12px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
select {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
height: 120px;
|
||||
width: 350px;
|
||||
}
|
||||
|
||||
.help {
|
||||
border-bottom: 1px dotted #333;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
table.footer {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.footer td {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.header {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.header td {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.info {
|
||||
background-color: #666;
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 800px;
|
||||
}
|
||||
|
||||
table.info td {
|
||||
background-color: #dcdcdc;
|
||||
border: 1px #fff solid;
|
||||
color: #000;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
table.info td.header {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.info td.header_right {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.info td.footer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.info td.label {
|
||||
vertical-align: top;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
table.info td.value {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.info td.help {
|
||||
vertical-align: top;
|
||||
|
||||
}
|
||||
|
||||
table.menu {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.menu td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
table.title {
|
||||
width: 800px;
|
||||
}
|
||||
|
||||
table.title td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table.submenu {
|
||||
|
||||
}
|
||||
|
||||
table.submenu td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
table.subnetview {
|
||||
background-color: #dcdcdc;
|
||||
}
|
||||
|
||||
table.subnetview td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
padding: 2px;
|
||||
}
|
||||
body {
|
||||
background-color: #fff;
|
||||
background-image: url("../images/background.png");
|
||||
background-repeat: repeat-x;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 11px;
|
||||
margin: 12px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.icon {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
select {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
border: 0px;
|
||||
font-family: Verdana, Arial, Helvetica, Sans-serif;
|
||||
font-size: 100%;
|
||||
height: 120px;
|
||||
width: 350px;
|
||||
}
|
||||
|
||||
.help {
|
||||
border-bottom: 1px dotted #333;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
table.footer {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.footer td {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.header {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.header td {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.info {
|
||||
background-color: #666;
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
width: 800px;
|
||||
}
|
||||
|
||||
table.info td {
|
||||
background-color: #dcdcdc;
|
||||
border: 1px #fff solid;
|
||||
color: #000;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
table.info td.header {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
table.info td.header_right {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
height: 25px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.info td.footer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table.info td.label {
|
||||
vertical-align: top;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
table.info td.value {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.info td.help {
|
||||
vertical-align: top;
|
||||
|
||||
}
|
||||
|
||||
table.menu {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table.menu td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
table.title {
|
||||
width: 800px;
|
||||
}
|
||||
|
||||
table.title td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table.submenu {
|
||||
|
||||
}
|
||||
|
||||
table.submenu td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
table.initials {
|
||||
border: 1px solid rgb(170, 170, 170);
|
||||
margin-bottom: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
table.initials td {
|
||||
padding: 8px 2px !important;
|
||||
}
|
||||
|
||||
table.initials a {
|
||||
border: 1px solid rgb(170, 170, 170);
|
||||
padding: 4px 8px;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
background: -moz-linear-gradient(center top , rgb(255, 255, 255), rgb(204, 204, 204)) repeat scroll 0% 0% transparent;
|
||||
}
|
||||
|
||||
table.subnetview {
|
||||
background-color: #dcdcdc;
|
||||
}
|
||||
|
||||
table.subnetview td {
|
||||
border: 0px;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#breadcrumbs {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#breadcrumbs li {
|
||||
float: left;
|
||||
padding-left: 15px;
|
||||
background: url(../images/breadcrumb.gif) no-repeat 2px 2px;
|
||||
}
|
||||
|
||||
#breadcrumbs li.first {
|
||||
padding-left: 0;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user