diff --git a/public/app/plugins/panel/dashlist/module.html b/public/app/plugins/panel/dashlist/module.html index e382c283b71..7a28e65b7b4 100644 --- a/public/app/plugins/panel/dashlist/module.html +++ b/public/app/plugins/panel/dashlist/module.html @@ -6,13 +6,10 @@
- - {{dash.title}} - - - - {{dash.folderTitle}} - + diff --git a/public/sass/components/_panel_dashlist.scss b/public/sass/components/_panel_dashlist.scss index 06006e2ead9..a89a3f6b34f 100644 --- a/public/sass/components/_panel_dashlist.scss +++ b/public/sass/components/_panel_dashlist.scss @@ -8,26 +8,30 @@ padding-top: 3px; } -.dashlist { - &-link { - @include list-item(); +.dashlist-link { + @include list-item(); + display: flex; - .fa { - padding-top: 3px; - } - - .fa-star { - color: $orange; - } + .fa { + padding-top: 3px; } - &-star { - float: right; - } - - &-folder { - color: $text-color-weak; - margin-left: $space-sm; - font-size: $font-size-xs; + .fa-star { + color: $orange; } } + +.dashlist-star { + display: flex; + align-items: center; + color: $text-color-weak; +} + +.dashlist-folder { + color: $text-color-weak; + font-size: $font-size-xs; +} + +.dashlist-link-body { + flex-grow: 1; +}