Projet

Général

Profil

Paste
Télécharger (3,38 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / rules / ui / rules.ui.css @ 950416da

1
@charset "utf-8";
2

    
3
.rules-show-js,
4
html.js .rules-hide-js {
5
  display: none;
6
}
7

    
8
.rules-hide-js,
9
html.js .rules-show-js {
10
  display: block;
11
}
12

    
13
.rules-elements-table ul.action-links {
14
  margin: 0px;
15
  padding: 0;
16
}
17

    
18
.rules-elements-table ul.rules-operations li {
19
  list-style: none;
20
  float: left;
21
}
22

    
23
.rules-elements-table ul.rules-operations a {
24
  background: none;
25
  padding-left: 0px;
26
}
27

    
28
table tr.rules-elements-add {
29
  background-color: #e5eff4;
30
}
31

    
32
.rules-elements-table ul.rules-operations-add a {
33
  line-height: 1em;
34
}
35

    
36

    
37
tr.rules-elements-add td {
38
  padding-top: 2px;
39
  padding-bottom: 2px;
40
}
41

    
42
ul.rules-operations-add li {
43
  float: left;
44
  list-style-position: inside;
45
}
46

    
47
.rules-elements-table {
48
  margin-bottom: 3em;
49
}
50
/* We cannot set a positive margin-top for rules tables as the table drag link
51
   should be positioned directly on top of the table. Thus we use a large bottom
52
   margin and fix the upper most margin: */
53
#rules-form-wrapper:first-child {
54
  margin-top: 1.5em;
55
}
56

    
57
/* Fix table drag weights to don't take extra space */
58
.rules-elements-table .tabledrag-toggle-weight-wrapper {
59
  position: absolute;
60
  right: 0px;
61
}
62

    
63
.rules-elements-table caption,
64
.rules-overview-table caption {
65
  font-size: 110%;
66
  font-weight: bold;
67
  padding-bottom: 0.5em;
68
  text-align: left;
69
}
70

    
71
.rules-overview-table {
72
  margin: 1em 0;
73
}
74

    
75
.rules-content-group-integrity-error {
76
  color: #df0101;
77
}
78

    
79
.rules-debug-log {
80
  font: 81.3% "Lucida Grande","Lucida Sans Unicode",sans-serif;
81
  background-color: #eeeeee;
82
  border: 1px solid #cccccc;
83
  color: #333333;
84
  padding: 5px;
85
  margin: 1.5em 0em;
86
}
87

    
88
.rules-debug-collapsible-link {
89
  position: relative;
90
  cursor: pointer;
91
  /* The span element with the icon which opens the log, has a whitespace.
92
     Since we don't want the user to mark this white space, we prevent this
93
     using the this code.*/
94
  -moz-user-select: -moz-none;
95
  -khtml-user-select: none;
96
  -webkit-user-select: none;
97
  -o-user-select: none;
98
  user-select: none;
99
}
100

    
101
.rules-debug-log-head {
102
  font-weight: bold;
103
}
104

    
105
div.rules-debug-log-head {
106
  margin: 0.5em 0em;
107
}
108

    
109
.rules-debug-icon-open {
110
  position: relative;
111
  float: left;
112
}
113

    
114
.rules-debug-open-all {
115
  position: relative;
116
  float: right;
117
}
118

    
119
.rules-debug-log ul {
120
  padding-left: 2em;
121
}
122

    
123
.rules-debug-log .rules-debug-warn {
124
  color: #df0101;
125
}
126

    
127
.rules-debug-log .rules-debug-error {
128
  font-weight: bold;
129
  color: #df0101;
130
}
131

    
132
#rules-filter-form {
133
  margin-bottom: 1.5em;
134
}
135

    
136
.rules-parameter-label {
137
  font-style: italic;
138
}
139

    
140
#rules-plugin-add-help {
141
  margin-bottom: 1em;
142
}
143

    
144
.rules-element-content {
145
  float: left;
146
}
147

    
148
form input.rules-switch-button {
149
  -moz-border-radius: 5px 5px 5px 5px;
150
  cursor: pointer;
151
  font-size: 0.8em;
152
  font-weight: normal;
153
  margin-bottom: 1em;
154
  padding: 2px;
155
  text-align: center;
156
}
157

    
158
.rules-form-heading {
159
  margin-top: 3em;
160
}
161

    
162
.rules-autocomplete-button {
163
  top: 3px;
164
  height: 22px;
165
}
166

    
167
ul.rules-autocomplete {
168
  max-height: 23em;
169
  overflow-y: auto;
170
}
171

    
172
ul.rules-autocomplete div {
173
  padding-left: 5px;
174
}
175

    
176
ul.rules-autocomplete a.ui-corner-all {
177
  padding: 0px;
178
}
179

    
180
ul.rules-autocomplete .rules-dsac-group {
181
  background-color: #eee;
182
}
183

    
184
ul.rules-autocomplete .ui-corner-all {
185
  -moz-border-radius: 0px;
186
}
187

    
188
/**
189
 * Do not display the hide/show descriptions link above the permissions matrix.
190
 */
191
#rules-form-wrapper #edit-settings-access-permissions .compact-link {
192
  display: none;
193
}
194

    
195
/* IE 6 hack for max-height. */
196
* html ul.rule-autocomplete {
197
  height: 23em;
198
}