blob: 9661442eb808750655d3fa2e53ed42df527abab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/***** RoundCube|Mail address book task styles *****/
body.iframe,
{
background-color: #F9F9F9;
}
#ldapsearch-title
{
height: 12px !important;
/* height: 20px; */
padding: 4px 20px 3px 20px;
border-bottom: 1px solid #999999;
color: #333333;
font-size: 11px;
font-weight: bold;
background-color: #EBEBEB;
background-image: url(images/listheader_aqua.gif);
}
#ldapsearch-details
{
padding: 15px 20px 10px 20px;
}
#ldapsearch-details table td.title
{
color: #666666;
font-weight: bold;
text-align: right;
padding-right: 10px;
}
#ldapAddressList
{
width: 100%;
table-layout: fixed;
/* css hack for IE */
width: expression(document.getElementById('addresslist').clientWidth);
}
#ldapAddressList table
{
border-top: 1px solid #999999;
}
#ldap-search-results div
{
width: 100%;
color: red;
background-color: green;
}
|