summaryrefslogtreecommitdiffstats
path: root/install/ui/less/widgets.less
blob: 3fc8cb5b7520bdfe786f54d10e463e2945fe0697 (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


#simple-container {

	.global-activity-indicator {

		bottom: initial;
		height: auto;
		background-color: rgba(0, 0, 0, 0.3);
		color: white;
		width: 200px;
		text-align: left;

		.activity-row {
			background-color: transparent;
			display: block;
			padding: 10px 20px;
		}

		.activity-text {
			padding: 0px;
		}

		.activity-text {
			background-color: transparent;
		}
	}

	.slider {
		transition-property: all;
		transition-duration: .5s;
		transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
	}
}

.global-activity-indicator {

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-shadow: none;
	color: black;
	font-size: 20px;
	font-weight: 300;
	height: 80px;
	margin: auto;
	text-align: center;

	.activity-row {
		display: inline-block;
		background-color: rgba(0, 0, 0, 0.2);
		padding: 7px;
		border: 1px solid rgba(0, 0, 0, 0.2);
	}

	.activity-text {
		padding: 3px 14px;
		background-color: white;
	}
}

.slider {
	overflow-y: hidden;
}

#simple-container .slider.closed,
.slider.closed {
	max-height: 0;
	padding: 0;
}

.validation-summary {
	font-weight: bold;
	font-size: 110%;
}