Skip to content

Commit

Permalink
feat(bootstrap): upgrade from v3.2 to v3.3.1
Browse files Browse the repository at this point in the history
[Finishes #80779088]
  • Loading branch information
Geoff Pleiss committed Nov 19, 2014
1 parent 9db28a9 commit ff1701d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 38 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"version": "1.1.1",
"main": "Gruntfile.js",
"dependencies": {
"bootstrap-sass": "~3.2.0",
"bootstrap-sass": "~3.3.0",
"envify": "^1.2.1",
"font-awesome": "^4.2.0",
"jquery": "^2.1.1",
Expand Down
37 changes: 0 additions & 37 deletions src/pivotal-ui/components/media.scss
Original file line number Diff line number Diff line change
Expand Up @@ -187,40 +187,3 @@ For example, `.media-stackable-xs` is stacked on screen sizes from 0-480px and t
width: 1000000px;
}
}

/* To be removed when Bootstrap accepts PR #14801 and releases a new version */
.media {
// Proper spacing between instances of .media
margin-top: 15px;

// Proper spacing of .media-right
.media-right,
.pull-right {
padding-left: 10px;
}

// Proper spacing of .media-left
.media-left,
.pull-left {
padding-right: 10px;
}

&:first-child {
margin-top: 0;
}

.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}

.media-middle {
vertical-align: middle;
}

.media-bottom {
vertical-align: bottom;
}
}
6 changes: 6 additions & 0 deletions src/pivotal-ui/components/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ $neutral-11: $gray-11;
// Grays (Bootstrap only, don't use directly) TODO: can we eliminate these entirely without modifying bootstrap base files?
// -------------------------

$gray-base: #000 !default;
$gray-darker: lighten(#000, 13.5%) !default; // #222 bootstrap only
$gray-dark: lighten(#000, 20%) !default; // #333 bootstrap only
$gray: lighten(#000, 33.5%) !default; // #555 bootstrap only
Expand Down Expand Up @@ -217,6 +218,7 @@ $text-color: $gray-3 !default;

$link-color: $blue-2;
$link-hover-color: $dark-1;
$link-hover-decoration: underline !default;

$link-lowlight-color: $blue-4;
$link-lowlight-hover-color: $blue-2;
Expand Down Expand Up @@ -443,10 +445,13 @@ $btn-link-disabled-color: $gray-light !default;

$input-bg: #fff !default;
$input-bg-disabled: $gray-lighter !default;
$progress-border-radius: $border-radius-base !default;

$input-color: $gray !default;
$input-border: #ccc !default;
$input-border-radius: $border-radius-small !default;
$input-border-radius-large: $border-radius-large !default;
$input-border-radius-small: $border-radius-small !default;
$input-border-focus: $blue-3 !default;
$input-border-width: 1px !default;

Expand All @@ -461,6 +466,7 @@ $legend-border-color: #e5e5e5 !default;

$input-group-addon-bg: $gray-lighter !default;
$input-group-addon-border-color: $input-border !default;
$cursor-disabled: not-allowed !default;


// Dropdowns
Expand Down

0 comments on commit ff1701d

Please sign in to comment.