blob: 2b7d8d301d99f98d6d1e5b9ac7e909bb9e9ced67 (
plain) (
blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
** IE5.0 Fix Stylesheet
*/
/* IE 4&5 interpret keyword sizes one off */
body {
font-size: xx-small;
}
* html #visual-portal-wrapper {
width: 100%;
}
* html*#visual-portal-wrapper {
width: auto;
}
input {
margin-bottom: 1px; /* bug fix */
}
table.listing td.top {
/* insane IE row bug workaround */
position: relative;
left: -1px;
top: -1px;
}
/* 5.0 doesn't like the background icon for external links and user */
.link-external,
.external {
background: none;
padding: 0;
}
li#personaltools-userpage,
li#personaltools-login,
li#personaltools-logout {
background: none;
padding-left: none;
}
/* try to prevent the sidebar from getting pushed to the bottom */
.portlet {
width: 13.5em;
overflow: hidden;
}
#portal-column-one {
position: absolute;
overflow: visible;
top: 0px;
}
textarea {
width: 78% !important;
}
#portal-column-content {
margin: 0 0 0 -12.2em !important;
}
#portal-column-content #content {
margin-left: 12.2em;
margin-top: 2.8em;
/* padding-top: 0.3em;*/
position: relative;
}
/* slightly smaller top margin for the content area */
#portlet-contentViews {
background: transparent;
width: 76% !important;
line-height: 1.1em;
}
#portlet-contentViews li a,
#portlet-contentViews .selected a,
#portlet-contentViews li a:hover {
padding-bottom: 0.1em;
margin-top: 1px;
padding-top: -1px;
}
#portlet-contentViews li.selected {
background-color: White;
padding-top: -1px;
}
#portlet-contentViews li {
padding-top: 0;
}
#portlet-personal {
position: absolute;
text-align: right;
top: 0px;
left: 0px;
/*width: 760px !important;*/
width: 100% !important;
white-space: nowrap !important;
padding: 0;
margin: 0;
border: none;
background: transparent;
}
#portal-personaltools {
padding-bottom: 0;
background: transparent;
}
#portal-personaltools li a {
padding-left: 2em !important;
margin-left: 2em !important;
}
#portal-footer {
margin: 0 0 0 15em;
}
.urlexpansion {
display: none !important;
}
#documentSubtitle {
margin: -1em 0 0.6em 1em;
}
/*div{ border:1px solid Red !important;}*/
|