edit 3 marks
This commit is contained in:
parent
a0ee0e909f
commit
8023a8d892
|
@ -14,8 +14,8 @@
|
|||
<div class="btn-delete img-commonctrl"></div>
|
||||
<% } %>
|
||||
<% } else if (editable) { %>
|
||||
<div class="btn-accept img-commonctrl"></div>
|
||||
<div class="btn-reject img-commonctrl"></div>
|
||||
<div class="btn-accept"></div>
|
||||
<div class="btn-reject tool "></div>
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
|
|
|
@ -273,15 +273,73 @@
|
|||
background-position: -22px -232px;
|
||||
}
|
||||
|
||||
.btn-accept {
|
||||
background-position: -2px -253px;
|
||||
|
||||
.tool {
|
||||
float: right;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
padding: 0px;
|
||||
margin-right: 2px;
|
||||
|
||||
&.btn-reject {
|
||||
position: relative;
|
||||
opacity: 0.7;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
&:before, &:after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
left: calc(7px/@pixel-ratio-factor);
|
||||
top: @scaled-one-px-value-ie;
|
||||
top: @scaled-one-px-value;
|
||||
height: 14px;
|
||||
width: @scaled-one-px-value-ie;
|
||||
width: @scaled-one-px-value;
|
||||
background-color: @icon-normal-ie;
|
||||
background-color: @icon-normal;
|
||||
}
|
||||
|
||||
&:before {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
&:after {
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
}
|
||||
|
||||
&.help {
|
||||
width: 20px;
|
||||
margin-right:0;
|
||||
line-height: 14px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: @text-normal-ie;
|
||||
color: @text-normal;
|
||||
opacity: 0.7;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.disabled {
|
||||
opacity: @component-disabled-opacity;
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-reject {
|
||||
background-position: -22px -253px;
|
||||
}
|
||||
|
||||
.btn-resolve {
|
||||
.btn-resolve,.btn-accept {
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
|
|
|
@ -64,7 +64,7 @@ define([
|
|||
'<label class="header" style="display: block;"><%= scope.txtDictionaryLanguage %></label>',
|
||||
'<div id="spellcheck-dictionary-language"></div>',
|
||||
'<div id="spellcheck-complete" class="hidden">',
|
||||
'<i class="img-commonctrl img-colored img-complete" style="display: inline-block;margin-right: 10px;"></i>',
|
||||
'<i class="btn-resolve" style="display: inline-block;margin-right: 10px;"></i>',
|
||||
'<%= scope.txtComplete %>' ,
|
||||
'</div>',
|
||||
'</div>'
|
||||
|
|
|
@ -48,4 +48,23 @@
|
|||
|
||||
#spellcheck-complete {
|
||||
display: flex;
|
||||
}
|
||||
.btn-resolve
|
||||
{
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
border: solid @text-normal-ie;
|
||||
border: solid @text-normal;
|
||||
border-color: @icon-success-ie;
|
||||
border-color: @icon-success;
|
||||
border-width: 0 3px 3px 0;
|
||||
transform: rotate(40deg);
|
||||
width: 6px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue