diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-09-15 14:04:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 14:04:34 +0200 |
commit | 4f244e95aa8aaf7b12111372efced043f6bc1b5f (patch) | |
tree | f4a3c8adca2a890e369a713d3c0755f127785014 /core | |
parent | cd21caf84688b06caf493a709bfa17535da87843 (diff) | |
parent | 63d51569fe67dedd781a96b3f2511f8049e08f3d (diff) | |
download | nextcloud-server-4f244e95aa8aaf7b12111372efced043f6bc1b5f.tar.gz nextcloud-server-4f244e95aa8aaf7b12111372efced043f6bc1b5f.zip |
Merge pull request #34065 from nextcloud/bug/noid/main-scrollbar
Fix scrollbar apperance
Diffstat (limited to 'core')
-rw-r--r-- | core/css/server.css | 2 | ||||
-rw-r--r-- | core/css/styles.css | 2 | ||||
-rw-r--r-- | core/css/styles.scss | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/server.css b/core/css/server.css index eb21bb0a031..5a9fc857ced 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -36,7 +36,7 @@ * @license GNU AGPL version 3 or any later version * */ -html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { +html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section, main { margin: 0; padding: 0; border: 0; diff --git a/core/css/styles.css b/core/css/styles.css index d1c13e16639..121d0a7eab4 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -35,7 +35,7 @@ * @license GNU AGPL version 3 or any later version * */ -html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { +html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section, main { margin: 0; padding: 0; border: 0; diff --git a/core/css/styles.scss b/core/css/styles.scss index ca4079881ee..ad642dbc728 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -16,7 +16,7 @@ @use 'sass:math'; @use 'variables'; -html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { +html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section, main { margin: 0; padding: 0; border: 0; |