diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-04-18 01:57:54 +0200 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-04-18 01:57:54 +0200 |
commit | 7229cd56ede29fd1ac923f9faf097a17fbb06aa3 (patch) | |
tree | 12c6070a23b8fb4cdb9824d40608225372eb9fe6 /view/theme/redbasic/css | |
parent | 5591eac973c934a8e0cd7602e61e1f6aabe08c66 (diff) | |
download | volse-hubzilla-7229cd56ede29fd1ac923f9faf097a17fbb06aa3.tar.gz volse-hubzilla-7229cd56ede29fd1ac923f9faf097a17fbb06aa3.tar.bz2 volse-hubzilla-7229cd56ede29fd1ac923f9faf097a17fbb06aa3.zip |
Making sure the great new context help works with all thmes and schema's (3rd party themes: maybe abit of tweaking is still needed). Also fixing some minor cosmetic things.
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5f38f60f1..038bffb2f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1898,8 +1898,8 @@ nav .badge.mail-update:hover { /* contextual help */ .help-content { - background: rgba(255, 255, 255, 0.9); - color: #333333; + background: $bgcolour; + color: $font_colour; position: fixed; top: -1000px; left: 0%; @@ -1909,15 +1909,15 @@ nav .badge.mail-update:hover { padding: 20px; transition: top 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94); box-sizing: border-box; - border: #CCC thin solid; + border-bottom: #CCC thin solid; overflow: auto; } .help-content-open { top: 50px; - -moz-box-shadow: 3px 3px 3px #ccc; - -webkit-box-shadow: 3px 3px 3px #ccc; - box-shadow: 3px 3px 3px #ccc; + -moz-box-shadow: 0px 3px 3px #ccc; + -webkit-box-shadow: 0px 3px 3px #ccc; + box-shadow: 0px 3px 3px #ccc; } main { top: auto; |