Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
dbcd8733
Commit
dbcd8733
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
fixes
#4371
: scope hovers on table rows to tbody
parent
662fface
1 merge request
!4427
Use variable for desktop media query
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/css/bootstrap.css
+2
-2
docs/assets/css/bootstrap.css
less/tables.less
+5
-3
less/tables.less
with
7 additions
and
5 deletions
+7
-5
docs/assets/css/bootstrap.css
+
2
-
2
View file @
dbcd8733
...
@@ -1863,8 +1863,8 @@ table {
...
@@ -1863,8 +1863,8 @@ table {
background-color
:
#f9f9f9
;
background-color
:
#f9f9f9
;
}
}
.table-hover
tr
:hover
td
,
.table-hover
tbody
tr
:hover
td
,
.table-hover
tr
:hover
th
{
.table-hover
tbody
tr
:hover
th
{
background-color
:
#f5f5f5
;
background-color
:
#f5f5f5
;
}
}
...
...
This diff is collapsed.
Click to expand it.
less/tables.less
+
5
-
3
View file @
dbcd8733
...
@@ -159,9 +159,11 @@ table {
...
@@ -159,9 +159,11 @@ table {
// ------------
// ------------
// Placed here since it has to come after the potential zebra striping
// Placed here since it has to come after the potential zebra striping
.table-hover {
.table-hover {
tr:hover td,
tbody {
tr:hover th {
tr:hover td,
background-color: @tableBackgroundHover;
tr:hover th {
background-color: @tableBackgroundHover;
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets