summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/runo/panel/panel.scss
blob: 5963f7343440120f355eec4ebea0bbfe82baed31 (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
@mixin runo-panel {

.v-panel {
	background: transparent url(img/top-left.png) no-repeat;
}
.v-panel-caption .v-errorindicator {
	padding-right: 20px;
	background: transparent url(../icons/16/error.png) no-repeat bottom center;
	
}
.v-panel-caption,
.v-panel-caption-light {
	font-size: 18px;
	line-height: normal;
	font-weight: normal;
	letter-spacing: -0.03em;
	color: #f14c1a;
	height: 18px;
	padding: 13px 18px 16px 8px;
	margin-left: 10px;
	background: transparent url(img/top-right.png) no-repeat right top;
	text-overflow: ellipsis;
}
.v-panel-nocaption {
	height: 9px;
	margin-left: 10px;
	background: transparent url(img/top-right.png) no-repeat right top;
}
.v-panel-content {
	border: 1px solid #babfc0;
	border-bottom: 1px solid #dee2e3;
	background-color: #fff;
}
.v-panel-deco {
	height: 9px;
	background: transparent url(img/bottom-right.png) repeat-x right top;
	margin-left: 9px;
}
.v-panel-deco:before {
	display: block;
	content: "";
	width: 9px;
	height: 9px;
	margin-left: -9px;
	background: transparent url(img/bottom-left.png) no-repeat;
}
/* Light panel style */
.v-panel-light,
.v-panel-caption-light {
	background: transparent;
}
.v-panel-caption-light {
	border-bottom: 1px solid #babfc0;
	margin: 0;
	padding-left: 18px;
}
.v-panel-nocaption-light {
	background: transparent;
	border: none;
	height: 0;
	margin: 0;
}
.v-panel-content-light {
	border: none;
	background: transparent;
}
.v-panel-deco-light {
	height: 0;
	overflow: hidden;
}
/* IE specific rules */
.v-ie8 .v-panel-content {
	border-bottom: 1px solid #babfc0;
}
.v-ie8 .v-panel-content-light {
	border-bottom: none;
}
.v-ie8 .v-panel-deco { 
	height: 0;
	overflow: hidden;
}

}