diff --git a/app/models/launchconfig.js b/app/models/launchconfig.js new file mode 100644 index 000000000..0801e7941 --- /dev/null +++ b/app/models/launchconfig.js @@ -0,0 +1,9 @@ +import Resource from 'ember-api-store/models/resource'; + +var LaunchConfig = Resource.extend({ + displayImage: function() { + return (this.get('imageUuid')||'').replace(/^docker:/,''); + }.property('imageUuid'), +}); + +export default LaunchConfig; diff --git a/app/styles/bootstrap-tweak.scss b/app/styles/bootstrap-tweak.scss index 86810f915..6c94a4ac0 100644 --- a/app/styles/bootstrap-tweak.scss +++ b/app/styles/bootstrap-tweak.scss @@ -638,13 +638,28 @@ FORM LABEL, background-image: none; position: relative; + &:after { + content: $icon-chevron-down; + font-family: 'rancher-icons'; + position: absolute; + right: 5px; + top: 0; + } + + } + + .ember-power-select.opened { + .ember-power-select-trigger { + background-image: none; + &:after { - content: "\e907"; + content: $icon-chevron-up; font-family: 'rancher-icons'; position: absolute; right: 5px; top: 0; } + } } LI { diff --git a/app/styles/environment.scss b/app/styles/environment.scss index 0ab8915e7..ff8777a1a 100644 --- a/app/styles/environment.scss +++ b/app/styles/environment.scss @@ -73,8 +73,8 @@ $singleCountWidth : 120px; height: $stackHeight; line-height: 50px; A { - padding: 25px 10px 25px 25px; - font-size: .5em; + padding: 22px 10px 25px 25px; + font-size: 12px; } }