Jan Dittberner
e1f334c66c
* add COPYING file with the GPL text * update copyright information in DAVAdmin's files
106 lines
2 KiB
CSS
106 lines
2 KiB
CSS
/*
|
|
* Copyright (c) 2007, 2008 Jan Dittberner
|
|
*
|
|
* This file is part of DAVAdmin.
|
|
*
|
|
* DAVAdmin is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* DAVAdmin is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with DAVAdmin; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
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;
|
|
}
|