Projet

Général

Profil

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

root / drupal7 / sites / all / modules / field_permissions / field_permissions.admin.css @ 87dbc3bf

1

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

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

    
22
/* Quick tooltips behavior. */
23
html.js .field-permissions-tooltip {
24
  display: none;
25
}
26
#field-permissions-tooltip {
27
  display: none;
28
  padding: 1em 2em 1em 1em;
29
  color: #444;
30
  background-color: #f0f0f0;
31
  border: 1px solid #aaa;
32

    
33
  /* CSS3 properties not supported by all browsers. */
34
  -webkit-box-shadow: 2px 2px 2px #ccc;
35
   -khtml-box-shadow: 2px 2px 2px #ccc;
36
    -icab-box-shadow: 2px 2px 2px #ccc;
37
     -moz-box-shadow: 2px 2px 2px #ccc;
38
       -o-box-shadow: 2px 2px 2px #ccc;
39
          box-shadow: 2px 2px 2px #ccc;
40
  -webkit-border-radius: 5px;
41
   -khtml-border-radius: 5px;
42
    -icab-border-radius: 5px;
43
     -moz-border-radius: 5px;
44
       -o-border-radius: 5px;
45
          border-radius: 5px;
46
}
47
.field-permissions-tooltip .item-list,
48
#field-permissions-tooltip .item-list {
49
  text-align: left;
50
}
51
.field-permissions-tooltip h3,
52
#field-permissions-tooltip h3 {
53
  font-size: 1.2em;
54
  font-weight: bold;
55
}
56

    
57
/**
58
 * Administration on the field settings page.
59
 */
60

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

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