~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/ecosystem/workspace/ecosystem/uwa-server-original/server/public/css/uwa-iframe.css

  • Committer: parra
  • Date: 2010-03-15 02:39:02 UTC
  • Revision ID: svn-v4:ac5bba68-f036-4e09-846e-8f32731cc928:trunk/gelee:1433
merged gelee at svn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright Netvibes 2006-2009.
 
3
 * This file is part of Exposition PHP Server.
 
4
 * 
 
5
 * Exposition PHP Server is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU Lesser General Public License as published by
 
7
 * the Free Software Foundation, either version 3 of the License, or
 
8
 * (at your option) any later version.
 
9
 * 
 
10
 * Exposition PHP Server is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU Lesser General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with Exposition PHP Server. If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
/* netvibes base stylesheets */
 
20
 
 
21
@import "http://www.netvibes.com/themes/base/nv-core.css";
 
22
@import "http://www.netvibes.com/themes/base/nv-typo.css";
 
23
@import "http://www.netvibes.com/themes/base/nv-module.css";
 
24
@import "http://www.netvibes.com/themes/base/nv-icons.css";
 
25
 
 
26
/* to have a nicer look & feel, we import parts of the netvibes garlic theme */
 
27
 
 
28
@import "http://www.netvibes.com/themes/exposition-blueberry/nv-core.css";
 
29
@import "http://www.netvibes.com/themes/exposition-blueberry/nv-module.css";
 
30
@import "http://www.netvibes.com/themes/exposition-blueberry/nv-icons.css";
 
31
 
 
32
/* base layout */
 
33
 
 
34
* {
 
35
        margin: 0;
 
36
        padding: 0;
 
37
}
 
38
 
 
39
html, body.moduleIframe, #moduleContent {
 
40
        background: #FFF;
 
41
}
 
42
 
 
43
html {
 
44
        padding: 0;
 
45
        margin: 0;
 
46
}
 
47
 
 
48
body {
 
49
        padding: 0;
 
50
        margin: 0;
 
51
        text-align: left;
 
52
        color: #333;
 
53
        height: 100%;
 
54
}
 
55
 
 
56
#moduleContent {
 
57
        text-align: left;
 
58
        border-top: 0;
 
59
}
 
60
 
 
61
/* rules imported from from  http://www.netvibes.com/themes/base/screen.css */
 
62
 
 
63
a:link, a:visited{
 
64
        color: #333;
 
65
}
 
66
a:hover{
 
67
        color: #F60;
 
68
}
 
69
img{
 
70
        border: 0;
 
71
        -ms-interpolation-mode: bicubic;
 
72
}
 
73
table {
 
74
        padding: 0;
 
75
        margin: 0;
 
76
}
 
77
ul {
 
78
        padding-left: 5px;
 
79
}
 
80
li {
 
81
        list-style-type: none;
 
82
        background: transparent url(base/img/bullet.png) no-repeat left 0.5ex;
 
83
        margin-bottom: 2px;
 
84
        padding-left: 10px;
 
85
}
 
86
 
 
87
/* rules imported from from  http://www.netvibes.com/themes/exposition-blueberry/screen.css */
 
88
 
 
89
a {
 
90
        text-decoration: none;
 
91
}
 
92
 
 
93
/* hand cursor not needed in iframe environment */
 
94
 
 
95
.moduleHeader {
 
96
        cursor:inherit;
 
97
}
 
98
 
 
99
/* tune the editContent */
 
100
 
 
101
.editContent {
 
102
        display:block;
 
103
        margin-bottom:0;
 
104
}
 
105
 
 
106
/* should be moved to nv-module/uwa-module stylesheet */
 
107
 
 
108
.moduleStatus .configure {
 
109
        display: block;
 
110
        width: 20px;
 
111
        height: 18px;
 
112
        margin: 0;
 
113
        position: absolute;
 
114
        top: -1px;
 
115
        right: 5px;
 
116
        background-image: url(base/img/options.png);
 
117
        text-decoration: none;
 
118
        border: none;
 
119
}
 
120