blob: afa10c94ad5054ee782efa9690c93be99653a607 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Only shows one icon at a time, depending on hover status */
.rgh-quick-file-edit:not(:hover) .octicon-pencil,
.rgh-quick-file-edit:hover > :first-child {
display: none !important;
}
/* Widen column to avoid bumps in directory-less listings */
.rgh-quick-file-edit {
width: 16px;
display: inline-block;
}
|