Use a cursor pointer when columns not expanded

This commit is contained in:
Joakim Hedlund 2020-10-17 12:17:12 +02:00 committed by GitHub
parent 2f0a1ba99e
commit 20b68aff06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -620,17 +620,23 @@ body {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
background-color: #ddd;
transition: box-shadow 0.1s ease-in-out;
transition: box-shadow 0.1s ease-in-out;
}
/* On mouse-over, add a deeper shadow */
.column:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,.3);
border:
}
.column:active{
box-shadow: 0 8px 16px 0 rgba(0,0,0,.5);
}
/* When the columns are inactive, make behave link-like */
.column:not(.in-animation) {
cursor: pointer;
}
.column > h2 {color:black;}