mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 04:35:16 +01:00
update for auto-resize of UI.
This commit is contained in:
parent
55b811e9ec
commit
cded535892
@ -42,7 +42,7 @@
|
||||
|
||||
.sub-pane {
|
||||
margin: 15px;
|
||||
min-height: 300px;
|
||||
min-height: 1px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
cursor: all-scroll;
|
||||
}
|
||||
#down-pane {
|
||||
height: 80px;
|
||||
height: 100%;
|
||||
min-height: 80px;
|
||||
}
|
||||
|
||||
@ -54,7 +54,8 @@
|
||||
}
|
||||
|
||||
.well-split {
|
||||
margin-bottom: 0;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.split-handle {
|
||||
|
@ -23,7 +23,7 @@
|
||||
if(!angular.isDefined(scope.subsHeight)) scope.subsHeight = 110;
|
||||
if(!angular.isDefined(scope.subsSection)) scope.subsSection = 32;
|
||||
if(!angular.isDefined(scope.subsSubPane)) scope.subsSubPane = 226;
|
||||
if(!angular.isDefined(scope.subsTabPane)) scope.subsTabPane = 226;
|
||||
if(!angular.isDefined(scope.subsTabPane)) scope.subsTabPane = 66;
|
||||
|
||||
scope.$watch(scope.getDimension, function(current) {
|
||||
if(current) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div class="tab-pane" id="logs">
|
||||
<div class="tab-pane" id="logs" element-height>
|
||||
<div class="col-xs-12 col-md-12 each-tab-pane">
|
||||
<div class="form-inline">
|
||||
<div class="input-group">
|
||||
|
@ -9,6 +9,9 @@
|
||||
ListLogController.$inject = ['$scope','ListLogService', 'getParameterByName', '$location'];
|
||||
|
||||
function ListLogController($scope, ListLogService, getParameterByName, $location) {
|
||||
|
||||
$scope.subsTabPane = 20;
|
||||
|
||||
var vm = this;
|
||||
vm.isOpen = false;
|
||||
|
||||
|
@ -9,6 +9,9 @@
|
||||
ListProjectMemberController.$inject = ['$scope', 'ListProjectMemberService', 'DeleteProjectMemberService', 'getParameterByName', '$location', 'currentUser', '$filter', 'trFilter'];
|
||||
|
||||
function ListProjectMemberController($scope, ListProjectMemberService, DeleteProjectMemberService, getParameterByName, $location, currentUser, $filter, trFilter) {
|
||||
|
||||
$scope.subsTabPane = 110;
|
||||
|
||||
var vm = this;
|
||||
|
||||
vm.isOpen = false;
|
||||
|
@ -1,5 +1,5 @@
|
||||
<modal-dialog modal-title="// vm.modalDialogTitle //" modal-message="// vm.modalDialogMessage //" action="vm.deleteDestination()"></modal-dialog>
|
||||
<div class="tab-pane">
|
||||
<div class="tab-pane" element-height>
|
||||
<div class="col-xs-12 col-md-12 each-tab-pane">
|
||||
<div class="form-inline">
|
||||
<div class="input-group">
|
||||
@ -38,6 +38,6 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-4 col-md-12 well well-sm well-custom well-split"><div class="col-md-offset-10">//vm.destinations ? vm.destinations.length : 0// // 'items' | tr //</div></div>
|
||||
<div class="col-xs-4 col-md-12 well well-sm well-custom"><div class="col-md-offset-10">//vm.destinations ? vm.destinations.length : 0// // 'items' | tr //</div></div>
|
||||
</div>
|
||||
</div>
|
@ -9,6 +9,9 @@
|
||||
DestinationController.$inject = ['$scope', 'ListDestinationService', 'DeleteDestinationService', '$filter', 'trFilter'];
|
||||
|
||||
function DestinationController($scope, ListDestinationService, DeleteDestinationService, $filter, trFilter) {
|
||||
|
||||
$scope.subsSubPane = 276;
|
||||
|
||||
var vm = this;
|
||||
|
||||
vm.retrieve = retrieve;
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div class="tab-pane">
|
||||
<div class="tab-pane" element-height>
|
||||
<div class="col-xs-12 col-md-12 each-tab-pane">
|
||||
<div class="form-inline">
|
||||
<div class="input-group">
|
||||
@ -46,10 +46,10 @@
|
||||
<a href="javascript:void(0);"><span class="glyphicon glyphicon-trash"></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</tbody>well-split
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-4 col-md-12 well well-sm well-custom well-split"><div class="col-md-offset-10">//vm.replications ? vm.replications.length : 0// // 'items' | tr //</div></div>
|
||||
<div class="col-xs-4 col-md-12 well well-sm well-custom"><div class="col-md-offset-10">//vm.replications ? vm.replications.length : 0// // 'items' | tr //</div></div>
|
||||
</div>
|
||||
</div>
|
@ -6,9 +6,12 @@
|
||||
.module('harbor.system.management')
|
||||
.directive('replication', replication);
|
||||
|
||||
ReplicationController.$inject = ['ListReplicationPolicyService', 'ToggleReplicationPolicyService'];
|
||||
ReplicationController.$inject = ['$scope', 'ListReplicationPolicyService', 'ToggleReplicationPolicyService'];
|
||||
|
||||
function ReplicationController($scope, ListReplicationPolicyService, ToggleReplicationPolicyService) {
|
||||
|
||||
$scope.subsSubPane = 276;
|
||||
|
||||
function ReplicationController(ListReplicationPolicyService, ToggleReplicationPolicyService) {
|
||||
var vm = this;
|
||||
vm.retrieve = retrieve;
|
||||
vm.search = search;
|
||||
|
@ -1,4 +1,5 @@
|
||||
<div class="search-pane">
|
||||
<div class="tab-pane" element-height>
|
||||
<div class="col-xs-12 col-md-12 each-tab-pane">
|
||||
<div class="form-inline">
|
||||
<div class="input-group">
|
||||
<input type="text" class="form-control" placeholder="" ng-model="vm.username" size="30">
|
||||
@ -7,10 +8,10 @@
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<modal-dialog modal-title="// 'confirm_to_delete_user_title' | tr //" modal-message="// 'confirm_to_delete_user' | tr //" action="vm.deleteUser()"></modal-dialog>
|
||||
<div class="pane">
|
||||
<div class="sub-pane">
|
||||
<table class="table">
|
||||
<table class="table table-pane">
|
||||
<thead>
|
||||
<th>// 'username' | tr //</th>
|
||||
<th>// 'email' | tr //</th>
|
||||
@ -36,5 +37,8 @@
|
||||
<div class="col-xs-4 col-md-12 well well-sm well-custom">
|
||||
<div class="col-md-offset-10">//vm.users ? vm.users.length : 0// items</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
@ -9,6 +9,9 @@
|
||||
ListUserController.$inject = ['$scope', 'ListUserService', 'DeleteUserService'];
|
||||
|
||||
function ListUserController($scope, ListUserService, DeleteUserService) {
|
||||
|
||||
$scope.subsSubPane = 226;
|
||||
|
||||
var vm = this;
|
||||
|
||||
vm.username = '';
|
||||
|
@ -10,7 +10,8 @@
|
||||
|
||||
function AdminOptionController($scope) {
|
||||
|
||||
$scope.subsSubPane = 276;
|
||||
$scope.subsSubPane = 296;
|
||||
|
||||
var vm = this;
|
||||
vm.toggle = false;
|
||||
vm.toggleAdminOption = toggleAdminOption;
|
||||
|
@ -29,3 +29,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user