From 63874c8b4ec2cd5b17a7c03845fd235f90d36f79 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Tue, 4 Dec 2018 23:02:36 +0200 Subject: [PATCH] Sort styling --- .../partials/bdsettings/contentview.scss | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/client/src/styles/partials/bdsettings/contentview.scss b/client/src/styles/partials/bdsettings/contentview.scss index c0272110..9aaf6cc1 100644 --- a/client/src/styles/partials/bdsettings/contentview.scss +++ b/client/src/styles/partials/bdsettings/contentview.scss @@ -35,7 +35,28 @@ .bd-searchSort { span { color: #fff; - line-height: 40px; + display: flex; + justify-content: flex-end; + font-size: 12px; + height: 14px; + padding: 3px; + } + + .bd-sort { + color: $coldimwhite; + font-size: 12px; + padding: 3px; + height: 14px; + cursor: pointer; + transition: color .2s ease-in-out; + + &:hover { + color: #fff; + } + + &.bd-active { + color: $colbdgreen; + } } } }