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

jquery.ocdialog.scss « css « jquery « src « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7e762f4cb6cb9458280c80556738edc4430e13d (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
.oc-dialog {
	background: var(--color-main-background);
	color: var(--color-text-light);
	border-radius: var(--border-radius-large);
	box-shadow: 0 0 30px var(--color-box-shadow);
	padding: 15px;
	z-index: 10000;
	font-size: 100%;
	box-sizing: border-box;
	min-width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: calc(100% - 20px);
	max-width: calc(100% - 20px);
	overflow: auto;
}
.oc-dialog-title {
	background: var(--color-main-background);
}
.oc-dialog-buttonrow {
	position: relative;
	display: flex;
	background: transparent;
	right: 0;
	bottom: 0;
	padding: 0;
	padding-top: 10px;
	box-sizing: border-box;
	width: 100%;
	background-image: linear-gradient(rgba(255, 255, 255, 0.0), var(--color-main-background));

	&.twobuttons {
        justify-content: space-between;
    }

	&.onebutton,
	&.twobuttons.aside {
		justify-content: flex-end;
	}

	button {
	    white-space: nowrap;
	    overflow: hidden;
		text-overflow: ellipsis;
		height: 44px;
		min-width: 44px;
	}
}

.oc-dialog-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 25px;
	background: var(--icon-close-000) no-repeat center;
	opacity: .5;

	&:hover,
	&:focus,
	&:active {
		opacity: 1;
	}
}

.oc-dialog-dim {
	background-color: #000;
	opacity: .2;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

body.theme--dark .oc-dialog-dim {
	opacity: .8;
}

.oc-dialog-content {
	width: 100%;
	max-width: 550px;
}

.oc-dialog.password-confirmation {
	.oc-dialog-content {
		width: auto;

		input[type=password] {
			width: 100%;
		}
		label {
			display: none;
		}
	}
}