2011-02-02 22:48:52 +01:00
|
|
|
/**
|
|
|
|
* @provides aphront-dark-console-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.dark-console {
|
|
|
|
background: #555555;
|
|
|
|
color: #eeeeee;
|
|
|
|
width: 100%;
|
|
|
|
font-family: "Verdana";
|
|
|
|
font-size: 11px;
|
|
|
|
border-bottom: 2px solid #000000;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console-tabs {
|
|
|
|
width: 180px;
|
|
|
|
background: #222222;
|
|
|
|
border-right: 1px solid #888888;
|
|
|
|
padding: 2.5em 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a.dark-console-tab {
|
|
|
|
padding: .75em 12px;
|
|
|
|
text-align: right;
|
|
|
|
background: #444444;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid #666666;
|
|
|
|
border-width: 1px 0;
|
|
|
|
border-right-color: #888888;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
display: block;
|
|
|
|
color: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.dark-console-tab-selected {
|
|
|
|
margin-right: -1px;
|
|
|
|
padding-right: 13px;
|
|
|
|
background: #555555;
|
|
|
|
border-color: #888888;
|
|
|
|
border-right-color: #555555;
|
|
|
|
color: #eeeeee;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-03 07:38:42 +01:00
|
|
|
.dark-console .aphront-table-view {
|
|
|
|
background: #888888;
|
|
|
|
color: #eeeeee;
|
|
|
|
margin: 1em 1%;
|
|
|
|
width: 98%;
|
|
|
|
border-color: #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console .aphront-table-view th {
|
|
|
|
background: #333333;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console .aphront-table-view td.header {
|
|
|
|
background: #444444;
|
|
|
|
color: #ffffff;
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console .aphront-table-view tr.alt {
|
|
|
|
background: #666666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console .aphront-table-view tr.no-data td {
|
|
|
|
color: #dddddd;
|
|
|
|
}
|
2011-04-05 21:24:21 +02:00
|
|
|
|
|
|
|
.dark-console-panel-ErrorLog {
|
|
|
|
max-height: 500px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console-panel-error-details {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-console-panel-error-separator {
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
border-bottom: 1px solid #b7b7b7;
|
|
|
|
border-top: 1px solid #b7b7b7;
|
|
|
|
height: 2px;
|
|
|
|
}
|
|
|
|
|