2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Clean up inverse button using variables, adding button group examples. Also adding inverse inline label

This commit is contained in:
Andreas Cederström
2012-02-13 09:41:28 +01:00
parent da94850844
commit 60826077e7
6 changed files with 81 additions and 14 deletions
+2 -2
View File
@@ -119,7 +119,7 @@
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-dark.active {
.btn-inverse.active {
color: rgba(255,255,255,.75);
}
@@ -146,7 +146,7 @@
}
// Inverse appears as dark gray
.btn-inverse {
.buttonBackground(#454545, #262626);
.buttonBackground(@gray, @grayDarker);
}
+3
View File
@@ -30,3 +30,6 @@
.label-info { background-color: @infoText; }
.label-info:hover { background-color: darken(@infoText, 10%); }
.label-inverse { background-color: @grayDark; }
.label-inverse:hover { background-color: darken(@grayDark, 10%); }