diff options
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 37 | ||||
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
2 files changed, 26 insertions, 13 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 26bb4ef92..92ec48b77 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -81,13 +81,17 @@ input[type="submit"] { font-weight: bold; color: $input_linksubmit; text-decoration: none; + padding: 6px 12px; +} + +input[type="submit"]:hover { + text-decoration: underline; } button, input, optgroup, select, textarea { color: #000; } - pre code { border: none; } @@ -101,7 +105,6 @@ code { color: $code_txtcolour; padding: 10px; margin-top: 20px; - max-width: 80%; } pre { @@ -286,6 +289,7 @@ aside li { padding: 0; margin-top: 15px; margin-bottom: 0; + margin-left: 0; width: 20px; } @@ -294,6 +298,7 @@ aside li { margin-bottom: 0; float: left; width: 100px; + padding-left: 0; } #main-login .field_end { @@ -434,6 +439,7 @@ aside li { opacity: 0.3; filter:alpha(opacity=30); float: right; + margin-top: -3px; } .profile-edit-side-link:hover { opacity: 1.0; @@ -637,12 +643,12 @@ aside li { .photo-album-image-wrapper .caption { - background-color: rgba(245, 245, 255, 0.8); - border-bottom: 2px solid #CCC; + background-color: $acpopup_bgcolour; + border-bottom: 2px solid $acpopup_bordercolour; } .photo-top-album-name { - background-color: rgb(255, 255, 255); + background-color: $acpopup_bgcolour; } #photos-upload-perms-menu, #photos-upload-perms-menu:visited, #photos-upload-perms-menu:link { @@ -1236,7 +1242,6 @@ brain is weird like that */ padding:5px; } - /** * Plugins settings */ @@ -1908,11 +1913,11 @@ img.mail-list-sender-photo { } #profile-jot-text::-webkit-input-placeholder { - font-size:18px; + font-size:16px; } #profile-jot-text::-moz-placeholder { - font-size:18px; + font-size:16px; } #profile-jot-text:focus::-webkit-input-placeholder { @@ -2347,19 +2352,27 @@ blockquote { } } +.btn { + font-size: $body_font_size; +} + +.btn-xs { + font-size: 12px; +} + .btn-default { background-color: $editbuttons_bgcolour; border-color: $editbuttons_bordercolour; - color: $editbuttons_colour; + color: $editbuttons_colour; text-shadow: none; box-shadow: none; } .btn-default:hover, .btn-default:focus, .btn-default:active .btn-default.active { background-color: $editbuttons_bghover; - border-color: $editbuttons_bordercolourhover; - color: $input_colourhover; - text-decoration: $input_decohover; + border-color: $editbuttons_bordercolourhover; + color: $input_colourhover; + text-decoration: $input_decohover; } .btn-default.btn-sm:hover, .btn-default.btn-sm:focus, .btn-default.btn-sm:active .btn-default.btn-sm.active { diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 23d9c695f..f55b29d5e 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -132,7 +132,7 @@ if(! $a->install) { if (! $font_size) $font_size = "1.0em"; if (! $body_font_size) - $body_font_size = "11px"; + $body_font_size = "12pt"; if (! $font_colour) $font_colour = "#4d4d4d"; if (! $selected_active_colour) |