-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathd2b_migrate.css
More file actions
56 lines (54 loc) · 1.22 KB
/
d2b_migrate.css
File metadata and controls
56 lines (54 loc) · 1.22 KB
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
/* Installer sidebar only shown on larger screens. */
.migrate-page-sidebar {
display: none;
}
/* Larger screens show the progress steps when installing. */
@media only screen and (min-width: 768px) {
.migrate-page-sidebar {
display: block;
float: left; /* LTR */
width: 220px;
box-sizing: border-box;
}
[dir="rtl"] .migrate-page-sidebar {
float: right;
}
.migrate-page-main {
padding: 0 20px;
margin-left: 240px; /* LTR */
box-sizing: border-box;
}
[dir="rtl"] .migrate-page-main {
margin-left: 0;
margin-right: 240px;
}
}
/* Although the sidebar items are linked, show as default text color. */
.migrate-page-sidebar a {
color: inherit;
text-decoration: none;
}
.migrate-page-sidebar a:hover {
text-decoration: underline;
}
.d2b-db-saved {
padding: 20px;
border: 2px solid #CFDE56;
margin-bottom: 20px;
}
.d2b-db-saved:before {
content: ' ';
display: inline-block;
position: absolute;
width: 25px;
height: 25px;
border-radius: 15px;
background: #CFDE56 url(../../core/misc/icon-ok.png) no-repeat center center;
background-size: 60%;
}
.d2b-db-saved .task-item {
display: inline-block;
position: relative;
vertical-align: middle;
margin: 0 0 0 2.5em;
}