Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/vendor/
/Config/Memcache.php
/.idea
2 changes: 1 addition & 1 deletion Library/HTML/Components.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public static function serverResponse($hostname, $port, $data)
*
* @return String
*/
public static function apiList($iniAPI = '', $id)
public static function apiList($iniAPI, $id)
{
return '<select id="' . $id . '" name="' . $id . '">
<option value="Server" ' . self::selected('Server', $iniAPI) . '>Server API</option>
Expand Down
60 changes: 23 additions & 37 deletions Public/Styles/Style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ a {
}

a:hover {
color: #A00
color: #A00;
}

input,select,textarea {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
border-width: 1px;
border-style: solid;
border-color: #AAA;
border : 1px solid #aaaaaa;
width: 298px;
font-family: Tahoma;
font-size: 1em;
Expand All @@ -37,9 +35,7 @@ select {
}

input:focus,textarea:focus {
border-width: 1px;
border-style: solid;
border-color: #EEE;
border : 1px solid #eeeeee;
}

input:hover {
Expand All @@ -61,9 +57,7 @@ hr {
}

.menu {
border-width: 1px;
border-style: solid;
border-color: #a0312a;
border : 1px solid #a0312a;
color: #eee;
width: 198px;
}
Expand All @@ -81,7 +75,7 @@ hr {
"Courier New",
Courier,
monospace;
cursor: hand;
cursor: pointer;
}

.loading {
Expand Down Expand Up @@ -124,51 +118,43 @@ hr {
}

.header {
border-width: 1px;
border-style: solid;
border-color: #9c3c36;
border : 1px solid #9c3c36;
background: #B5463F;
font-weight: bold;
color: #fff;
clear: both
clear: both;
}

.sub-header {
border-width: 1px;
border-style: solid;
border-color: #514845;
border : 1px solid #514845;
background: #635855;
font-weight: bold;
color: #fff;
clear: both;
margin-top: 10px
margin-top: 10px;
}

.container {
border-width: 1px;
border-style: solid;
border-color: #d0d0d0;
border : 1px solid #d0d0d0;
background: #ebebeb;
font-weight: inherit;
color: #000;
margin-top: 1px;
clear: both
clear: both;
}

.list {
border-width: 1px;
border-style: solid;
border-color: #9c3c36;
border : 1px solid #9c3c36;
background: #B5463F;
font-weight: bold;
color: #fff
color: #fff;
}

.button {
padding: 1px 20px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px
border-radius: 2px;
}

.live {
Expand All @@ -186,30 +172,30 @@ hr {
monospace;
font-size: 12px;
overflow: visible;
white-space: pre-wrap
white-space: pre-wrap;
}

.line {
min-height: 18px;
padding-top: 3px;
padding-bottom: 2px;
clear: both
clear: both;
}

.left {
float: left;
min-width: 126px;
font-weight: bold
font-weight: bold;
}
.right {
float: right
float: right;
}
.setting {
min-width: 180px
min-width: 180px;
}

.slabs {
min-width: 104px
min-width: 104px;
}
.help {
cursor:help;
Expand All @@ -224,15 +210,15 @@ hr {
}

.grey {
color: #EEE
color: #EEE;
}

.green {
color: #40aaba
color: #40aaba;
}

.red {
background: #b5463f;
color: #fff;
font-weight: bold
font-weight: bold;
}
2 changes: 1 addition & 1 deletion View/Stats/Items.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
<div class="container corner full-size padding" style="text-align:right;">
<span style="float:left;">
<input style="witdh:200px;" class="header loading" type="submit" id="loading" value="Waiting for server response ..."/>
<input style="width:200px;" class="header loading" type="submit" id="loading" value="Waiting for server response ..."/>
</span>
<input class="header" type="submit" onclick="javascript:executeClear('container')" value="Clear Console"/>
<input class="header" id="hide" type="submit" onclick="javascript:executeHideShow('console', 'hide');javascript:this.blur();" value="Hide Console"/>
Expand Down