Commit e641d2c6 by Brian Talbot

Merge pull request #136 from edx/fix/btalbot/xmodule-showanswer

Problem Show Answer/Check Button Line Height Syncing
parents b11e7483 14100ba1
...@@ -14,7 +14,7 @@ body { ...@@ -14,7 +14,7 @@ body {
color: $gray-d2; color: $gray-d2;
} }
body, input { body, input, button {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
} }
......
...@@ -551,14 +551,19 @@ section.problem { ...@@ -551,14 +551,19 @@ section.problem {
section.action { section.action {
margin-top: 20px; margin-top: 20px;
input.save { .save, .check, .show {
height: ($baseline*2);
font-weight: 600;
vertical-align: middle;
}
.save {
@extend .blue-button; @extend .blue-button;
} }
button.show { .show {
height: ($baseline*2);
span { .show-label {
font-size: 1.0em; font-size: 1.0em;
font-weight: 600; font-weight: 600;
} }
......
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