Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jquery.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 871b808bad4c4aca098f8aacfae64d3160dfba1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.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 {
      background: #FFF;
      border-color: #DDD;
    }

    .ui-datepicker-calendar td a {
      padding: 5px;
      text-align: center;
    }
  }

  &.ui-autocomplete {
    border-color: #DDD;
    padding: 0;
    margin-top: 2px;
    z-index: 1001;

    .ui-menu-item a {
      padding: 4px 10px;
    }
  }

  .ui-state-default {
    border: 1px solid #FFF;
    background: #FFF;
    color: #777;
  }

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

  .ui-state-active {
    border: 1px solid $gl-primary;
    background: $gl-primary;
    color: #FFF;
  }

  .ui-state-hover,
  .ui-state-focus {
    border: 1px solid $hover;
    background: $hover;
    color: #333;
  }
}