From b085daee4cf844da50e46d84c7d32d364c144a8c Mon Sep 17 00:00:00 2001 From: Miao Wang Date: Tue, 31 Mar 2020 21:59:41 +0800 Subject: [PATCH 1/2] fix broken title bar in status page --- static/css/style.scss | 2 ++ static/css/win95.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/static/css/style.scss b/static/css/style.scss index f999927..94b09d9 100644 --- a/static/css/style.scss +++ b/static/css/style.scss @@ -310,6 +310,8 @@ body { &:before, &:after{ content: " "; } + margin-right: 0px; + margin-left: 0px; } } } diff --git a/static/css/win95.css b/static/css/win95.css index 838f8a9..ca03f2e 100644 --- a/static/css/win95.css +++ b/static/css/win95.css @@ -674,3 +674,8 @@ TODO: make it draggable; margin-right: 10px; margin-left: -5px; } + +.container.card .card-header { + margin-right: -15px; + margin-left: -15px; +} From 14bbd7fa5e1815664dc8f5bd0ffc230eaf39aecd Mon Sep 17 00:00:00 2001 From: Miao Wang Date: Tue, 31 Mar 2020 22:13:28 +0800 Subject: [PATCH 2/2] change progress bar color --- static/css/win95.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/static/css/win95.css b/static/css/win95.css index ca03f2e..93dd72e 100644 --- a/static/css/win95.css +++ b/static/css/win95.css @@ -554,19 +554,19 @@ TODO: make it draggable; color: black; } -#mirror-list thead { +#mirror-list thead, #status-page thead{ background: silver; border-bottom: 0; box-shadow: rgba(0,0,0,.1) 0 2px 3px; } -#mirror-list th { +#mirror-list th, #status-page th { padding: 0 8px; border: black 2px solid; position: relative; } -#mirror-list th:before { +#mirror-list th:before, #status-page th:before { content: " "; position: absolute; bottom: 0; @@ -679,3 +679,6 @@ TODO: make it draggable; margin-right: -15px; margin-left: -15px; } +.progress-bar { + background-color: #000080; +}