diff options
author | Mario <mario@mariovavti.com> | 2021-10-12 11:25:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-12 11:25:24 +0000 |
commit | e455fae334c4b5f8d5a563e099add1482749c92f (patch) | |
tree | 87a3e2224a4d03b30c97f716a2627f28547c5149 /view/css | |
parent | 29f3dc2fa351746f50b87cf7b147ab5055b79fa2 (diff) | |
download | volse-hubzilla-e455fae334c4b5f8d5a563e099add1482749c92f.tar.gz volse-hubzilla-e455fae334c4b5f8d5a563e099add1482749c92f.tar.bz2 volse-hubzilla-e455fae334c4b5f8d5a563e099add1482749c92f.zip |
httpsig: add parentheses
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/conversation.css | 2 | ||||
-rw-r--r-- | view/css/widgets.css | 18 |
2 files changed, 15 insertions, 5 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index dbb930fc7..88081c2c6 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -313,7 +313,7 @@ code { } code.inline-code { - padding: 0px 4px; + padding: 0.2em; display: inline; } diff --git a/view/css/widgets.css b/view/css/widgets.css index a67c10ed2..b78725919 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -41,13 +41,23 @@ li:hover .widget-nav-pills-icons { /* notes */ #note-text { - border: 1px solid rgba(0,0,0,.125); - padding: 5px; + padding: 7px 10px; width: 100%; resize: vertical; min-height: 250px; - overflow: auto; - outline: none; + overflow-y: auto; + overflow-x: hidden; +} + +#note-text-html { + padding: 7px 10px; + height: 250px; + width: 100%; + resize: vertical; + min-height: 250px; + overflow-y: auto; + overflow-x: hidden; + } /* saved searches */ |