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 @ 76e2e7c3

1
@CHARSET "UTF-8";
2

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

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

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

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

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

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

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

    
34

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

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

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

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

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

    
68
.rules-overview-table {
69
  margin: 1em 0;
70
}
71

    
72
.rules-content-group-integrity-error {
73
  color: #df0101;
74
}
75

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

    
85
.rules-debug-collapsible-link {
86
  position: relative;
87
  cursor: pointer;
88

    
89
  /* The span element with the icon which opens the log, has a whitepsace.
90
     Since we don't want the user to mark this white space, we prevent this
91
     using the this code.*/
92
  -moz-user-select: -moz-none;
93
  -khtml-user-select: none;
94
  -webkit-user-select: none;
95
  -o-user-select: none;
96
  user-select: none;
97
}
98

    
99
.rules-debug-log-head {
100
  font-weight: bold;
101
}
102

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

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

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

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

    
121
.rules-debug-log .rules-debug-warn {
122
  color: #df0101;
123
}
124

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

    
130
#rules-filter-form {
131
  margin-bottom: 1.5em;
132
}
133

    
134
.rules-parameter-label {
135
  font-style: italic;
136
}
137

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

    
142
.rules-element-content {
143
  float: left;
144
}
145

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

    
156
.rules-form-heading {
157
  margin-top: 3em;
158
}
159

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

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

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

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

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

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

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

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