Newer
Older
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
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
* CiviCRM Admin Styles.
*
* Implements common styles on the CiviCRM admin subpages.
*
* @since 5.34
*/
/* CiviCRM Logo */
.wrap > img#civicrm-logo {
float: right;
margin-top: 9px;
}
/* Submit button on CiviCRM Settings page */
.civicrm-wrap #normal-sortables .postbox p.submit,
.civicrm-wrap #side-sortables .postbox p.submit {
padding: 0;
margin: 0;
float: right;
}
/* Plugin listing on CiviCRM Integration page */
.plugin-directory-list li {
border-bottom: 1px solid #eee;
padding-bottom: 10px;
margin-bottom: 10px;
}
.plugin-directory-list li:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.plugin-directory-list li span.description {
font-style: italic;
color: #666;
}
/* CiviCRM Quick Add dashlet */
#contact-first-name-wrap,
#contact-last-name-wrap {
margin-bottom: 6px;
float: left;
width: 49%;
margin-right: 2%;
}
#contact-last-name-wrap {
margin-right: 0;
}
#contact-email-wrap {
margin-bottom: 12px;
}
#side-sortables #contact-quick-add p.submit {
float: none;
}
.contacts-added-wrap {
border-top: 1px solid #eee;
margin: 12px -12px 0;
padding: 8px 12px 4px;
}
.contacts-added-wrap {
display: none;
}
.contacts-added-wrap.contacts-added {
display: block;
}
.contacts-added-list {
margin-bottom: 0;
}