Project

General

Profile

« Previous | Next » 

Revision 297697dd

Added by Andreas Kohlbecker over 11 years ago

deleting old file

View differences:

.gitattributes
1545 1545
7.x/themes/zen_dataportal/.sass-cache/ea570abe83f92f7ffebe8752050015ad028a313d/_transform.scssc -text
1546 1546
7.x/themes/zen_dataportal/.sass-cache/ea570abe83f92f7ffebe8752050015ad028a313d/_transition.scssc -text
1547 1547
7.x/themes/zen_dataportal/README.txt -text
1548
7.x/themes/zen_dataportal/STARTERKIT.info.txt -text
1549 1548
7.x/themes/zen_dataportal/config.rb -text
1550 1549
7.x/themes/zen_dataportal/css/README.txt -text
1551 1550
7.x/themes/zen_dataportal/css/blocks.css -text
7.x/themes/zen_dataportal/STARTERKIT.info.txt
1
; Drupal's .info files allow themers to easily specify some of the static
2
; properties of your theme. Properties such as its name, stylesheets,
3
; javascripts, and block regions.
4
;
5
; Drupal 7 stores a cache of the data in this .info files. If you modify any
6
; lines in this file, you MUST refresh Drupal 7's cache by simply visiting the
7
; Appearance page at admin/appearance.
8

  
9

  
10

  
11
; The name, description and screenshot used for this theme on the Appearance
12
; page at admin/appearance.
13

  
14
screenshot  = screenshot.png
15
name        = Zen Sub-theme Starter Kit
16
description = Read the <a href="http://drupal.org/node/873778">online docs</a> or the included README.txt on how to create a theme with Zen.
17

  
18

  
19

  
20
; This theme is compatible with Drupal 7 core. And it is a sub-theme of Zen.
21

  
22
core        = 7.x
23
base theme  = zen
24

  
25

  
26

  
27
; This section controls the CSS files for your theme. There are 3 different
28
; things you can do with a "stylesheets" line:
29
; - Add a new stylesheet for your theme.
30
; - Override a module's stylesheet. If the stylesheet you are adding uses the
31
;   same filename as a stylesheet from a Drupal core or contrib module, your CSS
32
;   file will be used instead of the module's file.
33
; - Remove a module's stylesheet. If you specify the name of a Drupal core or
34
;   contrib module's stylesheets, Drupal will remove that stylesheet if you do
35
;   NOT include a file with that name with your theme.
36
;
37
; stylesheets[MEDIA][] = FILE
38
;
39
; The "FILE" is the name of the stylesheet to add/override/remove.
40
; The "MEDIA" in the first set of brackets is a media type or a media query.
41
; Typical CSS media types include "all", "screen", "print", and "handheld". A
42
; typical media query is "screen and (max-width: 320px)".
43
;
44
; CSS2.1 media types: http://www.w3.org/TR/CSS21/media.html#media-types
45
; CSS3 media queries: http://www.w3.org/TR/css3-mediaqueries/
46

  
47
; First we remove the system's menu styling since Zen has its own.
48
stylesheets[all][] = system.menus.css
49

  
50
; Then we add our own stylesheets.
51
stylesheets[all][] = css/normalize.css
52
stylesheets[all][] = css/wireframes.css
53
stylesheets[all][] = css/layouts/responsive-sidebars.css
54
stylesheets[all][] = css/page-backgrounds.css
55
stylesheets[all][] = css/tabs.css
56
stylesheets[all][] = css/pages.css
57
stylesheets[all][] = css/blocks.css
58
stylesheets[all][] = css/navigation.css
59
stylesheets[all][] = css/views-styles.css
60
stylesheets[all][] = css/nodes.css
61
stylesheets[all][] = css/comments.css
62
stylesheets[all][] = css/forms.css
63
stylesheets[all][] = css/fields.css
64
stylesheets[all][] = css/print.css
65

  
66
; Built-in conditional stylesheet support has been removed from Zen 7.x-5.x.
67
; Instead, Zen now adds conditional-comment-included classes to the html
68
; element, such as .lt-ie9, .lt-ie8, .lt-ie7. More information on this
69
; technique can be found at:
70
; http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
71
;
72
; If you still wish to use conditional stylesheets, you must install the
73
; conditional stylesheets module: http://drupal.org/project/conditional_styles
74
;stylesheets-conditional[lte IE 8][all][] = css/ie8.css
75

  
76

  
77

  
78
; Optionally add some JavaScripts to your theme.
79

  
80
;scripts[] = js/script.js
81

  
82

  
83

  
84
; This section lists the regions defined in Zen's default page.tpl.php and
85
; maintenance-page.tpl.php files. The name in brackets is the machine name of
86
; the region. The text after the equals sign is a descriptive text used on the
87
; admin/structure/blocks page.
88
;
89
; In the page.tpl, the contents of the region are output with a
90
; $page['MACHINE-NAME'] variable and, in the maintenance-page.tpl, the region is
91
; output with a $MACHINE-NAME variable. For example, with this line in the .info
92
; file:
93
;   regions[header_top] = Header top
94
; You'll use this variable in page.tpl.php:
95
;   <?php print render($page['header_top']); ?>
96
; And you'll use this variable in maintenance-page.tpl.php:
97
;   <?php print $header_top; ?>
98

  
99
regions[header]         = Header
100
regions[navigation]     = Navigation bar
101
regions[highlighted]    = Highlighted
102
regions[help]           = Help
103
regions[content]        = Content
104
regions[sidebar_first]  = First sidebar
105
regions[sidebar_second] = Second sidebar
106
regions[footer]         = Footer
107
regions[bottom]         = Page bottom
108

  
109
; The page_top and page_bottom regions are hidden, which means they will not
110
; show up on the blocks administration page. But they are required in order for
111
; the html.tpl.php to work properly, so do not delete them.
112

  
113
regions[page_top]       = Page top
114
regions[page_bottom]    = Page bottom
115

  
116

  
117

  
118
; Various page elements output by the theme can be toggled on and off. The
119
; "features" control which of these check boxes display on the
120
; admin/appearance config page. This is useful for suppressing check boxes
121
; for elements not used by your sub-theme. To suppress a check box, omit the
122
; entry for it below. See the Drupal 7 Theme Guide for more info:
123
; http://drupal.org/node/171205#features
124

  
125
features[] = logo
126
features[] = name
127
features[] = slogan
128
features[] = node_user_picture
129
features[] = comment_user_picture
130
features[] = favicon
131
features[] = main_menu
132
features[] = secondary_menu
133

  
134

  
135

  
136
; Set the default values of settings on the theme-settings.php form.
137

  
138
settings[zen_breadcrumb]           = yes
139
settings[zen_breadcrumb_separator] = ' › '
140
settings[zen_breadcrumb_home]      = 1
141
settings[zen_breadcrumb_trailing]  = 1
142
settings[zen_breadcrumb_title]     = 0
143
settings[zen_skip_link_anchor]     = main-menu
144
settings[zen_skip_link_text]       = Jump to navigation
145
settings[zen_html5_respond_meta][] = respond
146
settings[zen_html5_respond_meta][] = html5
147
settings[zen_html5_respond_meta][] = meta
148
settings[zen_rebuild_registry]     = 1
149
settings[zen_wireframes]           = 0
150

  
151
; To make this sub-theme an admin theme with shortcut links next to titles,
152
; uncomment the line below.
153

  
154
;settings[shortcut_module_link]    = 1
155

  
156
; To add a Panels layout (which can also be used by Display Suite), uncomment
157
; the line below and see the documentation at: http://drupal.org/node/495654
158
;plugins[panels][layouts] = layouts

Also available in: Unified diff