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;
|
||||||
|
|
@ -638,13 +638,28 @@ FORM LABEL,
|
||||||
background-image: none;
|
background-image: none;
|
||||||
position: relative;
|
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 {
|
&:after {
|
||||||
content: "\e907";
|
content: $icon-chevron-up;
|
||||||
font-family: 'rancher-icons';
|
font-family: 'rancher-icons';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 5px;
|
right: 5px;
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LI {
|
LI {
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,8 @@ $singleCountWidth : 120px;
|
||||||
height: $stackHeight;
|
height: $stackHeight;
|
||||||
line-height: 50px;
|
line-height: 50px;
|
||||||
A {
|
A {
|
||||||
padding: 25px 10px 25px 25px;
|
padding: 22px 10px 25px 25px;
|
||||||
font-size: .5em;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue