From 4a5b018eb475f2573e7806e00cd0a08cc62a7795 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 10 Dec 2020 21:24:34 +0300 Subject: Style cleanup --- src/main/assets/style.css | 13 ++++--------- src/main/resources/templates/views/partial/footer.html | 2 +- src/main/resources/templates/views/partial/homecolumn.html | 4 +--- src/main/resources/templates/views/partial/tagcolumn.html | 4 +--- src/main/resources/templates/views/partial/usercolumn.html | 4 +--- webpack.config.js | 4 ++-- 6 files changed, 10 insertions(+), 21 deletions(-) diff --git a/src/main/assets/style.css b/src/main/assets/style.css index 7e95eae1..a409ea36 100644 --- a/src/main/assets/style.css +++ b/src/main/assets/style.css @@ -141,9 +141,8 @@ pre::-moz-selection { background: var(--main-background-color); } -#content { +#content_wrapper { margin-top: 66px; - padding-bottom: 66px; } #minimal_content { @@ -178,16 +177,10 @@ pre::-moz-selection { flex-wrap: wrap; } -.header--hidden { - transform: translateY(-100%); -} - #footer { color: #999; font-size: 10pt; padding: 10px 0; - display: flex; - flex-direction: column; } /* #endregion */ @@ -1004,7 +997,6 @@ article p { #column { position: sticky; padding: 12px; - margin-top: 66px; height: 100%; z-index: auto; overflow-y: auto; @@ -1019,6 +1011,8 @@ article p { width: 300px; overflow-y: auto; height: 100%; + display: flex; + flex-direction: column; } #header_wrapper, #content_wrapper { @@ -1027,6 +1021,7 @@ article p { } #content_wrapper { display: flex; + margin: 66px auto 0; } #footer { padding: 10px; diff --git a/src/main/resources/templates/views/partial/footer.html b/src/main/resources/templates/views/partial/footer.html index 671b9b6a..e69000f7 100644 --- a/src/main/resources/templates/views/partial/footer.html +++ b/src/main/resources/templates/views/partial/footer.html @@ -1,4 +1,4 @@ - - - {% include "views/partial/footer" %} - \ No newline at end of file +{% include "views/partial/footer" %} \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 1d5f722b..8ec5a68b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -23,8 +23,8 @@ module.exports = (env, argv) => { 'core-js/modules/web.dom-collections.iterator', __dirname + '/src/main/assets/scripts.js', __dirname + '/src/main/assets/style.css', - require.resolve('evil-icons/assets/sprite.svg'), - require.resolve('evil-icons/assets/evil-icons.css') + 'evil-icons/assets/sprite.svg', + 'evil-icons/assets/evil-icons.css' ] }, output: { -- cgit v1.2.3