blob: 0a6e99ddb4fd39b9ef4316ee4ad0d432789f70ab (
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
|
.oc-dialog {
background: var(--color-main-background);
color: var(--color-text-light);
border-radius: var(--border-radius);
box-shadow: 0 0 7px 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);
margin-left: 12px;
}
.oc-dialog-buttonrow {
position: relative;
display: block;
background: transparent;
right: 0;
bottom: 0;
padding: 10px;
padding-bottom: 0;
box-sizing: border-box;
width: 100%;
background-image: linear-gradient(rgba(255, 255, 255, 0.0), var(--color-main-background));
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
clear: both;
button {
display: inline-block;
}
}
/* align primary button to right, other buttons to left */
.oc-dialog-buttonrow.twobuttons button:nth-child(1) {
float: left;
}
.oc-dialog-buttonrow.twobuttons.aside button:nth-child(1) {
float: none;
}
.oc-dialog-buttonrow.twobuttons button:nth-child(2) {
float: right;
}
.oc-dialog-buttonrow.onebutton button {
float: right;
}
.oc-dialog-close {
position: absolute;
top: 0;
right: 0;
padding: 25px;
background: url('../img/actions/close.svg') no-repeat center;
}
.oc-dialog-dim {
background-color: #000;
opacity: .20;
z-index: 9999;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
}
.oc-dialog-content {
width: 100%;
}
.oc-dialog.password-confirmation {
.oc-dialog-content {
width: auto;
margin: 12px;
input[type=password] {
width: 100%;
}
label {
display: none;
}
}
}
|