Skip to content

Commit

Permalink
fix(files): rename style_guide to styleguide
Browse files Browse the repository at this point in the history
[Finishes #76360566]

Signed-off-by: Bebe Peng <bpeng@pivotal.io>
  • Loading branch information
jenndodd authored and bebepeng committed Oct 17, 2014
1 parent 3c37e24 commit 647bb5f
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ gulp.task('_fonts', [
]);

gulp.task('_compassBuild', ['clean'], function() {
return gulp.src(['src/pivotal-ui/pivotal-ui.scss', 'src/style_guide/style_guide.scss'])
return gulp.src(['src/pivotal-ui/pivotal-ui.scss', 'src/styleguide/styleguide.scss'])
.pipe(
compass({
config_file: './config/compass.rb',
Expand Down Expand Up @@ -128,16 +128,16 @@ gulp.task('_sourceSansPro', ['clean'], function() {
});

gulp.task('_copyStyleguideAssets', ['clean'], function() {
return gulp.src(['src/style_guide/*.js', 'src/style_guide/github.css'])
.pipe(gulp.dest('./dist/style_guide'));
return gulp.src(['src/styleguide/*.js', 'src/styleguide/github.css'])
.pipe(gulp.dest('./dist/styleguide'));
});

gulp.task('_copyRandomAssets', ['clean'], function() {
return gulp.src([
'src/nginx.conf',
'src/Staticfile',
'src/style_guide/404.html',
'src/style_guide/pane.html'
'src/styleguide/404.html',
'src/styleguide/pane.html'
])
.pipe(gulp.dest('./dist/'));
});
Expand Down
2 changes: 1 addition & 1 deletion hologram/css_critic_test_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CssCriticTestGenerator < Hologram::Plugin
<head>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="../dist/pivotal-ui/pivotal-ui.css">
<link rel="stylesheet" href="../dist/style_guide/github.css">
<link rel="stylesheet" href="../dist/styleguide/github.css">
<link rel="stylesheet" disabled href="../dist/syntax-highlighting/prism-default.css">
<link rel="stylesheet" href="../dist/syntax-highlighting/prism-okaida.css">
</head>
Expand Down
6 changes: 3 additions & 3 deletions hologram/doc_assets/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<title>a brand new styleguide: <%= title %></title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="pivotal-ui/pivotal-ui.css">
<link rel="stylesheet" href="style_guide/style_guide.css">
<link rel="stylesheet" href="style_guide/github.css">
<link rel="stylesheet" href="styleguide/styleguide.css">
<link rel="stylesheet" href="styleguide/github.css">
<link rel="stylesheet" disabled href="syntax-highlighting/prism-default.css">
<link rel="stylesheet" href="syntax-highlighting/prism-okaida.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script src="pivotal-ui/pivotal-ui.js"></script>
<script src="style_guide/style_guide.js"></script>
<script src="styleguide/styleguide.js"></script>
</head>
<body>
<nav class="styleguide-header">
Expand Down
6 changes: 3 additions & 3 deletions src/pivotal-ui/components/tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -387,21 +387,21 @@ We are making the assumption here that table-hover will *only* be used if the ta
%th{colspan: 2}
Clickability
%tbody
%tr{:'data-target-path' => '/style_guide#link', :'data-prevent-click' => 'true', :'data-prevent-click-message' => "YOU'VE ENTERED THE FORBIDDEN ZONE"}
%tr{:'data-target-path' => '/styleguide#link', :'data-prevent-click' => 'true', :'data-prevent-click-message' => "YOU'VE ENTERED THE FORBIDDEN ZONE"}
%td
Forbidden Links
%td
High
%td.txt-m.txt-r
%i.fa.fa-chevron-right.type-primary-4
%tr{:'data-target-path' => '/style_guide#button'}
%tr{:'data-target-path' => '/styleguide#button'}
%td
Buttons
%td
Medium
%td.txt-m.txt-r
%i.fa.fa-chevron-right.type-primary-4
%tr{:'data-target-path' => '/style_guide#type'}
%tr{:'data-target-path' => '/styleguide#type'}
%td
Typography
%td
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/style_guide/pane.html → src/styleguide/pane.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<head>
<title>a brand new styleguide: <%= title %></title>
<link rel="stylesheet" href="pivotal-ui/pivotal-ui.css">
<link rel="stylesheet" href="style_guide/style_guide.css">
<link rel="stylesheet" href="styleguide/styleguide.css">
<link rel="stylesheet" disabled href="syntax-highlighting/prism-default.css">
<link rel="stylesheet" href="syntax-highlighting/prism-okaida.css">
<script src="pivotal-ui/pivotal-ui.js"></script>
<script src="style_guide/style_guide.js"></script>
<script src="styleguide/styleguide.js"></script>
</head>
<body>

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 647bb5f

Please sign in to comment.