diff --git a/client/app/assets/less/inc/list-group.less b/client/app/assets/less/inc/list-group.less index 7b32d033e4..c068fb8bc0 100755 --- a/client/app/assets/less/inc/list-group.less +++ b/client/app/assets/less/inc/list-group.less @@ -17,7 +17,11 @@ } } - .list-group-item { +.max-character { + .text-overflow(); +} + +.list-group-item { &.active { button { color: white; diff --git a/client/app/assets/less/redash/redash-newstyle.less b/client/app/assets/less/redash/redash-newstyle.less index 441131ea55..02037797cb 100644 --- a/client/app/assets/less/redash/redash-newstyle.less +++ b/client/app/assets/less/redash/redash-newstyle.less @@ -449,10 +449,20 @@ page-header, .page-header--new { background: fade(@redash-gray, 85%); } +.label-default-unpublished { + background: fade(@redash-gray, 85%); + display: inline-block; + overflow: hidden; +} + .label-tag { background: fade(@redash-gray, 10%); color: fade(@redash-gray, 75%); margin-right: 3px; + display: inline-block; + margin-top: 2px; + max-width: 24ch; + .text-overflow(); } .tab-nav > li > a { diff --git a/client/app/components/tags-control/control-template.html b/client/app/components/tags-control/control-template.html index 097f931d0c..65a1a09a1e 100644 --- a/client/app/components/tags-control/control-template.html +++ b/client/app/components/tags-control/control-template.html @@ -1,4 +1,4 @@ -{{ tag }}{{ tag }} Add tag - + {{ tag.name }} {{ tag.count }} diff --git a/client/app/pages/queries-list/queries-list.html b/client/app/pages/queries-list/queries-list.html index 833d59ab14..8bf89e1195 100644 --- a/client/app/pages/queries-list/queries-list.html +++ b/client/app/pages/queries-list/queries-list.html @@ -96,16 +96,17 @@ {{query.name}}
- Unpublished - + + Unpublished + - + - {{query.created_at | dateTime}} - {{query.runtime | durationHumanize}} - {{query.retrieved_at | dateTime}} - {{query.schedule | scheduleHumanize}} + {{query.created_at | dateTime}} + {{query.runtime | durationHumanize}} + {{query.retrieved_at | dateTime}} + {{query.schedule | scheduleHumanize}}