Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authenticate.css « css - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 781d9ea031102a3a052f14a59cd2a67c4b15f65d (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
form fieldset {
	display: flex !important;
	flex-direction: column;
}

#password {
	margin-right: 0 !important;
	height: 45px;
	box-sizing: border-box;
	flex: 1 1 auto;
	width: 100% !important;
	min-width: 0; /* FF hack for to override default value */

	/* The padding needs to be set here instead of for "input[type="password"]"
	 * elements to prevent being overriden by a more specific rule in the
	 * server. */
	padding-right: 44px;
}

input[type="password"]:focus + .icon-confirm:not(:disabled) {
	opacity: .6;
}

input[type="password"] + .icon-confirm {
	position: absolute;
	right: 15px;

	/* Needed to honour the height set below for "input[type='submit']" by
	 * overriding a rule set in the server. */
	height: 45px;

	border: none;
	/* Needed to override an important rule set in the server. */
	background-color: transparent !important;

	opacity: .3;
}

input[type="password"] + .icon-confirm:hover:not(:disabled),
input[type="password"] + .icon-confirm:focus:not(:disabled),
input[type="password"] + .icon-confirm:active:not(:disabled) {
	opacity: 1;
}

input[type='submit'] {
	width: 45px;
	height: 45px;
	margin-left: 0 !important;
}

fieldset > p {
	display: inline-flex;
}