88 lines
1.3 KiB
CSS
88 lines
1.3 KiB
CSS
html
|
|
{
|
|
font-family: Verdana,Helvetica,Arial,sans-serif;
|
|
font-size: 10pt;
|
|
background-color:white;
|
|
color:black;
|
|
}
|
|
|
|
#usertable, #dirtable {
|
|
border-collapse:collapse;
|
|
}
|
|
|
|
#usertable #hcol-username {
|
|
width:120px;
|
|
}
|
|
|
|
#usertable #hcol-name {
|
|
width:264px;
|
|
}
|
|
|
|
#dirtable #hcol-directory {
|
|
width:120px;
|
|
}
|
|
|
|
#dirtable #hcol-groups {
|
|
width:200px;
|
|
}
|
|
|
|
#dirtable #hcol-files {
|
|
width:150px;
|
|
}
|
|
|
|
#usertable th, #usertable td, #dirtable th, #dirtable td {
|
|
border:1px solid black;
|
|
text-align:left;
|
|
padding:2px;
|
|
}
|
|
|
|
dt {
|
|
display:block;
|
|
float:left;
|
|
width:20px;
|
|
clear:both;
|
|
}
|
|
|
|
dd {
|
|
display:block;
|
|
margin:0;
|
|
}
|
|
|
|
/*
|
|
* Autocomplete styles
|
|
*/
|
|
/* Suggestion list */
|
|
#autocomplete {
|
|
position: absolute;
|
|
border: 1px solid;
|
|
overflow: hidden;
|
|
z-index: 100;
|
|
}
|
|
#autocomplete ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
#autocomplete li {
|
|
background: #fff;
|
|
color: #000;
|
|
white-space: pre;
|
|
cursor: default;
|
|
}
|
|
#autocomplete li.selected {
|
|
background: #0072b9;
|
|
color: #fff;
|
|
}
|
|
/* Animated throbber */
|
|
input.form-autocomplete {
|
|
background-image: url(images/throbber.gif);
|
|
background-repeat: no-repeat;
|
|
background-position: 100% 2px;
|
|
}
|
|
input.throbbing {
|
|
background-position: 100% -18px;
|
|
}
|
|
|
|
a img.actionicon {
|
|
border:0;
|
|
}
|