Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit ac61fba

Browse files
committed
fixup! Structure is hard
1 parent 2f33101 commit ac61fba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+2669
-1245
lines changed

Gruntfile.js

+30-12
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = function(grunt) {
3030
}
3131
},
3232
css: {
33-
files: ['sass/{,*/}*.{scss,sass}'],
33+
files: ['sass/{,*/}*.{scss,sass}', 'scss/{,*/}*.{scss,sass}'],
3434
tasks: ['sass']
3535
}
3636
},
@@ -88,13 +88,30 @@ module.exports = function(grunt) {
8888
},
8989
dist: {
9090
files: {
91-
'css/base/base.css': 'sass/base/base.sass',
92-
'css/components/components.css': 'sass/components/components.sass',
93-
'css/components/tabs.css': 'sass/components/tabs.sass',
94-
'css/components/messages.css': 'sass/components/messages.sass',
95-
'css/layout/layout.css': 'sass/layout/layout.sass',
96-
'css/theme/theme.css': 'sass/theme/theme.sass',
97-
'css/theme/print.css': 'sass/theme/print.sass'
91+
// Uncomment to render each part individually.
92+
// 'css/drupal/base/base.css': 'scss/drupal/base/base.scss',
93+
// 'css/drupal/components/components.css': 'scss/drupal/components/components.scss',
94+
// 'css/drupal/components/tabs.css': 'scss/drupal/components/tabs.scss',
95+
// 'css/drupal/components/messages.css': 'scss/drupal/components/messages.scss',
96+
// 'css/drupal/layout/layout.css': 'scss/drupal/layout/layout.scss',
97+
// 'css/drupal/theme/theme.css': 'scss/drupal/theme/theme.scss',
98+
99+
// Base Drupal Styles.
100+
'css/drupal/all.css': 'scss/drupal/all.scss'
101+
'css/drupal/theme/print.css': 'scss/drupal/theme/print.scss',
102+
103+
// Pattern library compiled styles.
104+
'css/pattern-library/all.css': 'scss/pattern-library/all.scss',
105+
'css/pattern-library/print.css': 'scss/pattern-library/print.scss',
106+
107+
// Custom tweaks and glue code for the base Drupal styles and the
108+
// pattern library. Also, Additional themes can be added there.
109+
110+
// Basic theme Glue Code.
111+
'css/themes/basic/all.css': 'scss/themes/basic/all.scss'
112+
113+
// Example sub style/theme.
114+
// 'css/themes/basic-light/all.css': 'scss/themes/basic-light/all.scss'
98115
}
99116
}
100117
},
@@ -127,6 +144,7 @@ module.exports = function(grunt) {
127144
}
128145
}
129146
});
147+
130148
// This is where we tell Grunt we plan to use this plug-in.
131149
grunt.loadNpmTasks('grunt-contrib-uglify');
132150
grunt.loadNpmTasks('grunt-contrib-imagemin');
@@ -135,12 +153,12 @@ module.exports = function(grunt) {
135153
grunt.loadNpmTasks('grunt-contrib-watch');
136154
grunt.loadNpmTasks('grunt-browser-sync');
137155
grunt.loadNpmTasks('grunt-available-tasks');
138-
// Now that we've loaded the package.json and the node_modules we set the base path
139-
// for the actual execution of the tasks
140-
// grunt.file.setBase('/')
156+
157+
// My tasks.
158+
grunt.registerTask('devmode', "Watch and BrowserSync all in one.", ['browserSync', 'watch']);
159+
141160
// This is where we tell Grunt what to do when we type "grunt" into the terminal.
142161
// Note: if you'd like to run and of the tasks individually you can do so by typing 'grunt mytaskname' alternatively
143162
// you can type 'grunt watch' to automatically track your files for changes.
144-
grunt.registerTask('devmode', "Watch and BrowserSync all in one.", ['browserSync', 'watch']);
145163
grunt.registerTask('default', ['availabletasks']);
146164
};

TERMSOFUSE.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Terms of Use
2+
3+
Stanford University owns all Stanford-branded themes and governs their use to benefit academic, research, communication and other University activities and interests. The University has the right to protect the use of these themes, the University name and University identity marks such as its seal, logos and symbols in all situations.
4+
5+
Use of the Stanford-branded themes is limited to Stanford University academic and administrative activities. Use is granted solely to:
6+
7+
* University academic departments, centers and research groups;
8+
* University administrative units;
9+
10+
The Stanford brand bar and Stanford universal footer should not be edited or altered in any way, following the Identity toolkit guidelines at https://identity.stanford.edu/web-toolkit/
11+
12+
Permission to use the themes is on a per-site basis. You will need to make a separate request for each website on which you would like to use these themes.
13+
14+
For more information about policies related to the Stanford University identity guidelines, please see http://identity.stanford.edu/policies/

css/base/base.css

-266
This file was deleted.

css/components/components.css

-35
This file was deleted.

0 commit comments

Comments
 (0)