이슈 리스트 프로젝트 이름 두개 셋팅 수정
달력 크기 수정 진행중
| | |
| | | min-width: 540px; |
| | | } |
| | | |
| | | body .daterangepicker-single { |
| | | -webkit-box-shadow: 3px 25px 50px rgba(77, 76, 132, 0.34); |
| | | box-shadow: 3px 25px 50px rgba(77, 76, 132, 0.34); |
| | | font-family: "Avenir Next W01", "Proxima Nova W01", "Rubik", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| | | border: none; |
| | | padding: 15px; |
| | | } |
| | | |
| | | |
| | | @media screen and (max-width: 767px) { |
| | | body .daterangepicker { |
| | | min-width: 300px; |
| | | } |
| | | |
| | | body .daterangepicker-single { |
| | | } |
| | | } |
| | | |
| | | |
| | |
| | | this.autoUpdateInput = true; |
| | | this.alwaysShowCalendars = false; |
| | | this.ranges = {}; |
| | | this.isSingle = false; |
| | | |
| | | this.opens = 'right'; |
| | | if (this.element.hasClass('pull-right')) |
| | |
| | | options = $.extend(this.element.data(), options); |
| | | |
| | | //html template for the picker UI |
| | | var single = ''; |
| | | if ( options.isSingle) { |
| | | single = '-single'; |
| | | } |
| | | |
| | | if (typeof options.template !== 'string' && !(options.template instanceof $)) |
| | | options.template = '<div class="daterangepicker dropdown-menu">' + |
| | | options.template = '<div class="daterangepicker' + single + ' dropdown-menu">' + |
| | | '<div class="calendar left">' + |
| | | '<div class="daterangepicker_input">' + |
| | | '<input class="input-mini form-control" type="text" name="daterangepicker_start" value="" />' + |
| | |
| | | if ($rootScope.workProject != null && $rootScope.workProject.id > -1) { |
| | | var find = findProjectSearch($rootScope.workProject.id); |
| | | if (!find) { |
| | | $scope.vm.projects = []; |
| | | $scope.vm.projects.push($rootScope.workProject); |
| | | } |
| | | } |
| | |
| | | autoUpdateInput: true, |
| | | autoApply : true, |
| | | singleDatePicker : true, |
| | | isSingle : true, |
| | | //parentEl : $scope.parentEl !== undefined ? $scope.parentEl : "", |
| | | locale: { |
| | | format: 'YYYY-MM-DD', |
| | |
| | | } |
| | | |
| | | |
| | | makeTag += "<span ng-click='fn.remove(" + list.id + ")'>×</span>"; |
| | | // makeTag += "<span ng-click='fn.remove(" + list.id + ")'>×</span>"; |
| | | makeTag += "</p>"; |
| | | }); |
| | | |
| | |
| | | <issue-search-array-view-element lists="vm.projects" |
| | | type="'project'"></issue-search-array-view-element> |
| | | |
| | | <p ng-if="$root.isDefined(vm.projectName)"> |
| | | {{vm.projectName}} |
| | | <span ng-click="vm.projectName = ''">×</span> |
| | | </p> |
| | | <!-- 이슈 타입 --> |
| | | <issue-search-field-key-view-element lists="vm.issueTypes" |
| | | keys="vm.search.issueTypeIds"></issue-search-field-key-view-element> |