Projet

Général

Profil

Paste
Télécharger (1,66 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / field_permissions / field_permissions.admin.css @ 08475715

1
/* Table cells. */
2
.field-permissions-cell,
3
.field-permissions-header {
4
  text-align: center;
5
}
6

    
7
/* Status icons. */
8
.field-permissions-status-on {
9
  display: inline-block;
10
  width: 16px;
11
  height: 16px;
12
  background: url(images/field_permissions.status-on.png) no-repeat 0 0;
13
}
14
.field-permissions-status-off {
15
  display: inline-block;
16
  width: 16px;
17
  height: 16px;
18
  background: url(images/field_permissions.status-off.png) no-repeat 0 0;
19
}
20

    
21
/* Quick tooltips behavior. */
22
html.js .field-permissions-tooltip {
23
  display: none;
24
}
25
#field-permissions-tooltip {
26
  display: none;
27
  padding: 1em 2em 1em 1em;
28
  color: #444;
29
  background-color: #f0f0f0;
30
  border: 1px solid #aaa;
31
  /* CSS3 properties not supported by all browsers. */
32
  -webkit-box-shadow: 2px 2px 2px #ccc;
33
  -khtml-box-shadow: 2px 2px 2px #ccc;
34
  -icab-box-shadow: 2px 2px 2px #ccc;
35
  -moz-box-shadow: 2px 2px 2px #ccc;
36
  -o-box-shadow: 2px 2px 2px #ccc;
37
  box-shadow: 2px 2px 2px #ccc;
38
  -webkit-border-radius: 5px;
39
  -khtml-border-radius: 5px;
40
  -icab-border-radius: 5px;
41
  -moz-border-radius: 5px;
42
  -o-border-radius: 5px;
43
  border-radius: 5px;
44
}
45
.field-permissions-tooltip .item-list,
46
#field-permissions-tooltip .item-list {
47
  text-align: left;
48
}
49
.field-permissions-tooltip h3,
50
#field-permissions-tooltip h3 {
51
  font-size: 1.2em;
52
  font-weight: bold;
53
}
54

    
55
/**
56
 * Administration on the field settings page.
57
 */
58

    
59
/**
60
 * Do not display the hide/show descriptions link above the permissions matrix.
61
 */
62
#field-ui-field-edit-form .compact-link {
63
  display: none;
64
}
65

    
66
/**
67
 * Indent the matrix and make it appear inline with the corresponding radio button.
68
 */
69
#field-ui-field-edit-form table#permissions {
70
  margin-left: 1.5em;
71
  width: 98%;
72
}