From 8c77ea463df12e3d5eb4d83883f4a1f190c6c401 Mon Sep 17 00:00:00 2001 From: Juan de la Cruz Date: Tue, 19 May 2020 14:37:53 +0200 Subject: [PATCH] Quick visual fixes --- frontend/resources/styles/main/partials/color-palette.scss | 2 +- frontend/resources/styles/main/partials/dashboard-grid.scss | 3 ++- frontend/resources/styles/main/partials/sidebar.scss | 3 +++ frontend/src/uxbox/main/ui/dashboard/grid.cljs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/resources/styles/main/partials/color-palette.scss b/frontend/resources/styles/main/partials/color-palette.scss index 449944109..4758fe60d 100644 --- a/frontend/resources/styles/main/partials/color-palette.scss +++ b/frontend/resources/styles/main/partials/color-palette.scss @@ -179,7 +179,7 @@ border-color: $color-gray-50; } .color-text { - color: $color-gray-50; + color: $color-primary; } } &.add-color { diff --git a/frontend/resources/styles/main/partials/dashboard-grid.scss b/frontend/resources/styles/main/partials/dashboard-grid.scss index d3fef6d85..959cd82a7 100644 --- a/frontend/resources/styles/main/partials/dashboard-grid.scss +++ b/frontend/resources/styles/main/partials/dashboard-grid.scss @@ -450,6 +450,7 @@ .grid-files-empty { align-items: center; border: 1px dashed $color-gray-20; + border-radius: $br-small; display: flex; flex-direction: column; height: fit-content; @@ -458,7 +459,7 @@ width: 100%; .grid-files-desc { - color: $color-gray-40; + color: $color-gray-60; margin-bottom: $medium; } } diff --git a/frontend/resources/styles/main/partials/sidebar.scss b/frontend/resources/styles/main/partials/sidebar.scss index 36fe63835..b2eaf073d 100644 --- a/frontend/resources/styles/main/partials/sidebar.scss +++ b/frontend/resources/styles/main/partials/sidebar.scss @@ -7,6 +7,7 @@ .settings-bar { background-color: $color-gray-50; + border-left: 1px solid $color-gray-60; bottom: 0; height: 100%; position: fixed; @@ -15,6 +16,8 @@ z-index: 10; &.settings-bar-left { + border-left: none; + border-right: 1px solid $color-gray-60; left: 40px; } diff --git a/frontend/src/uxbox/main/ui/dashboard/grid.cljs b/frontend/src/uxbox/main/ui/dashboard/grid.cljs index 60c043007..78e01a962 100644 --- a/frontend/src/uxbox/main/ui/dashboard/grid.cljs +++ b/frontend/src/uxbox/main/ui/dashboard/grid.cljs @@ -123,4 +123,4 @@ [:div.grid-files-empty [:div.grid-files-desc (t locale "dashboard.grid.empty-files")] [:div.grid-files-link - [:a.btn-text-basic.btn-small {:on-click on-click} (t locale "ds.new-file")]]])]])) + [:a.btn-secondary.btn-small {:on-click on-click} (t locale "ds.new-file")]]])]]))