Projet

Général

Profil

Paste
Télécharger (4,21 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / css / views-admin.bartik.css @ 5d12d676

1
/**
2
 * The .bartik.css file is intended to contain styles that override declarations
3
 * in the Bartik theme.
4
 */
5

    
6
/* @group Lists */
7

    
8
.views-display-top .secondary .action-list {
9
  padding-left: 0; /* LTR */
10
}
11

    
12
/* @end */
13

    
14
/* @group Attachment details tabs
15
 *
16
 * The tabs that switch between sections
17
 */
18

    
19
.views-displays .region-content .secondary,
20
.views-displays .region-content .secondary {
21
  padding-bottom: 0;
22
  padding-left: 0;
23
}
24

    
25
.views-displays .secondary a {
26
  font-size: smaller;
27
}
28

    
29
.views-displays .secondary > li a {
30
  -moz-border-radius: 5px;
31
  -webkit-border-radius: 5px;
32
  border-radius: 5px;
33
}
34

    
35
.views-displays .secondary > li.open a {
36
  -moz-border-radius: 5px 5px 0 0;
37
  -webkit-border-bottom-left-radius: 0;
38
  -webkit-border-bottom-right-radius: 0;
39
  -webkit-border-top-left-radius: 5px;
40
  -webkit-border-top-right-radius: 5px;
41
  border-radius: 5px 5px 0 0;
42
}
43

    
44
.views-displays .secondary .open > a:hover {
45
  color: #0071b3;
46
}
47

    
48
.views-displays .secondary input.form-submit {
49
  font-size: smaller;
50
}
51

    
52
/* @end */
53

    
54
/* @group Modal dialog box
55
 *
56
 * The contents of the popup dialog on the views edit form.
57
 */
58

    
59
.views-filterable-options .even .form-type-checkbox {
60
  background-color: #f9f9f9;
61
}
62

    
63
.views-ui-dialog .ui-dialog-titlebar-close,
64
.views-ui-dialog #views-ajax-title,
65
.views-ui-dialog .views-override,
66
.views-ui-dialog .form-buttons {
67
  background-color: #f6f6f6;
68
}
69

    
70
.views-ui-dialog a {
71
  color: #0071b3;
72
}
73

    
74
.views-ui-dialog a:hover,
75
.views-ui-dialog a:focus {
76
  color: #018fe2;
77
}
78

    
79
/* @end */
80

    
81
/* @group CTools */
82

    
83
/* @group Buttons */
84

    
85
.ctools-button-processed {
86
  background-image: -moz-linear-gradient(
87
  -90deg,
88
  #fff 0px,
89
  #f9f9f9 100%
90
  );
91
  background-image: -webkit-gradient(
92
  linear,
93
  left top,
94
  left bottom,
95
  color-stop(0.0, rgba(255, 255, 255, 1.0)),
96
  color-stop(1.0, rgba(249, 249, 249, 1.0))
97
  );
98
  background-image: -webkit-linear-gradient(
99
  -90deg,
100
  #fff 0px,
101
  #f9f9f9 100%
102
  );
103
  background-image: linear-gradient(
104
  -90deg,
105
  #fff 0px,
106
  #f9f9f9 100%
107
  );
108
  -moz-border-radius: 5px;
109
  -webkit-border-radius: 5px;
110
  border-radius: 5px;
111
  padding-bottom: 1px;
112
  padding-top: 1px;
113
}
114

    
115
.ctools-button-processed:hover {
116
  background-image: -moz-linear-gradient(
117
  -90deg,
118
  #fff 0px,
119
  #f1f1f1 100%
120
  );
121
  background-image: -webkit-gradient(
122
  linear,
123
  left top,
124
  left bottom,
125
  color-stop(0.0, rgba(255, 255, 255, 1.0)),
126
  color-stop(1.0, rgba(241, 241, 241, 1.0))
127
  );
128
  background-image: -webkit-linear-gradient(
129
  -90deg,
130
  #fff 0px,
131
  #f1f1f1 100%
132
  );
133
  background-image: linear-gradient(
134
  -90deg,
135
  #fff 0px,
136
  #f1f1f1 100%
137
  );
138
}
139

    
140
.ctools-button-processed li a,
141
.views-ui-display-tab-actions .ctools-button-processed input {
142
  padding-left: 9px;
143
  padding-right: 9px;
144
}
145

    
146
.ctools-content ul.actions {
147
  padding-bottom: 0;
148
}
149

    
150
.ctools-dropbutton-processed.open:hover {
151
  background-image: -moz-linear-gradient(
152
  -90deg,
153
  #fff 0px,
154
  #f9f9f9 100%
155
  );
156
  background-image: -webkit-gradient(
157
  linear,
158
  left top,
159
  left bottom,
160
  color-stop(0.0, rgba(255, 255, 255, 1.0)),
161
  color-stop(1.0, rgba(249, 249, 249, 1.0))
162
  );
163
  background-image: -webkit-linear-gradient(
164
  -90deg,
165
  #fff 0px,
166
  #f9f9f9 100%
167
  );
168
  background-image: linear-gradient(
169
  -90deg,
170
  #fff 0px,
171
  #f9f9f9 100%
172
  );
173
}
174

    
175
.ctools-dropbutton-processed.open {
176
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
177
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
178
  box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
179
}
180

    
181
.ctools-twisty {
182
  top: 0.6667em;
183
}
184

    
185
.ctools-dropbutton-processed.open .ctools-twisty {
186
  top: 0.3333em;
187
}
188

    
189
.ctools-dropbutton-processed li a,
190
.views-ui-display-tab-actions .ctools-dropbutton-processed input {
191
  padding-right: 7px;
192
}
193

    
194
.views-ui-display-tab-actions .ctools-button-processed input.form-submit {
195
  margin-right: 0;
196
  margin-top: 0;
197
}
198

    
199
/* @end */
200

    
201
/* @group Collapsible */
202

    
203
.ctools-toggle {
204
  margin-top: 0.9em;
205
}
206

    
207
.ctools-toggle.ctools-toggle-collapsed {
208
  margin-top: 0.72em;
209
}
210

    
211
.views-display-column > .ctools-toggle {
212
  margin-top: 14px;
213
}
214

    
215
.views-display-column > .ctools-toggle.ctools-toggle-collapsed {
216
  margin-top: 12px;
217
}
218

    
219
.views-ui-display-tab-actions .ctools-button input {
220
  color: #0071b3;
221
}
222

    
223
.views-ui-display-tab-actions .ctools-button input:hover,
224
.views-ui-display-tab-actions .ctools-button input:focus {
225
  color: #018fe2;
226
}
227

    
228
/* @end */
229

    
230
/* @end */