create btn, tooltip and style it
This commit is contained in:
parent
c423544208
commit
63febf391b
|
@ -8,14 +8,14 @@ export default Ember.Component.extend({
|
||||||
classNameBindings: [':btn', 'noText'],
|
classNameBindings: [':btn', 'noText'],
|
||||||
attributeBindings: ['disabled', 'translatedTitle:title'],
|
attributeBindings: ['disabled', 'translatedTitle:title'],
|
||||||
|
|
||||||
noText: Ember.computed.empty('translatedLabel'),
|
noText: Ember.computed.empty('translatedLabel'), //if translatedLable = null/empty then noText = true
|
||||||
|
|
||||||
@computed("title")
|
@computed("title") //this.get('title')
|
||||||
translatedTitle(title) {
|
translatedTitle(title) {
|
||||||
if (title) return I18n.t(title);
|
if (title) return I18n.t(title);
|
||||||
},
|
},
|
||||||
|
|
||||||
@computed("label")
|
@computed("label")//this.get('label')
|
||||||
translatedLabel(label) {
|
translatedLabel(label) {
|
||||||
if (label) return I18n.t(label);
|
if (label) return I18n.t(label);
|
||||||
},
|
},
|
||||||
|
|
|
@ -28,8 +28,14 @@
|
||||||
icon="trash-o"
|
icon="trash-o"
|
||||||
label="category.delete"}}
|
label="category.delete"}}
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="cannot_delete_reason">
|
<div class="disable_info_wrap">
|
||||||
{{{model.cannot_delete_reason}}}
|
{{d-button disabled=deleteDisabled
|
||||||
|
icon="question-circle"
|
||||||
|
label="category.delete"}}
|
||||||
|
|
||||||
|
<div class="cannot_delete_reason">
|
||||||
|
{{{model.cannot_delete_reason}}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -116,12 +116,43 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.disable_info_wrap {
|
||||||
.cannot_delete_reason {
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
float: right;
|
float: right;
|
||||||
text-align: right;
|
margin-top: -70px;
|
||||||
max-width: 380px;
|
padding-top: 70px;
|
||||||
color: dark-light-choose(scale-color($primary, $lightness: 60%), scale-color($secondary, $lightness: 40%));
|
padding-left: 170px;
|
||||||
|
|
||||||
|
.cannot_delete_reason {
|
||||||
|
position: absolute;
|
||||||
|
top: 4px;
|
||||||
|
right: 4px;
|
||||||
|
max-width: 380px;
|
||||||
|
min-width: 300px;
|
||||||
|
background: dark-light-choose(scale-color($primary, $lightness: 10%), scale-color($secondary, $lightness: 10%));
|
||||||
|
color: dark-light-choose(scale-color($primary, $lightness: 100%), scale-color($secondary, $lightness: 0%));
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 12px 8px;
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
top: 100%;
|
||||||
|
left: 57%;
|
||||||
|
border: solid transparent;
|
||||||
|
content: " ";
|
||||||
|
position: absolute;
|
||||||
|
border-top-color: dark-light-choose(scale-color($primary, $lightness: 10%), scale-color($secondary, $lightness: 10%));
|
||||||
|
border-width: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include hover {
|
||||||
|
.cannot_delete_reason {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue