Bug 53640

This commit is contained in:
OVSharova 2021-11-12 05:29:21 +03:00
parent 2d9a56643e
commit ea31f44d69
2 changed files with 15 additions and 8 deletions

View file

@ -86,7 +86,7 @@ define([
'<div class="user-version">' + this.textVer + '<%=version%></div>',
'<% } %>',
'<% if (isRevision && hasChanges) { %>',
'<div class="revision-expand img-commonctrl ' + '<% if (isExpanded) { %>' + 'up' + '<% } %>' + '"></div>',
'<div class="revision-expand ' + '<% if (isExpanded) { %>' + 'up' + '<% } %>' + '"></div>',
'<% } %>',
'<div class="user-name">',
'<div class="color" style="display: inline-block; background-color:' + '<%=usercolor%>;' + '" >',

View file

@ -84,7 +84,8 @@
}
.revision-expand {
background-position: -70px -145px;
border-color: @highlight-button-hover-ie;
border-color: @highlight-button-hover;
}
}
}
@ -143,16 +144,22 @@
}
.revision-expand {
width: 23px;
height: 23px;
background-position: -43px -145px;
margin: 10px 10px;
width: 8px;
height: 8px;
border: solid 2px @highlight-button-pressed-ie;
border: solid 2px @highlight-button-pressed;
border-bottom: none;
border-right: none;
background-image: none;
display: inline-block;
position: absolute;
right: 0;
right: 18px;
top: 28px;
//transition: transform 0.2s ease;
transform: rotate(-135deg) translate(2px,2px);
&.up {
transform: rotate(180deg);
transform: rotate(45deg);
}
}