Merge "Inherit from oparent"
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.topologymodeler / src / main / webapp / css / winery-common.css
1 /*******************************************************************************
2  * Copyright (c) 2012-2013 University of Stuttgart.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * and the Apache License 2.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *    Uwe Breitenbücher - initial API and implementation and/or initial documentation
11  *    Oliver Kopp - improvements
12  *    Yves Schubert - switch to bootstrap 3
13  *******************************************************************************/
14
15 /** This CSS is shared between the Winery Repository and the Winery Topology Modeler **/
16
17 .informationbox {
18         position: absolute;
19         text-align: center;
20         top: 0;
21         left: 0;
22         width: 100%;
23         height: 0;
24         z-index: 99;
25 }
26
27 .informationbox > .alert {
28         background: #fff1a8;
29         border: 1px solid #999;
30         border-top: 0;
31         border-radius: 0 0 3px 3px;
32         display: inline-block;
33         line-height: 21px;
34         padding: 0 12px;
35 }
36
37 /* when hovering over the text, the cursor should stay as is */
38 .ui-pnotify {
39         cursor: default;
40 }
41
42 /* change pnotify's container to be always at the top of the window */
43 div.ui-pnotify-history-container {
44         position: fixed;
45 }
46
47 /* enable pnotify notifications to wrap correctly */
48 .ui-pnotify-text {
49         overflow: hidden;
50         overflow-wrap: break-word;
51 }
52
53 .button {
54         cursor: pointer;
55 }
56
57 td.editable {
58         cursor: text;
59 }
60
61 td {
62         cursor: default;
63 }
64
65 .input-xxlarge {
66         width: 510px;
67 }
68
69 .spinner {
70         text-align: right;
71 }
72
73 /* enables stacked modal dialogs */
74 div.z1051 {
75         z-index: 1051;
76 }
77
78 /* used for showing the full notification at PNotify */
79 div.z1060 {
80         z-index: 1060;
81 }
82
83
84 /* fixes bootstrap margin problem at horizontal form */
85 .form-horizontal > div.control-group > label.control-label {
86         margin-right: 10px;
87 }
88
89 /* used by artifactcreationdialog.tag */
90 div.unknown {
91         color: gray;
92 }
93
94 div.unknown:before {
95         content: '?';
96 }
97
98 div.invalid {
99         color: red;
100 }
101
102 div#artifactTemplateNameIsValid {
103         height: 19px;
104 }
105
106 div.valid {
107         color: green;
108 }
109
110 #diagmessagemsg {
111         text-overflow: ellipsis;
112         overflow: hidden;
113 }
114
115 textarea.properties_xml {
116         display: none
117 }
118
119 /** properties **/
120
121 span.properties_element {
122         display: none;
123 }
124
125 span.properties_type {
126         display: none
127 }
128
129 div.form-group-grouping {
130         background: #F0F0F0;
131         padding: 15px;
132         margin-top: 10px;
133         margin-bottom: 10px;
134 }
135
136 div.orionxmleditordiv {
137         height: 300px;
138 }