-
Notifications
You must be signed in to change notification settings - Fork 0
/
pm_restrict.css
48 lines (48 loc) · 1.1 KB
/
pm_restrict.css
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
#pm-block-user-settings .sticky-header {
/* Stop the remove button overlapping the sticky header */
z-index: 10;
}
#pm-block-user-settings .throbber {
margin: 4px 0;
}
#add-rule-button,
#remove-rule-button {
height: 45px;
/* Stop the remove button overlapping the sticky header */
z-index: 1;
}
#add-rule-button label {
line-height: 26px;
margin-left: 2px;
}
#remove-rule-button {
width: 100px;
position: relative;
}
#remove-rule-button label {
display: block;
clear: both;
text-align: center;
}
#add-rule-button input,
#remove-rule-button input {
display: inline-block;
overflow: hidden;
width: 24px;
height: 24px;
padding: 0;
margin: 0;
border: 0;
text-indent: -9999px;
cursor: pointer; /* Hand shaped cursor */
cursor: hand; /* for old versions of IE */
}
#add-rule-button input {
background: transparent url('add-rule-button.png') left top no-repeat;
}
#remove-rule-button input {
background: transparent url('remove-rule-button.png') left top no-repeat;
/* Only way to centre-align remove button without having AHAH throbber
* interfere with it */
margin-left: 36px;
}