-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #15 Fully customizable bootstrap-sass based ReactPathly theme ful…
…ly integrated into watchify and browser sync workflow
- Loading branch information
1 parent
1cf708f
commit e7f36d7
Showing
79 changed files
with
9,477 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
styles/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@function twbs-font-path($path) { | ||
@return font-url($path, true); | ||
} | ||
|
||
@function twbs-image-path($path) { | ||
@return image-url($path, true); | ||
} | ||
|
||
$bootstrap-sass-asset-helper: true; |
19 changes: 19 additions & 0 deletions
19
styles/bootstrap-sass/assets/stylesheets/_bootstrap-mincer.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Mincer asset helper functions | ||
// | ||
// This must be imported into a .css.ejs.scss file. | ||
// Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation. | ||
|
||
|
||
@function twbs-font-path($path) { | ||
// do something like following | ||
// from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>" | ||
// from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>" | ||
// or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>" | ||
@return "<%- asset_path("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>"; | ||
} | ||
|
||
@function twbs-image-path($file) { | ||
@return "<%- asset_path("#{$file}") %>"; | ||
} | ||
|
||
$bootstrap-sass-asset-helper: true; |
9 changes: 9 additions & 0 deletions
9
styles/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@function twbs-font-path($path) { | ||
@return font-path($path); | ||
} | ||
|
||
@function twbs-image-path($path) { | ||
@return image-path($path); | ||
} | ||
|
||
$bootstrap-sass-asset-helper: true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/*! | ||
* Bootstrap v3.3.6 (http://getbootstrap.com) | ||
* Copyright 2011-2015 Twitter, Inc. | ||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
*/ | ||
|
||
// Core variables and mixins | ||
@import "bootstrap/variables"; | ||
@import "bootstrap/mixins"; | ||
|
||
// Reset and dependencies | ||
@import "bootstrap/normalize"; | ||
@import "bootstrap/print"; | ||
@import "bootstrap/glyphicons"; | ||
|
||
// Core CSS | ||
@import "bootstrap/scaffolding"; | ||
@import "bootstrap/type"; | ||
@import "bootstrap/code"; | ||
@import "bootstrap/grid"; | ||
@import "bootstrap/tables"; | ||
@import "bootstrap/forms"; | ||
@import "bootstrap/buttons"; | ||
|
||
// Components | ||
@import "bootstrap/component-animations"; | ||
@import "bootstrap/dropdowns"; | ||
@import "bootstrap/button-groups"; | ||
@import "bootstrap/input-groups"; | ||
@import "bootstrap/navs"; | ||
@import "bootstrap/navbar"; | ||
@import "bootstrap/breadcrumbs"; | ||
@import "bootstrap/pagination"; | ||
@import "bootstrap/pager"; | ||
@import "bootstrap/labels"; | ||
@import "bootstrap/badges"; | ||
@import "bootstrap/jumbotron"; | ||
@import "bootstrap/thumbnails"; | ||
@import "bootstrap/alerts"; | ||
@import "bootstrap/progress-bars"; | ||
@import "bootstrap/media"; | ||
@import "bootstrap/list-group"; | ||
@import "bootstrap/panels"; | ||
@import "bootstrap/responsive-embed"; | ||
@import "bootstrap/wells"; | ||
@import "bootstrap/close"; | ||
|
||
// Components w/ JavaScript | ||
@import "bootstrap/modals"; | ||
@import "bootstrap/tooltip"; | ||
@import "bootstrap/popovers"; | ||
@import "bootstrap/carousel"; | ||
|
||
// Utility classes | ||
@import "bootstrap/utilities"; | ||
@import "bootstrap/responsive-utilities"; |
73 changes: 73 additions & 0 deletions
73
styles/bootstrap-sass/assets/stylesheets/bootstrap/_alerts.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// | ||
// Alerts | ||
// -------------------------------------------------- | ||
|
||
|
||
// Base styles | ||
// ------------------------- | ||
|
||
.alert { | ||
padding: $alert-padding; | ||
margin-bottom: $line-height-computed; | ||
border: 1px solid transparent; | ||
border-radius: $alert-border-radius; | ||
|
||
// Headings for larger alerts | ||
h4 { | ||
margin-top: 0; | ||
// Specified for the h4 to prevent conflicts of changing $headings-color | ||
color: inherit; | ||
} | ||
|
||
// Provide class for links that match alerts | ||
.alert-link { | ||
font-weight: $alert-link-font-weight; | ||
} | ||
|
||
// Improve alignment and spacing of inner content | ||
> p, | ||
> ul { | ||
margin-bottom: 0; | ||
} | ||
|
||
> p + p { | ||
margin-top: 5px; | ||
} | ||
} | ||
|
||
// Dismissible alerts | ||
// | ||
// Expand the right padding and account for the close button's positioning. | ||
|
||
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. | ||
.alert-dismissible { | ||
padding-right: ($alert-padding + 20); | ||
|
||
// Adjust close link position | ||
.close { | ||
position: relative; | ||
top: -2px; | ||
right: -21px; | ||
color: inherit; | ||
} | ||
} | ||
|
||
// Alternate styles | ||
// | ||
// Generate contextual modifier classes for colorizing the alert. | ||
|
||
.alert-success { | ||
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text); | ||
} | ||
|
||
.alert-info { | ||
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text); | ||
} | ||
|
||
.alert-warning { | ||
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text); | ||
} | ||
|
||
.alert-danger { | ||
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text); | ||
} |
68 changes: 68 additions & 0 deletions
68
styles/bootstrap-sass/assets/stylesheets/bootstrap/_badges.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// | ||
// Badges | ||
// -------------------------------------------------- | ||
|
||
|
||
// Base class | ||
.badge { | ||
display: inline-block; | ||
min-width: 10px; | ||
padding: 3px 7px; | ||
font-size: $font-size-small; | ||
font-weight: $badge-font-weight; | ||
color: $badge-color; | ||
line-height: $badge-line-height; | ||
vertical-align: middle; | ||
white-space: nowrap; | ||
text-align: center; | ||
background-color: $badge-bg; | ||
border-radius: $badge-border-radius; | ||
|
||
// Empty badges collapse automatically (not available in IE8) | ||
&:empty { | ||
display: none; | ||
} | ||
|
||
// Quick fix for badges in buttons | ||
.btn & { | ||
position: relative; | ||
top: -1px; | ||
} | ||
|
||
.btn-xs &, | ||
.btn-group-xs > .btn & { | ||
top: 0; | ||
padding: 1px 5px; | ||
} | ||
|
||
// [converter] extracted a& to a.badge | ||
|
||
// Account for badges in navs | ||
.list-group-item.active > &, | ||
.nav-pills > .active > a > & { | ||
color: $badge-active-color; | ||
background-color: $badge-active-bg; | ||
} | ||
|
||
.list-group-item > & { | ||
float: right; | ||
} | ||
|
||
.list-group-item > & + & { | ||
margin-right: 5px; | ||
} | ||
|
||
.nav-pills > li > a > & { | ||
margin-left: 3px; | ||
} | ||
} | ||
|
||
// Hover state, but only for links | ||
a.badge { | ||
&:hover, | ||
&:focus { | ||
color: $badge-link-hover-color; | ||
text-decoration: none; | ||
cursor: pointer; | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
styles/bootstrap-sass/assets/stylesheets/bootstrap/_breadcrumbs.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// | ||
// Breadcrumbs | ||
// -------------------------------------------------- | ||
|
||
|
||
.breadcrumb { | ||
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal; | ||
margin-bottom: $line-height-computed; | ||
list-style: none; | ||
background-color: $breadcrumb-bg; | ||
border-radius: $border-radius-base; | ||
|
||
> li { | ||
display: inline-block; | ||
|
||
+ li:before { | ||
// [converter] Workaround for https://github.com/sass/libsass/issues/1115 | ||
$nbsp: "\00a0"; | ||
content: "#{$breadcrumb-separator}#{$nbsp}"; // Unicode space added since inline-block means non-collapsing white-space | ||
padding: 0 5px; | ||
color: $breadcrumb-color; | ||
} | ||
} | ||
|
||
> .active { | ||
color: $breadcrumb-active-color; | ||
} | ||
} |
Oops, something went wrong.