mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
46 lines
744 B
Plaintext
46 lines
744 B
Plaintext
/** @define HoverIcon */
|
|
|
|
.HoverIcon {
|
|
@media screen and (max-width: 571px) {
|
|
&--onlyLarge {
|
|
.HoverIcon-icon--opacity {
|
|
opacity: 1;
|
|
}
|
|
.HoverIcon-icon--height {
|
|
height: 22px;
|
|
}
|
|
}
|
|
}
|
|
&-icon {
|
|
width: auto;
|
|
&--color {
|
|
g, path {
|
|
transition: fill 0.15s ease-out;
|
|
}
|
|
}
|
|
&--opacity {
|
|
transition: opacity 0.3s ease-out;
|
|
opacity: 0;
|
|
}
|
|
&--height {
|
|
transition: height 0.2s ease-out;
|
|
height: 0;
|
|
}
|
|
}
|
|
&:hover {
|
|
.HoverIcon-icon {
|
|
&--opacity {
|
|
opacity: 1;
|
|
}
|
|
&--height {
|
|
height: 22px;
|
|
}
|
|
&--color {
|
|
path, g {
|
|
fill: @blue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|