Increase clickable area resizegrip
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
Willem Dantuma 2019-09-12 09:22:46 +02:00
parent 2ec2f506a2
commit 7c0af90769
1 changed files with 8 additions and 3 deletions

View File

@ -43,22 +43,26 @@
width:100%; width:100%;
overflow:hidden; overflow:hidden;
overflow-y:auto; overflow-y:auto;
position: relative;
z-index: 1;
} }
.resizegrip { .resizegrip {
height:1rem; height:2rem;
line-height: 1rem; line-height: 1rem;
display: none; display: none;
text-align: center; text-align: center;
position: relative;
z-index: 2;
} }
div.resizegrip > span { div.resizegrip > span {
position: relative; position: relative;
top: -0.2rem;
display: inline-block; display: inline-block;
height:0.3rem; height:0.3rem;
width:4rem; width:4rem;
background-color:rgba(0, 0, 0, 0.3) background-color:rgba(0, 0, 0, 0.3);
top:-0.3rem;
} }
.resizeable .resizegrip { .resizeable .resizegrip {
@ -68,6 +72,7 @@ div.resizegrip > span {
.resizeable .content { .resizeable .content {
height:calc(100% - 1rem); height:calc(100% - 1rem);
top:-1rem;
} }
@media screen and (min-width:44rem) { @media screen and (min-width:44rem) {