aboutsummaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.topologymodeler/src/main/webapp/css/palette.css
blob: e67a715795adacf51d1c5fcc01e56b1df25b553a (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
/*******************************************************************************
 * 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
 *******************************************************************************/

#palette {
	min-height: 180px;
	background: rgb(248, 248, 248);
	width: 230px;
	box-shadow: 2px 2px 7px rgb(156, 156, 156);
	padding: 10px;
	border: 1px solid #aeaeae;
	position: fixed;
	top: 50px;
	left: 0px;
	z-index: 100;
	cursor: default;
	border-radius: 0px 9px 9px 0px;
	background-image: -ms-linear-gradient(left, #FFFFFF 0%, rgb(237, 242, 247) 100%);
	background-image: -moz-linear-gradient(left, #FFFFFF 0%, rgb(237, 242, 247) 100%);
	background-image: -o-linear-gradient(left, #FFFFFF 0%, rgb(237, 242, 247) 100%);
	background-image: -webkit-gradient(linear, left, right, color-stop(0, #FFFFFF), color-stop(1, rgb(237, 242, 247)));
	background-image: -webkit-linear-gradient(left, #FFFFFF 0%, rgb(237, 242, 247) 100%);
	background-image: linear-gradient(to right, #FFFFFF 0%, rgb(237, 242, 247) 100%);

	overflow-x: hidden;
	overflow-y: visible;
	max-height: 90%;

	/* fix for bootstrap.css, which sets that to "border-box" */
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
}

#palette.shrunk {
	width: 35px;
	padding: 0px;
	padding-left: 9px;
}

#paletteLabel {
	width: 0px;
	background-color: blue;
	top: 95px;
	position: relative;
	transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	display: none;
	left: 8px;
	font-size: 12px;
	color: rgb(143, 151, 170);
}

div.iconContainer {
	width: 45px;
	margin-left: 5px;
	float: left;
	height: 20px;
	margin-top: 4px;
}


div.paletteEntry {
	height: 28px;
	border-bottom: 1px solid rgb(200, 214, 228);
	margin: 0px;
	float: left;
	width: 230px;
}

div.paletteEntry:hover {
	background: rgb(237, 242, 247);
}


div.paletteEntry > div.iconContainer > img.icon {
	height: 20px;
	vertical-align: top;
}


div.paletteEntry > div.typeContainer {
	margin: 4px 0px;
	height: 20px;
	display: table;
	width: 180px;
	font-size: 11px;
	line-height: 20px;
}

div.paletteEntry > div.typeContainer > div.typeContainerMiddle {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	position: static;
}

div.paletteEntry > div.typeContainer > div.typeContainerMiddle > div.typeContainerInner {
}