mirror of
https://github.com/danbulant/dribbblish-dynamic-theme
synced 2026-05-24 12:35:05 +00:00
add hover & active state to config area headers
This commit is contained in:
parent
4328a81a1c
commit
89742ae74a
1 changed files with 20 additions and 2 deletions
|
|
@ -60,8 +60,18 @@
|
|||
min-height: 38px; //for some reason height alone isn't enough
|
||||
height: 38px;
|
||||
|
||||
.dribbblish-config-area-header svg {
|
||||
transform: rotate(270deg);
|
||||
.dribbblish-config-area-header {
|
||||
svg {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
&:hover svg {
|
||||
transform: rotate(270deg) scale(1.1);
|
||||
}
|
||||
|
||||
&:active svg {
|
||||
transform: rotate(270deg) scale(0.9);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -86,6 +96,14 @@
|
|||
stroke-width: 2px;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
&:hover svg {
|
||||
transform: rotate(90deg) scale(1.1);
|
||||
}
|
||||
|
||||
&:active svg {
|
||||
transform: rotate(90deg) scale(0.9);
|
||||
}
|
||||
}
|
||||
|
||||
.dribbblish-config-area-items {
|
||||
|
|
|
|||
Loading…
Reference in a new issue