diff --git a/frontend/resources/public/images/login-bg-2018.jpg b/frontend/resources/public/images/login-bg-2018.jpg new file mode 100644 index 0000000000..ba6e9a0c03 Binary files /dev/null and b/frontend/resources/public/images/login-bg-2018.jpg differ diff --git a/frontend/resources/public/images/login-bg.jpg b/frontend/resources/public/images/login-bg.jpg index ba6e9a0c03..8563258c52 100644 Binary files a/frontend/resources/public/images/login-bg.jpg and b/frontend/resources/public/images/login-bg.jpg differ diff --git a/frontend/resources/styles/common/framework.scss b/frontend/resources/styles/common/framework.scss index 527e5ba66b..325e162e13 100644 --- a/frontend/resources/styles/common/framework.scss +++ b/frontend/resources/styles/common/framework.scss @@ -645,7 +645,7 @@ input[type=radio]:checked + label:before{ &::after { content:"✓"; - color: #fff; + color: #000000; font-size: 16px; } diff --git a/frontend/resources/styles/main/partials/library-bar.scss b/frontend/resources/styles/main/partials/library-bar.scss index 6d8079ee37..51f96ff444 100644 --- a/frontend/resources/styles/main/partials/library-bar.scss +++ b/frontend/resources/styles/main/partials/library-bar.scss @@ -21,31 +21,30 @@ .library-tabs { align-items: center; - background-color: $secondary-ui-bg; + background-color: $color-white; + border-bottom: 1px solid $medium-ui-border; display: flex; justify-content: space-around; margin: 0; padding-top: 12px; li { - background-color: darken($secondary-ui-bg, 10%); - border-top-left-radius: 3px; - border-top-right-radius: 3px; + background-color: $color-white; + border-bottom: 2px solid transparent; color: $color-gray; cursor: pointer; - font-weight: bold; font-size: $fs14; padding: .6rem; text-align: center; width: 118px; &:hover { - color: $color-white; + color: $intense-ui-text; } &.current { - background-color: $primary-ui-bg; - color: $main-ui-color; + border-color: $main-ui-color; + color: $intense-ui-text; } }