diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index bc9d05e48..4f6d1f7a4 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -168,7 +168,7 @@ body.admin { clear: both; .checkbox { - font-size: rem-calc(12); + font-size: $small-font-size; } } diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index 26931ef86..98cb62258 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -641,6 +641,10 @@ form { line-height: $line-height; } + fieldset legend { + font-weight: bold; + } + input, textarea { height: 48px\9; line-height: 48px\9; @@ -648,13 +652,28 @@ form { width: 100%\9; } - input[type="checkbox"] { + input[type="checkbox"], + input[type="radio"] { height: auto\9; line-height: inherit\9; width: auto\9; } - input[type]:not([type=submit]):not([type=file]):not([type=checkbox]) { + input[type="radio"] { + height: $line-height !important; + vertical-align: top; + width: 18px\9; + + + label { + font-weight: normal; + } + + &:checked + label { + font-weight: bold; + } + } + + input[type]:not([type=submit]):not([type=file]):not([type=checkbox]):not([type=radio]) { background: $input-bg; height: $line-height*2; margin-bottom: rem-calc(16);