26 lines
519 B
CSS
26 lines
519 B
CSS
|
|
.loading_panel {
|
||
|
|
display: block;
|
||
|
|
position: fixed;
|
||
|
|
z-index: 1000;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
text-align: center;
|
||
|
|
padding-top: 20%;
|
||
|
|
background: rgba( 255, 255, 255, .8 )
|
||
|
|
url('./../images/loading.gif')
|
||
|
|
50% 25%
|
||
|
|
no-repeat;
|
||
|
|
}
|
||
|
|
|
||
|
|
#searchResultDiv table
|
||
|
|
{
|
||
|
|
background: white;
|
||
|
|
border: 1px sold lightyellow;
|
||
|
|
}
|
||
|
|
|
||
|
|
#searchResultDiv tr:hover {
|
||
|
|
background-color: lightyellow;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|