Skip to content

Commit

Permalink
cosmo: fixes thomaspark#68, .text-state utility classes
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspark committed Feb 7, 2013
1 parent 2620816 commit 14dc685
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
24 changes: 24 additions & 0 deletions cosmo/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -5148,6 +5148,30 @@ blockquote small {
.muted {
color: #bbbbbb;
}
.text-warning {
color: #ff7518;
}
a.text-warning:hover {
color: #e45c00;
}
.text-error {
color: #ff0039;
}
a.text-error:hover {
color: #cc002e;
}
.text-info {
color: #9954bb;
}
a.text-info:hover {
color: #7e3f9d;
}
.text-success {
color: #3fb618;
}
a.text-success:hover {
color: #2f8912;
}
.navbar .navbar-inner {
background-image: none;
-webkit-box-shadow: none;
Expand Down
8 changes: 8 additions & 0 deletions cosmo/bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions cosmo/bootswatch.less
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@ blockquote {
color: @gray;
}

.text-warning { color: @orange; }
a.text-warning:hover { color: darken(@orange, 10%); }

.text-error { color: @red; }
a.text-error:hover { color: darken(@red, 10%); }

.text-info { color: @purple; }
a.text-info:hover { color: darken(@purple, 10%); }

.text-success { color: @green; }
a.text-success:hover { color: darken(@green, 10%); }

// SCAFFOLDING
// -----------------------------------------------------

Expand Down

0 comments on commit 14dc685

Please sign in to comment.