1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-13 17:14:04 +02:00

Remove .info from table rows

This commit is contained in:
Mark Otto
2013-01-17 20:13:11 -08:00
parent 5663833bfc
commit 89b6477bdc
2 changed files with 0 additions and 14 deletions

View File

@@ -979,10 +979,6 @@ table th[class*="span"] {
background-color: #fcf8e3; background-color: #fcf8e3;
} }
.table tbody tr.info > td {
background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td { .table-hover tbody tr.success:hover > td {
background-color: #d0e9c6; background-color: #d0e9c6;
} }
@@ -995,10 +991,6 @@ table th[class*="span"] {
background-color: #faf2cc; background-color: #faf2cc;
} }
.table-hover tbody tr.info:hover > td {
background-color: #c4e3f3;
}
form { form {
margin: 0; margin: 0;
} }

View File

@@ -201,9 +201,6 @@ table th[class*="span"] {
&.warning > td { &.warning > td {
background-color: @state-warning-background; background-color: @state-warning-background;
} }
&.info > td {
background-color: @state-info-background;
}
} }
// Hover states for .table-hover // Hover states for .table-hover
@@ -217,7 +214,4 @@ table th[class*="span"] {
&.warning:hover > td { &.warning:hover > td {
background-color: darken(@state-warning-background, 5%); background-color: darken(@state-warning-background, 5%);
} }
&.info:hover > td {
background-color: darken(@state-info-background, 5%);
}
} }