mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-23 22:53:42 +08:00
[Bug 49591] fix for IE
This commit is contained in:
@ -79,8 +79,8 @@ define([
|
||||
height: 16,
|
||||
border:0.5,
|
||||
activeThumbIndex: 0,
|
||||
borderColor: Common.UI.Themes.currentThemeColor('--border-regular-control'),
|
||||
borderColorActive: Common.UI.Themes.currentThemeColor('--border-control-focus')
|
||||
borderColor: Common.Utils.isIE ?'#cfcfcf' :Common.UI.Themes.currentThemeColor('--border-regular-control'),
|
||||
borderColorActive: Common.Utils.isIE? '#848484' :Common.UI.Themes.currentThemeColor('--border-control-focus')
|
||||
};
|
||||
this.scale = Common.Utils.applicationPixelRatio() >= 1 ? Common.Utils.applicationPixelRatio() : 1,
|
||||
Common.UI.MultiSlider.prototype.initialize.call(this, options);
|
||||
@ -298,6 +298,7 @@ define([
|
||||
},
|
||||
|
||||
changeColors: function () {
|
||||
if(Common.Utils.isIE) return;
|
||||
this.tmbOptions.borderColor = Common.UI.Themes.currentThemeColor('--border-regular-control');
|
||||
this.tmbOptions.borderColorActive = Common.UI.Themes.currentThemeColor('--border-control-focus');
|
||||
for(var i=0; i< this.thumbs.length; i++){
|
||||
|
||||
@ -26,6 +26,7 @@
|
||||
height: 10px;
|
||||
bottom: @scaled-one-px-value;
|
||||
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.32);
|
||||
top: 5px;
|
||||
.margin-left(1px);
|
||||
.margin-left(@scaled-one-px-value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user