diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-25 14:11:41 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-25 14:17:53 +0200 |
commit | 352dd364d2359f59d69db3e9296b85753ecefbdd (patch) | |
tree | bdd7b81977e470cf557e0292162e0b079d425ac6 /view/css | |
parent | fe318d4eb89484c0eeb829f15dcbee94081fc080 (diff) | |
download | volse-hubzilla-352dd364d2359f59d69db3e9296b85753ecefbdd.tar.gz volse-hubzilla-352dd364d2359f59d69db3e9296b85753ecefbdd.tar.bz2 volse-hubzilla-352dd364d2359f59d69db3e9296b85753ecefbdd.zip |
drop box-shadow from generic-content-wrapper (it's probably too 90') and use transparent colors for borders to work better with alternate background colors
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/conversation.css | 8 | ||||
-rw-r--r-- | view/css/widgets.css | 1 |
2 files changed, 5 insertions, 4 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index c0d6712a9..cff59aecb 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -15,11 +15,11 @@ #jot-title-wrap, #jot-pagetitle-wrap, #jot-category-wrap { - border-bottom: 1px solid #ccc; + border-bottom: 1px solid rgba(0, 0, 0, .2); } #jot-attachment-wrap { - border-top: 1px solid #ccc; + border-top: 1px solid rgba(0, 0, 0, .2); } #jot-title-wrap input, @@ -65,7 +65,7 @@ } #profile-jot-submit-wrapper { - border-top: 1px solid #ccc; + border-top: 1px solid rgba(0, 0, 0, .2); } /* conversation */ @@ -96,7 +96,7 @@ left: 3px; bottom: 0px; color: #fff; - text-shadow: 1px 1px 3px rgba(0,0,0,0.5);; + text-shadow: 1px 1px 3px rgba(0, 0, 0, .5); display: none; } diff --git a/view/css/widgets.css b/view/css/widgets.css index 48df1811f..9730d6915 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -41,6 +41,7 @@ li:hover .widget-nav-pills-icons { /* notes */ #note-text { + border: 1px solid rgba(0,0,0,.125); padding: 5px; width: 100%; resize: none; |