jquery.scss 1.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
.ui-widget {
  font-family: $regular_font;
  font-size: $font-size-base;

  &.ui-datepicker-inline {
    border: 1px solid #DDD;
    padding: 10px;
    width: 270px;

    .ui-datepicker-header {
11
      background: #FFF;
12 13 14 15 16 17 18 19
      border-color: #DDD;
    }

    .ui-datepicker-calendar td a {
      padding: 5px;
      text-align: center;
    }
  }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
20 21 22 23

  &.ui-autocomplete {
    border-color: #DDD;
    padding: 0;
24 25
    margin-top: 2px;
    z-index: 1001;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
26 27

    .ui-menu-item a {
28
      padding: 4px 10px;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
29 30 31
    }
  }

32 33 34 35 36 37 38 39 40 41 42 43
  .ui-state-default {
    border: 1px solid #FFF;
    background: #FFF;
    color: #777;
  }

  .ui-state-highlight {
    border: 1px solid #EEE;
    background: #EEE;
  }

  .ui-state-active {
44 45
    border: 1px solid $gl-primary;
    background: $gl-primary;
46 47 48 49 50
    color: #FFF;
  }

  .ui-state-hover,
  .ui-state-focus {
51 52
    border: 1px solid $row-hover;
    background: $row-hover;
53 54 55
    color: #333;
  }
}
Phil Hughes's avatar
Phil Hughes committed
56 57 58 59 60 61 62 63 64 65 66

.ui-sortable-handle {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;

  &:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
  }
}