diff options
author | Jeroen <jeroenpraat@xs4all.nl> | 2014-07-27 21:44:34 +0000 |
---|---|---|
committer | Jeroen <jeroenpraat@xs4all.nl> | 2014-07-27 21:44:34 +0000 |
commit | 075fc6727762d4e45ddcae5843eec0100ad3ab72 (patch) | |
tree | 26c5b8b5c8064b0670510009d42f7b0ffac6c63d /view/theme/redbasic/css | |
parent | 73a0d8b5a7079e960717c46014b9255e16356ad2 (diff) | |
download | volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.tar.gz volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.tar.bz2 volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.zip |
Improved photo view page. Added a delete button, stylized other button and rearangend divs a but. I even made a javascript function (copied is the right word). I changed the application (non-posts) font size (temporary) to 14px, same as button (btn) font size. I like to change all font sizes to 1.0rem (posts) and 0.8rem (application) in the near future, but I will test that first on my hub.
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 13510b55c..fb064ba88 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; } @@ -637,12 +641,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 +1240,6 @@ brain is weird like that */ padding:5px; } - /** * Plugins settings */ @@ -2347,19 +2350,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 { |