# HG changeset patch # User nowmad@nowmads-macbook-pro.local # Date 1450196427 -3600 # Node ID 30e7ac1ff04af5f41e94f41e398608d3b8612b48 # Parent 87b6a104de8e8c9d3af0611aeaf78524b484d682 improve css of result list diff -r 87b6a104de8e -r 30e7ac1ff04a cms/app-client/app/styles/app.scss --- a/cms/app-client/app/styles/app.scss Fri Dec 11 13:15:01 2015 +0100 +++ b/cms/app-client/app/styles/app.scss Tue Dec 15 17:20:27 2015 +0100 @@ -35,25 +35,15 @@ display : flex; flex-flow: column; border: none; - } - &-player, - &-results { padding: 0 10px; - margin-bottom: 10px; - background-color: #eeeeee; } &-player{ flex: 0 1 auto; float: left; border-left: none; border-top: none; - } - &-results { - flex: 1 1 auto; - float: left; - overflow: auto; - border-left: none; - border-top: none; + margin-bottom: 10px; + background-color: #eeeeee; } } } diff -r 87b6a104de8e -r 30e7ac1ff04a cms/app-client/app/styles/results.scss --- a/cms/app-client/app/styles/results.scss Fri Dec 11 13:15:01 2015 +0100 +++ b/cms/app-client/app/styles/results.scss Tue Dec 15 17:20:27 2015 +0100 @@ -1,1 +1,26 @@ +.result-header, +.result-list{ + background-color: #eeeeee; +} +.result-header{ + flex: 0 1 auto; + float: left; + border-left: none; + border-top: none; +} + +.result-list{ + flex: 1 1 auto; + float: left; + overflow: auto; + border-left: none; + border-top: none; + margin-bottom: 10px; +} + +.result-item { + border: 1px solid black; + margin-bottom: 1px; + min-height: 50px; +}