Commit 24b6636a by Kyle Fiedler

Fix issue with calculator zindex

parent 4cc3e30d
...@@ -738,6 +738,8 @@ li.calc-main { ...@@ -738,6 +738,8 @@ li.calc-main {
-webkit-appearance: none; } -webkit-appearance: none; }
li.calc-main.open { li.calc-main.open {
bottom: -36px; } bottom: -36px; }
li.calc-main.open div#calculator_wrapper form div.input-wrapper div.help-wrapper dl {
display: block; }
li.calc-main a.calc { li.calc-main a.calc {
text-indent: -9999px; text-indent: -9999px;
overflow: hidden; overflow: hidden;
...@@ -869,6 +871,7 @@ li.calc-main div#calculator_wrapper form div.input-wrapper div.help-wrapper dl { ...@@ -869,6 +871,7 @@ li.calc-main div#calculator_wrapper form div.input-wrapper div.help-wrapper dl {
right: -40px; right: -40px;
top: -110px; top: -110px;
width: 500px; width: 500px;
display: none;
-webkit-transition-property: all; -webkit-transition-property: all;
-moz-transition-property: all; -moz-transition-property: all;
-ms-transition-property: all; -ms-transition-property: all;
......
...@@ -9,6 +9,10 @@ li.calc-main { ...@@ -9,6 +9,10 @@ li.calc-main {
&.open { &.open {
bottom: -36px; bottom: -36px;
div#calculator_wrapper form div.input-wrapper div.help-wrapper dl {
display: block;
}
} }
a.calc { a.calc {
...@@ -128,6 +132,7 @@ li.calc-main { ...@@ -128,6 +132,7 @@ li.calc-main {
right: -40px; right: -40px;
top: -110px; top: -110px;
width: 500px; width: 500px;
display: none;
@include transition(); @include transition();
&.shown { &.shown {
......
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