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

(-)a/branches/ucs-4.2/ucs-4.2-1/management/univention-web/css/site/widgets.styl (+11 lines)
 Lines 106-111    Link Here 
106
	> *
106
	> *
107
		width: 100%
107
		width: 100%
108
108
109
.umc .umcProgressBar
110
	.umcProgressBarComponent
111
		height: 40px
112
		overflow: visible
113
		display: flex
114
		align-items: flex-end
115
116
	.umcProgressBarMessage
117
		height: 40px
118
		overflow: visible
119
109
.umc .umcSearchBox
120
.umc .umcSearchBox
110
	.umcSearchIcon
121
	.umcSearchIcon
111
		float: right
122
		float: right
(-)a/branches/ucs-4.2/ucs-4.2-1/management/univention-web/js/widgets/ProgressBar.js (-2 / +8 lines)
 Lines 60-70    Link Here 
60
		buildRendering: function() {
60
		buildRendering: function() {
61
			this.inherited(arguments);
61
			this.inherited(arguments);
62
62
63
			this._component = new Text({content : ''});
63
			this._component = new Text({
64
				content : '',
65
				'class': 'umcProgressBarComponent'
66
			});
64
			this.addChild(this._component);
67
			this.addChild(this._component);
65
			this._progressBar = new ProgressBar({});
68
			this._progressBar = new ProgressBar({});
66
			this.addChild(this._progressBar);
69
			this.addChild(this._progressBar);
67
			this._message = new Text({content : ' '});
70
			this._message = new Text({
71
				content : ' ',
72
				'class': 'umcProgressBarMessage'
73
			});
68
			this.addChild(this._message);
74
			this.addChild(this._message);
69
75
70
			this._progressBar.set('value', 0);
76
			this._progressBar.set('value', 0);

Return to bug 33590