mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-08-02 12:07:18 +00:00
add key binding
This commit is contained in:
150
web/css/page.css
Normal file
150
web/css/page.css
Normal file
@@ -0,0 +1,150 @@
|
||||
.topHead{
|
||||
background: #000;
|
||||
height: 42px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.topHead h1{
|
||||
color: rgb(204,204,204);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.topHead .topBtn{
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.mainTableWrapper{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.mainTableWrapper table{
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.mainTableWrapper td,
|
||||
.mainTableWrapper th{
|
||||
padding: 4px 12px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.mainTableWrapper tbody tr{
|
||||
color: #AAA;
|
||||
}
|
||||
|
||||
.mainTableWrapper tbody tr.record_status_done{
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.mainTableWrapper .col_id{
|
||||
width: 25px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.mainTableWrapper .col_code{
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.mainTableWrapper .col_method{
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.mainTableWrapper .col_host{
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
.mainTableWrapper tr.row_odd{
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.mainTableWrapper tr.row_even{
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
.uk-table-hover tbody tr:hover{
|
||||
cursor: pointer;
|
||||
background: #CCC;
|
||||
}
|
||||
|
||||
.resHeader{
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.resBody textarea{
|
||||
width: 400px;
|
||||
height: 280px;
|
||||
}
|
||||
|
||||
.subTitle{
|
||||
padding-left: 6px;
|
||||
border-left: 3px solid #1FA2D6;
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.detail{
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.overlay_mask{
|
||||
position: fixed;
|
||||
top:0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #EEE;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.recordDetailOverlay{
|
||||
z-index: 1;
|
||||
width: 61.8%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
background: #FFF;
|
||||
border-left: 1px solid #CCC;
|
||||
top: 0;
|
||||
padding: 10px 10px 20px 10px;
|
||||
overflow-y:scroll;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
|
||||
.recordDetailOverlay .escBtn{
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 8px;
|
||||
color: #777;
|
||||
cursor: pointer;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.recordDetailOverlay li{
|
||||
white-space: nowrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.data_id{
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.http_status{
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.http_status_200{
|
||||
color: #408E2F;
|
||||
}
|
||||
|
||||
.http_status_404,
|
||||
.http_status_500,
|
||||
.http_status_501,
|
||||
.http_status_502,
|
||||
.http_status_503,
|
||||
.http_status_504
|
||||
{
|
||||
color: #910A0A;
|
||||
}
|
Reference in New Issue
Block a user