commit
087d04aae3
|
@ -195,7 +195,6 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 8px;
|
left: 8px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
.box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -212,7 +211,6 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
left: -8px;
|
left: -8px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
.box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -324,7 +322,6 @@
|
||||||
&:before {
|
&:before {
|
||||||
top: -8px;
|
top: -8px;
|
||||||
left: -8px;
|
left: -8px;
|
||||||
.box-shadow(2px 2px 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
top: -6px;
|
top: -6px;
|
||||||
|
@ -346,7 +343,6 @@
|
||||||
&:before {
|
&:before {
|
||||||
top: 8px;
|
top: 8px;
|
||||||
left: 8px;
|
left: 8px;
|
||||||
.box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
top: 6px;
|
top: 6px;
|
||||||
|
@ -368,7 +364,6 @@
|
||||||
&:before {
|
&:before {
|
||||||
top: 8px;
|
top: 8px;
|
||||||
left: -8px;
|
left: -8px;
|
||||||
.box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
top: 6px;
|
top: 6px;
|
||||||
|
@ -412,8 +407,6 @@
|
||||||
&:before {
|
&:before {
|
||||||
bottom: -7px;
|
bottom: -7px;
|
||||||
left: -7px;
|
left: -7px;
|
||||||
//width: 15px;
|
|
||||||
.box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
top: -2px;
|
top: -2px;
|
||||||
|
@ -475,7 +468,6 @@
|
||||||
-o-transform: rotate(45deg);
|
-o-transform: rotate(45deg);
|
||||||
transform: rotate(45deg);
|
transform: rotate(45deg);
|
||||||
|
|
||||||
.box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2));
|
|
||||||
border: @scaled-one-px-value-ie solid @background-notification-popover-ie;
|
border: @scaled-one-px-value-ie solid @background-notification-popover-ie;
|
||||||
border: @scaled-one-px-value solid @background-notification-popover;
|
border: @scaled-one-px-value solid @background-notification-popover;
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,6 +112,12 @@ define([
|
||||||
panelNavigation.viewNavigationList.on('item:add', _.bind(this.onItemAdd, this));
|
panelNavigation.viewNavigationList.on('item:add', _.bind(this.onItemAdd, this));
|
||||||
panelNavigation.navigationMenu.on('item:click', _.bind(this.onMenuItemClick, this));
|
panelNavigation.navigationMenu.on('item:click', _.bind(this.onMenuItemClick, this));
|
||||||
panelNavigation.navigationMenu.items[11].menu.on('item:click', _.bind(this.onMenuLevelsItemClick, this));
|
panelNavigation.navigationMenu.items[11].menu.on('item:click', _.bind(this.onMenuLevelsItemClick, this));
|
||||||
|
|
||||||
|
var viewport = this.getApplication().getController('Viewport').getView('Viewport');
|
||||||
|
viewport.hlayout.on('layout:resizedrag', function () {
|
||||||
|
if (panelNavigation.viewNavigationList && panelNavigation.viewNavigationList.scroller)
|
||||||
|
panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true});
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
updateNavigation: function() {
|
updateNavigation: function() {
|
||||||
|
|
Loading…
Reference in a new issue