mirror of https://github.com/rancher/ui.git
Bug fixes
This commit is contained in:
parent
0adffb8f10
commit
73d22abffd
|
|
@ -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;
|
||||
|
|
@ -639,12 +639,27 @@ FORM LABEL,
|
|||
position: relative;
|
||||
|
||||
&:after {
|
||||
content: "\e907";
|
||||
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: $icon-chevron-up;
|
||||
font-family: 'rancher-icons';
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
LI {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue