有没有一种方法可以使日历弹出窗口到达表单的顶部堆栈位置?

时间:2019-01-02 13:13:39

标签: html css angular

我目前正在努力修复表单样式。 该表单包含2个日期元素,其中的日历在单击后即会打开。 表单本身目前以旧样式存在,一切正常。

old search form

现在需要将样式更改为手风琴视图,如下所示:

new search form

如您所见,由于它没有弹出所属的手风琴,因此它通过提供完整的可见日历而引起问题。

到目前为止,我已经尝试使用z-index,但是似乎没有任何效果。 注意:在我开始玩之前,z-index已经设置为9999999。

我希望日历能使手风琴弹出,而不会因手风琴的内容而浪费时间。 (如果date-elements下还有更多元素,则看起来不错,但事实并非如此,不能从表单中得到期望。)

有什么想法要解决吗?

编辑提供的CSS代码:

.wc-date-popover{
    font-size: 14px;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
    margin: 0px auto;
    perspective: 1000px;
    float: left;
    background: #fff;
    background: $secondary-color;
    position: fixed;
    width: 90%;
    top: 5%;
    left: 50%;
    z-index: 9999999;
    overflow: hidden;
    height: 90%;
    max-width: 320px;
    transition: all .5s linear;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .wc-date-popover{
        width: 250px;
        position: absolute;
        top: 31px;
        height: auto;
        left: 0;
        transform: translateX(0);
    }

提供部分HTML代码的编辑

<div class="row {{viewobject['css']}}" id="{{viewobject[g.PROPS.title]}}">
  <div class="col">
    <div class="group">
      <div [formGroup]="form">
        <div formGroupName="{{viewobject[g.PROPS.title]}}">
          <ng-container *ngIf="viewobject !== undefined && form !== undefined">
            <ng-container [ngSwitch]="viewobject[g.PROPS.nodeType]">
              <ng-container *ngSwitchCase="'accordion'">
                <hac-accordion>
                  <hac-accordion-group [heading]="viewobject[g.PROPS.label] ? viewobject[g.PROPS.label] : viewobject[g.PROPS.title] | hasLang" [blnExpand]="true">
                    <ng-container *ngTemplateOutlet="content"></ng-container>
                  </hac-accordion-group>
                </hac-accordion>
              </ng-container>
            </ng-container>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

0 个答案:

没有答案