create btn, tooltip and style it

This commit is contained in:
Anaketa 2017-03-08 18:59:19 +01:00 committed by giorgia
parent c423544208
commit 63febf391b
3 changed files with 47 additions and 10 deletions

View File

@ -8,14 +8,14 @@ export default Ember.Component.extend({
classNameBindings: [':btn', 'noText'],
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) {
if (title) return I18n.t(title);
},
@computed("label")
@computed("label")//this.get('label')
translatedLabel(label) {
if (label) return I18n.t(label);
},

View File

@ -28,8 +28,14 @@
icon="trash-o"
label="category.delete"}}
{{else}}
<div class="cannot_delete_reason">
{{{model.cannot_delete_reason}}}
<div class="disable_info_wrap">
{{d-button disabled=deleteDisabled
icon="question-circle"
label="category.delete"}}
<div class="cannot_delete_reason">
{{{model.cannot_delete_reason}}}
</div>
</div>
{{/if}}
</div>

View File

@ -116,12 +116,43 @@
}
}
}
.cannot_delete_reason {
.disable_info_wrap {
position: relative;
display: inline-block;
float: right;
text-align: right;
max-width: 380px;
color: dark-light-choose(scale-color($primary, $lightness: 60%), scale-color($secondary, $lightness: 40%));
margin-top: -70px;
padding-top: 70px;
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;
}
}
}
}