Skip to content

Commit e933cf9

Browse files
committed
Many updates...
1 parent b8908fe commit e933cf9

File tree

328 files changed

+44377
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

328 files changed

+44377
-166
lines changed

media/bootstrap/.DS_Store

6 KB
Binary file not shown.

media/bootstrap/js/bootstrap.min.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

media/bootstrap/less/.DS_Store

6 KB
Binary file not shown.

media/bootstrap/less/alerts.less

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
//
2+
// Alerts
3+
// --------------------------------------------------
4+
5+
6+
// Base styles
7+
// -------------------------
8+
9+
.alert {
10+
padding: @alert-padding;
11+
margin-bottom: @line-height-computed;
12+
border: 1px solid transparent;
13+
border-radius: @alert-border-radius;
14+
15+
// Headings for larger alerts
16+
h4 {
17+
margin-top: 0;
18+
// Specified for the h4 to prevent conflicts of changing @headings-color
19+
color: inherit;
20+
}
21+
// Provide class for links that match alerts
22+
.alert-link {
23+
font-weight: @alert-link-font-weight;
24+
}
25+
26+
// Improve alignment and spacing of inner content
27+
> p,
28+
> ul {
29+
margin-bottom: 0;
30+
}
31+
> p + p {
32+
margin-top: 5px;
33+
}
34+
}
35+
36+
// Dismissable alerts
37+
//
38+
// Expand the right padding and account for the close button's positioning.
39+
40+
.alert-dismissable {
41+
padding-right: (@alert-padding + 20);
42+
43+
// Adjust close link position
44+
.close {
45+
position: relative;
46+
top: -2px;
47+
right: -21px;
48+
color: inherit;
49+
}
50+
}
51+
52+
// Alternate styles
53+
//
54+
// Generate contextual modifier classes for colorizing the alert.
55+
56+
.alert-success {
57+
.alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
58+
}
59+
.alert-info {
60+
.alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
61+
}
62+
.alert-warning {
63+
.alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
64+
}
65+
.alert-danger {
66+
.alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
67+
}

media/bootstrap/less/badges.less

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
//
2+
// Badges
3+
// --------------------------------------------------
4+
5+
6+
// Base classes
7+
.badge {
8+
display: inline-block;
9+
min-width: 10px;
10+
padding: 3px 7px;
11+
font-size: @font-size-small;
12+
font-weight: @badge-font-weight;
13+
color: @badge-color;
14+
line-height: @badge-line-height;
15+
vertical-align: baseline;
16+
white-space: nowrap;
17+
text-align: center;
18+
background-color: @badge-bg;
19+
border-radius: @badge-border-radius;
20+
21+
// Empty badges collapse automatically (not available in IE8)
22+
&:empty {
23+
display: none;
24+
}
25+
26+
// Quick fix for badges in buttons
27+
.btn & {
28+
position: relative;
29+
top: -1px;
30+
}
31+
.btn-xs & {
32+
top: 0;
33+
padding: 1px 5px;
34+
}
35+
}
36+
37+
// Hover state, but only for links
38+
a.badge {
39+
&:hover,
40+
&:focus {
41+
color: @badge-link-hover-color;
42+
text-decoration: none;
43+
cursor: pointer;
44+
}
45+
}
46+
47+
// Account for counters in navs
48+
a.list-group-item.active > .badge,
49+
.nav-pills > .active > a > .badge {
50+
color: @badge-active-color;
51+
background-color: @badge-active-bg;
52+
}
53+
.nav-pills > li > a > .badge {
54+
margin-left: 3px;
55+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// Core variables and mixins
2+
@import "variables.less";
3+
@import "mixins.less";
4+
5+
// Reset
6+
@import "normalize.less";
7+
@import "print.less";
8+
9+
// Core CSS
10+
@import "scaffolding.less";
11+
@import "type.less";
12+
@import "code.less";
13+
@import "grid.less";
14+
@import "tables.less";
15+
@import "forms.less";
16+
@import "buttons.less";
17+
18+
// Components
19+
@import "component-animations.less";
20+
@import "glyphicons.less";
21+
@import "dropdowns.less";
22+
@import "button-groups.less";
23+
@import "input-groups.less";
24+
@import "navs.less";
25+
@import "navbar.less";
26+
@import "breadcrumbs.less";
27+
@import "pagination.less";
28+
@import "pager.less";
29+
@import "labels.less";
30+
@import "badges.less";
31+
@import "jumbotron.less";
32+
@import "thumbnails.less";
33+
@import "alerts.less";
34+
@import "progress-bars.less";
35+
@import "media.less";
36+
@import "list-group.less";
37+
@import "panels.less";
38+
@import "wells.less";
39+
@import "close.less";
40+
41+
// Components w/ JavaScript
42+
@import "modals.less";
43+
@import "tooltip.less";
44+
@import "popovers.less";
45+
@import "carousel.less";
46+
47+
// Utility classes
48+
@import "utilities.less";
49+
@import "responsive-utilities.less";
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//
2+
// Breadcrumbs
3+
// --------------------------------------------------
4+
5+
6+
.breadcrumb {
7+
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
8+
margin-bottom: @line-height-computed;
9+
list-style: none;
10+
background-color: @breadcrumb-bg;
11+
border-radius: @border-radius-base;
12+
13+
> li {
14+
display: inline-block;
15+
16+
+ li:before {
17+
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
18+
padding: 0 5px;
19+
color: @breadcrumb-color;
20+
}
21+
}
22+
23+
> .active {
24+
color: @breadcrumb-active-color;
25+
}
26+
}

0 commit comments

Comments
 (0)