Skip to content

Commit

Permalink
fix(packaging): Remove extra ../ from paths
Browse files Browse the repository at this point in the history
[fixes #91991302]
  • Loading branch information
Issaq Al-Ahmed and Vinson Chuong committed Apr 7, 2015
1 parent 3d5747a commit 7c86355
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion hologram/doc_assets/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="styleguide-logo"><img src="/images/[email protected]" alt="Introduction to Pivotal UI" height="28px"></a>
<a href="/" class="styleguide-logo"><img src="images/[email protected]" alt="Introduction to Pivotal UI" height="28px"></a>
<div id="styleguide-first-level-nav-wrapper">
<ul id="styleguide-first-level-nav">
<% categories = ['Layout', 'Elements', 'Objects', 'Utilities', 'Forms', 'by Product', 'React Beta'] %>
Expand Down
4 changes: 2 additions & 2 deletions src/pivotal-ui/components/backgrounds.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ parent: background
*/

.bg-cloud {
background: $neutral-10 url('../images/gray-cloud.png') no-repeat 50% 50%;
background: $neutral-10 url('images/gray-cloud.png') no-repeat 50% 50%;
}

.bg-glow {
Expand Down Expand Up @@ -73,7 +73,7 @@ To modify this component to use a custom image, use an inline `background-image`
*/

.bg-full-bleed {
background-image: url('../images/aboutus-hero.jpg');
background-image: url('images/aboutus-hero.jpg');
background-repeat: no-repeat;
background-position: center center;
-webkit-background-size: cover;
Expand Down
6 changes: 3 additions & 3 deletions src/pivotal-ui/components/images.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Images can be made responsive-friendly via the addition of the `.img-responsive`
```html_example
<div class="row">
<div class="col-md-5">
<img alt="Responsive image" class="img-responsive" src="../images/such-awesome.jpg"/>
<img alt="Responsive image" class="img-responsive" src="images/such-awesome.jpg"/>
</div>
<div class="col-md-7">
<img alt="Responsive image" class="img-responsive" src="../images/such-awesome.jpg"/>
<img alt="Responsive image" class="img-responsive" src="images/such-awesome.jpg"/>
</div>
<div class="col-md-12">
<img alt="Responsive image" class="img-responsive" src="../images/such-awesome.jpg"/>
<img alt="Responsive image" class="img-responsive" src="images/such-awesome.jpg"/>
</div>
</div>
```
Expand Down
8 changes: 4 additions & 4 deletions src/pivotal-ui/components/intro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ categories:
<div class="col-md-12">
<a href="http://pivotalui-examples.cfapps.io/gary">
<div class="panel txt-c pvxl panel-clickable-alt mbn">
<p class="man txt-c"><img alt="..." height="300" src="../images/img--examplesGary.png" width="500"></p>
<p class="man txt-c"><img alt="..." height="300" src="images/img--examplesGary.png" width="500"></p>
</div>
</a>
</div>
<div class="col-md-12">
<a href="http://pivotalui-examples.cfapps.io/debra">
<div class="panel txt-c pvxl panel-clickable-alt mbn">
<p class="man txt-c"><img alt="..." height="300" src="../images/img--examplesDebra.png" width="500"></p>
<p class="man txt-c"><img alt="..." height="300" src="images/img--examplesDebra.png" width="500"></p>
</div>
</a>
</div>
Expand All @@ -150,14 +150,14 @@ categories:
<div class="col-md-12">
<div class="panel txt-c pvxl panel-clickable-alt">
<a href="http://pivotalui-examples.cfapps.io/kelly">
<p class="txt-c man"><img alt="..." height="300" src="../images/img--examplesKelly.png" width="500"></p>
<p class="txt-c man"><img alt="..." height="300" src="images/img--examplesKelly.png" width="500"></p>
</a>
</div>
</div>
<div class="col-md-12">
<div class="panel txt-c pvxl panel-clickable-alt">
<a href="http://pivotalui-examples.cfapps.io/todd">
<p class="txt-c man"><img alt="..." height="300" src="../images/img--examplesTodd.png" width="500"></p>
<p class="txt-c man"><img alt="..." height="300" src="images/img--examplesTodd.png" width="500"></p>
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pivotal-ui/components/panes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ one on the `.container` element will be constrained to the content width.
<div class="container bg-glow">
<h1 class="type-neutral-11">This is a pane</h1>
<div class="pane-image">
<img class="img-responsive" src="../images/console-laptop.png" alt="A laptop showing Pivotal Web Services dashboard." />
<img class="img-responsive" src="images/console-laptop.png" alt="A laptop showing Pivotal Web Services dashboard." />
</div>
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/source-sans-pro/source-sans-pro.css.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@mixin font-helper($name, $weight, $style) {
@font-face {
font-family: 'SourceSansPro';
src: url("../fonts/#{$name}.eot");
src: url("../fonts/#{$name}.eot?#iefix") format("embedded-opentype"),
url("../fonts/#{$name}.woff") format("woff"),
url("../fonts/#{$name}.ttf") format("truetype"),
url("../fonts/#{$name}.svg##{$name}") format("svg");
src: url("fonts/#{$name}.eot");
src: url("fonts/#{$name}.eot?#iefix") format("embedded-opentype"),
url("fonts/#{$name}.woff") format("woff"),
url("fonts/#{$name}.ttf") format("truetype"),
url("fonts/#{$name}.svg##{$name}") format("svg");
font-weight: $weight;
font-style: $style;
}
Expand Down

0 comments on commit 7c86355

Please sign in to comment.