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")]]])]]))