aboutsummaryrefslogtreecommitdiffstats
path: root/umc-iui/src/main/resources/webroot/umc-topo/css/main.css
blob: 4475f86d3918ac38c0e547e878ea9e0c8bb82cbc (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
@CHARSET "UTF-8";

.popupContent {
	position: absolute;
	visibility: hidden;
	overflow: hidden;
	background-color: #F9F9F9;
	padding: 0px;
	border: 1px solid #cccccc;
	-moz-border-radius: 10px;
	-webkit-box-shadow: 0 0 10px #ccc;
	box-shadow: 0 0 10px #ccc;
	margin: 20px auto;
	background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
	background-image: -webkit-gradient(linear, left top, bottom, from(#ffffff),
		to(#f2f2f2) );
	z-index: 50;
}

.dialogTab {
	width: 100%;
	height: auto;
}

.menu {
	/* visibility: hidden; */
	font-family: arial, sans-serif;
	margin: 0;
	z-index: 50;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
	position: relative;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 104px;
	height: 30px;
	color: #000;
	border: 1px solid #fff;
	border-width: 1px 1px 0 0;
	background: #65BBF9;
	line-height: 30px;
	font-size: 11px;
}
/* make the dropdown ul invisible */
.menu ul li ul {
	display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
	/* color: #fff; */
	background: #65BBF9;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
	display: block;
	position: absolute;
	top: 0px;
	left: 104px;
	width: 105px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
	display: block;
	background: #faeec7;
	color: #000;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
	background: #dfc184;
	color: #000;
}

li {
	list-style-type: none;
}

#NS {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
}

#VIM {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
}

.sigma-edge {
	stroke: #14191C;
}

.sigma-node {
	fill: green;
	stroke: #14191C;
	stroke-width: 2px;
}

.infoDialog {
	font-family: arial, sans-serif;
	margin: 0;
	z-index: 50;
	width: auto;
	height: auto;
	position: absolute;
	background-color: #F9F9F9;
	padding: 0px;
	border: 1px solid #cccccc;
}

.infoDialog table{
    display: table;
    border-collapse: collapse;
    border-spacing: 0px!important;
    border-color: grey;
    border: 1px solid #cccccc;
}

.infoDialog table td{
    border: 1px solid #cccccc;
    padding: 0px;
}

/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.infoDialog table tr td a {
	display: block;
	text-align: center;
	text-decoration: none;
	width: auto;
	height: 30px;
	color: #000;
	border: 1px solid #fff;
	border-width: 0px 0px 0 0;
	background: #65BBF9;
	line-height: 30px;
	font-size: 11px;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.infoDialog table tr td:hover a {
	/* color: #fff; */
	/* background: #35A7F9; */
}