View | Details | Raw Unified | Return to bug 43105
Collapse All | Expand All

(-)univention-management-console-frontend/umc/dialog/LoginDialog.js (-5 lines)
 Lines 71-78    Link Here 
71
71
72
		_currentResult: null,
72
		_currentResult: null,
73
73
74
		_scrollPosY: 0,
75
76
		id: 'umcLoginWrapper',
74
		id: 'umcLoginWrapper',
77
75
78
		open: false,
76
		open: false,
 Lines 468-475    Link Here 
468
		_show: function() {
466
		_show: function() {
469
			var deferred;
467
			var deferred;
470
			query('#umcLoginWrapper').style('display', 'block');
468
			query('#umcLoginWrapper').style('display', 'block');
471
			this._scrollPosY = window.scrollY;
472
			window.scrollTo(0, 0);
473
			query('#umcLoginDialog').style('opacity', '1');  // baseFx.fadeOut sets opacity to 0
469
			query('#umcLoginDialog').style('opacity', '1');  // baseFx.fadeOut sets opacity to 0
474
			this._setFocus();
470
			this._setFocus();
475
			if (has('ie') < 10) {
471
			if (has('ie') < 10) {
 Lines 522-528    Link Here 
522
			// hide the dialog
518
			// hide the dialog
523
			var hide = lang.hitch(this, function() {
519
			var hide = lang.hitch(this, function() {
524
				query('#umcLoginWrapper').style('display', 'none');
520
				query('#umcLoginWrapper').style('display', 'none');
525
				window.scrollTo(0, this._scrollPosY);
526
				Dialog._DialogLevelManager.hide(this);
521
				Dialog._DialogLevelManager.hide(this);
527
				this.standby(false);
522
				this.standby(false);
528
				try {
523
				try {
(-)univention-management-console-frontend-theme/dijit-claro-stylus/document.styl (+4 lines)
 Lines 20-25    Link Here 
20
	background: white;
20
	background: white;
21
}
21
}
22
22
23
body {
24
	height: 100%;
25
}
26
23
.umc td,
27
.umc td,
24
.umc th {
28
.umc th {
25
	padding: 0em 1em 0.3em 0em;
29
	padding: 0em 1em 0.3em 0em;
(-)univention-management-console-frontend-theme/dijit-claro-stylus/site/login.styl (-1 / +12 lines)
 Lines 1-12    Link Here 
1
@import "../variables";
1
@import "../variables";
2
2
3
#umcLoginWrapper {
3
#umcLoginWrapper {
4
	position: absolute;
4
	position: fixed;
5
	height: 100%;
5
	height: 100%;
6
	width: 100%;
6
	width: 100%;
7
	display: none;
7
	display: none;
8
	overflow: auto;
8
}
9
}
9
10
11
.dijitDialogUnderlayWrapper {
12
	position: fixed;
13
	top: 0px !important;
14
}
15
16
.umcTopContainer {
17
	height: 100%;
18
	overflow: auto;
19
}
20
10
#umcLoginDialog, .umcLoginDialog {
21
#umcLoginDialog, .umcLoginDialog {
11
	background-image: url('../images/login_bg.png');
22
	background-image: url('../images/login_bg.png');
12
	background-color: #eeeeef;
23
	background-color: #eeeeef;

Return to bug 43105