-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from Dignifiedquire/bootstrap3
Upgrade to Bootstrap3
- Loading branch information
Showing
56 changed files
with
7,847 additions
and
93 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// | ||
// 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; | ||
} | ||
} | ||
|
||
// Dismissable alerts | ||
// | ||
// Expand the right padding and account for the close button's positioning. | ||
|
||
.alert-dismissable { | ||
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 { | ||
.alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text); | ||
} | ||
.alert-info { | ||
.alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text); | ||
} | ||
.alert-warning { | ||
.alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text); | ||
} | ||
.alert-danger { | ||
.alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text); | ||
} |
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,51 @@ | ||
// | ||
// Badges | ||
// -------------------------------------------------- | ||
|
||
|
||
// Base classes | ||
.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: baseline; | ||
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; | ||
} | ||
} | ||
|
||
// Hover state, but only for links | ||
a.badge { | ||
&:hover, | ||
&:focus { | ||
color: @badge-link-hover-color; | ||
text-decoration: none; | ||
cursor: pointer; | ||
} | ||
} | ||
|
||
// Account for counters in navs | ||
a.list-group-item.active > .badge, | ||
.nav-pills > .active > a > .badge { | ||
color: @badge-active-color; | ||
background-color: @badge-active-bg; | ||
} | ||
.nav-pills > li > a > .badge { | ||
margin-left: 3px; | ||
} |
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,49 @@ | ||
// Core variables and mixins | ||
@import "variables.less"; | ||
@import "mixins.less"; | ||
|
||
// Reset | ||
@import "normalize.less"; | ||
@import "print.less"; | ||
|
||
// Core CSS | ||
@import "scaffolding.less"; | ||
@import "type.less"; | ||
@import "code.less"; | ||
@import "grid.less"; | ||
@import "tables.less"; | ||
@import "forms.less"; | ||
@import "buttons.less"; | ||
|
||
// Components | ||
@import "component-animations.less"; | ||
@import "glyphicons.less"; | ||
@import "dropdowns.less"; | ||
@import "button-groups.less"; | ||
@import "input-groups.less"; | ||
@import "navs.less"; | ||
@import "navbar.less"; | ||
@import "breadcrumbs.less"; | ||
@import "pagination.less"; | ||
@import "pager.less"; | ||
@import "labels.less"; | ||
@import "badges.less"; | ||
@import "jumbotron.less"; | ||
@import "thumbnails.less"; | ||
@import "alerts.less"; | ||
@import "progress-bars.less"; | ||
@import "media.less"; | ||
@import "list-group.less"; | ||
@import "panels.less"; | ||
@import "wells.less"; | ||
@import "close.less"; | ||
|
||
// Components w/ JavaScript | ||
@import "modals.less"; | ||
@import "tooltip.less"; | ||
@import "popovers.less"; | ||
@import "carousel.less"; | ||
|
||
// Utility classes | ||
@import "utilities.less"; | ||
@import "responsive-utilities.less"; |
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,23 @@ | ||
// | ||
// Breadcrumbs | ||
// -------------------------------------------------- | ||
|
||
|
||
.breadcrumb { | ||
padding: 8px 15px; | ||
margin-bottom: @line-height-computed; | ||
list-style: none; | ||
background-color: @breadcrumb-bg; | ||
border-radius: @border-radius-base; | ||
> li { | ||
display: inline-block; | ||
+ li:before { | ||
content: "@{breadcrumb-separator}\00a0"; // 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.