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

public.scss « css « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cac98f23f928b14a6e09d558f94eb27fde8952b2 (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
$footer-height: 65px;

#body-public {
	.header-right {

		#header-primary-action a {
			color: var(--color-primary-text);
		}

		.menutoggle,
		#header-primary-action[class^='icon-'] {
			padding: 14px;
			padding-right: 40px;
			background-position: right 15px center;
			color: var(--color-primary-text);
			cursor: pointer;
		}

		#header-secondary-action {
			margin-right: 13px;

			ul li {
				min-width: 270px;
			}
			#save-external-share {
				form {
					display: flex;
					margin: 0;
				}
				.hidden {
					display: none;
				}
				#save-button-confirm {
					flex-grow: 0;
				}
			}
		}
	}

	#content {
		// 100% - footer
		min-height: calc(100% - #{$footer-height});

	}

	/** don't apply content header padding on the base layout */
	&.layout-base #content {
		padding-top: 0;
	}

	/* force layout to make sure the content element's height matches its contents' height */
	.ie #content {
		display: inline-block;
	}


	p.info {
		margin: 20px auto;
		text-shadow: 0 0 2px rgba(0, 0, 0, .4);
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	p.info, form fieldset legend,
	#datadirContent label,
	form fieldset .warning-info,
	form input[type='checkbox']+label {
		text-align: center;
	}

	/* public footer */
	footer {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: $footer-height;
		flex-direction: column;
		p {
			text-align: center;
			color: var(--color-text-lighter);
			a {
				color: var(--color-text-lighter);
				font-weight: 600;
				padding: 13px;
				margin: -13px;
			}
		}
	}
}