summaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.topologymodeler/src/main/webapp/css/topologymodeler.css
blob: 18f83ead0b1a455bb2ecba9f22cc0813910d16ce (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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*******************************************************************************
 * Copyright (c) 2012-2013 University of Stuttgart.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *    Uwe Breitenbücher - initial API and implementation and/or initial documentation
 *    Oliver Kopp - improvements
 *    Yves Schubert - switch to bootstrap 3
 *******************************************************************************/

/* used if elements should be hidden forever. Cannot be undone with $(...).show() */
.hidden {
	display: none;
}

.fileupload {
	display: none;
}

.overflowhidden {
	overflow: hidden;
	text-overflow: ellipsis;
}


body {
	background-color: white;
	margin: 0px;
}

#loading {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%; z-index: 200;
	background-color: white;
	z-index: 2000;
}

#topbar {
	padding: 5px;
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 600;
	background-color: white;
}

/* override jquery-ui.css */
.ui-widget {
	font-size: 1.0em;
	font-family: Arial, Helvetica, sans-serif;
}

a:hover {
	color:#1b911b;
	background-color:#f0f0f0;
}

#drawingarea {
	height: 80em;
	position: relative;
}

#drawingarea.editview {
	background: rgb(240, 246, 255);
	background-image: -ms-linear-gradient(top, #FFFFFF 0%, rgb(243, 243, 243) 100%);
	background-image: -moz-linear-gradient(top, #FFFFFF 0%, rgb(243, 243, 243) 100%);
	background-image: -o-linear-gradient(top, #FFFFFF 0%, rgb(243, 243, 243) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, rgb(243, 243, 243)));
	background-image: -webkit-linear-gradient(top, #FFFFFF 0%, rgb(243, 243, 243) 100%);
	background-image: linear-gradient(to bottom, #FFFFFF 0%, rgb(243, 243, 243) 100%);
}

#drawingarea.printview {
}

/* currently not used */
div.focusedElement {
	border: 3px dotted rgb(0, 152, 255);

	/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(top, #FFFFFF 0%, rgb(153, 243, 255) 100%);

	/* Mozilla Firefox */
	background-image: -moz-linear-gradient(top, #FFFFFF 0%, rgb(153, 243, 255) 100%);

	/* Opera */
	background-image: -o-linear-gradient(top, #FFFFFF 0%, rgb(153, 243, 255) 100%);

	/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, rgb(153, 243, 255)));

	/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(top, #FFFFFF 0%, rgb(153, 243, 255) 100%);

	/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to bottom, #FFFFFF 0%, rgb(153, 243, 255) 100%);
}


div.NodeTemplateShape.selected {
	background: rgb(216, 238, 255);
	border: 2px solid rgb(255, 127, 26);


	/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(top, #FFFFFF 0%, #FFD391 100%);

	/* Mozilla Firefox */
	background-image: -moz-linear-gradient(top, #FFFFFF 0%, #FFD391 100%);

	/* Opera */
	background-image: -o-linear-gradient(top, #FFFFFF 0%, #FFD391 100%);

	/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #FFD391));

	/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #FFD391 100%);

	/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFD391 100%);
}

div.content {
	overflow: hidden;
	width: 100%;
}

.renderMode.ui-draggable {
	display:none;
}

div.menu {
	display:none;
}

._jsPlumb_overlay {
	z-index: 5000;
}

/* overriding dimensions.css to overcome problems with non-standard fonts and breaking cells */
.u-size3of5,
.u-size6of10 {
	width: 59%;
}
.u-size4of5 {
	width: 79%;
}

.breakword {
	overflow-wrap: break-word;
}

a.topbutton {
	margin-right: 10px;
}

#selectionbox {
	position: absolute;
	border-style: dashed;
	border-width: 3px;
	border-color: black;
	background-color: cyan;
	opacity: 0.15;
	z-index: 30;
	display: none;
}

#editorArea {
	width: 100%;
	height: 100%;
	margin-top: 45px;
}

#nodeTemplateInformationSection > label {
	display: inline-block;
	width: 47px;
}

.form-horizontal .controls > span {
	margin-top: 5px;
	display: inline-block;
}

/* reset editable style */
.editable-click {
	border-bottom: none;
}

a.editable-click {
	border-bottom: none;
}

a.editable-click:hover {
	border-bottom: none;
}


/* adding a req/cap */

div.modal-body > form.addReqForm > div.propertiesContainer {
	border: 1px solid #aeaeae;
	background: #ffffff;
	margin: 7px;
	width: 198px;
	border-radius: 7px;
	padding: 5px;
	float: left;
	overflow-x: hidden;
	display: none;
}

div.modal-body > form.addReqForm > div.propertiesContainer > div.header {
	background: rgb(241, 241, 241);
	border-bottom: 1px solid #aeaeae;
	float: left;
	width: 198px;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	margin-bottom: 6px;
}

div.modal-body > form.addReqForm > div.propertiesContainer > div.header > a {
	float: right;
	height: 6px;
}

div.modal-body > form.addReqForm > div.propertiesContainer > div.content > span.namespace {
	display: none;
}

div.modal-body > form.addReqForm > div.propertiesContainer > div.content > span.elementName {
	display: none;
}

div.modal-body > form.addReqForm > div.propertiesContainer > div.content table {
	float: left;
}

div.modal-body > form.addCapForm > div.propertiesContainer {
	border: 1px solid #aeaeae;
	background: #ffffff;
	margin: 7px;
	width: 198px;
	border-radius: 7px;
	padding: 5px;
	float: left;
	overflow-x: hidden;
	display: none;
}

div.modal-body > form.addCapForm > div.propertiesContainer > div.header {
	background: rgb(241, 241, 241);
	border-bottom: 1px solid #aeaeae;
	float: left;
	width: 198px;
	padding: 5px;
	margin-top: -5px;
	margin-left: -5px;
	margin-bottom: 6px;
}

div.modal-body > form.addCapForm > div.propertiesContainer > div.header > a {
	float: right;
	height: 6px;
}

div.modal-body > form.addCapForm > div.propertiesContainer > div.content > span.namespace {
	display: none;
}

div.modal-body > form.addCapForm > div.propertiesContainer > div.content > span.elementName {
	display: none;
}

div.modal-body > form.addCapForm > div.propertiesContainer > div.content table {
	float: left;
}