blob: 4c63fb2fcb5330bde344a9c88600e0013b139199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/**
* @file
* Field Styling
*
* The Fences module allows site builders to pick the semeantic HTML5 element
* for each field while editing the field's settings. There's no way a theme
* can ever know which element to use for the fields on your site, so Zen
* just uses lets Drupal core or Fences decide. Since you DO NOT want 3 wrapping
* divs around every field (do you?), we highly recommend Fences.
*
* http://drupal.org/project/fences
*/
/*
* Field wrappers when the Fences module is enabled.
*/
/* line 21, ../../../sass/sass/fields.scss */
.field-label {
/* The optional label for a field. */
}
/* line 24, ../../../sass/sass/fields.scss */
.field-FIELDNAME {
/* Underscores in field name are replaced with dashes. */
}
/*
* If you don't use the Fences module, that's fine. Really. I think. Just use
* these selectors instead:
*/
/* line 33, ../../../sass/sass/fields.scss */
.field {
/* Wrapper for any field. */
}
/*
* Field types (Core)
*/
/*
* Field types (Contrib)
*/
/* line 83, ../../../sass/sass/fields.scss */
.field-type-datetime {
/* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */
}
/*
* Named fields
*/
/* line 105, ../../../sass/sass/fields.scss */
.field-name-field-FIELDNAME {
/* Underscores in field name are replaced with dashes. */
}
|