mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-27 05:26:05 +10:00
Merge branch '17187-hover-row' into 'master'
Implement new row hover style ## What does this MR do? Implement new row hover style ## What are the relevant issue numbers? Closes #17187 ## Screenshots (if relevant)  cc @dzaporozhets See merge request !4422
This commit is contained in:
@@ -63,7 +63,8 @@ $gl-padding-top: 10px;
|
||||
/*
|
||||
* Misc
|
||||
*/
|
||||
$row-hover: #f4f8fe;
|
||||
$row-hover: #f7faff;
|
||||
$row-hover-border: #b2d7ff;
|
||||
$progress-color: #c0392b;
|
||||
$avatar_radius: 50%;
|
||||
$header-height: 50px;
|
||||
|
||||
@@ -15,16 +15,23 @@
|
||||
margin-bottom: 0;
|
||||
|
||||
tr {
|
||||
> td, > th {
|
||||
border-bottom: 1px solid $table-border-gray;
|
||||
border-top: 1px solid $table-border-gray;
|
||||
|
||||
td, th {
|
||||
line-height: 23px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
td {
|
||||
background: $row-hover;
|
||||
}
|
||||
cursor: pointer;
|
||||
|
||||
td {
|
||||
background-color: $row-hover;
|
||||
border-top: 1px solid $row-hover-border;
|
||||
border-bottom: 1px solid $row-hover-border;
|
||||
}
|
||||
}
|
||||
|
||||
&.selected {
|
||||
td {
|
||||
background: $gray-dark;
|
||||
|
||||
Reference in New Issue
Block a user