Commit 138c0b8b by Kyle Fiedler

Fixed overflow and fixed hover on new module

parent 92801614
...@@ -140,7 +140,7 @@ section.cal { ...@@ -140,7 +140,7 @@ section.cal {
li { li {
border-bottom: 1px solid darken($light-blue, 8%); border-bottom: 1px solid darken($light-blue, 8%);
position: relative; position: relative;
overflow-y: hidden; overflow: hidden;
&:hover { &:hover {
background-color: lighten($yellow, 14%); background-color: lighten($yellow, 14%);
...@@ -192,16 +192,6 @@ section.cal { ...@@ -192,16 +192,6 @@ section.cal {
width: 90%; width: 90%;
z-index: 99; z-index: 99;
&:before {
background: $dark-blue;
content: " ";
display: block;
height: 10px;
@include position(absolute, -5px 0 0 50%);
@include transform(rotate(45deg));
width: 10px;
}
ul { ul {
li { li {
border-bottom: 0; border-bottom: 0;
...@@ -240,12 +230,6 @@ section.cal { ...@@ -240,12 +230,6 @@ section.cal {
} }
} }
} }
&:hover {
div {
display: block;
}
}
} }
} }
} }
...@@ -319,12 +303,6 @@ section.cal { ...@@ -319,12 +303,6 @@ section.cal {
} }
} }
} }
&:hover {
section {
display: block;
}
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment