summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/import.scss
blob: 453b810196b4d1a3c94662a57a3fb69d7793fbf5 (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
@import 'mixins_and_variables_and_functions';

.import-jobs-to-col {
  width: 39%;
}

.import-jobs-status-col {
  width: 15%;
}

.import-jobs-cta-col {
  width: 1%;
}


.import-entities-target-select {
  &.disabled {
    .import-entities-target-select-separator,
    .select2-container.select2-container-disabled .select2-choice {
      color: var(--gray-400, $gray-400);
      border-color: var(--gray-100, $gray-100);
      background-color: var(--gray-10, $gray-10);
    }

    .select2-container.select2-container-disabled .select2-choice .select2-arrow {
      background-color: var(--gray-10, $gray-10);
    }
  }

  .import-entities-target-select-separator {
    border-color: var(--gray-200, $gray-200);
    background-color: var(--gray-10, $gray-10);
  }

  .select2-container {
    > .select2-choice {
      .select2-arrow {
        background-color: var(--white, $white);
      }

      border-color: var(--gray-200, $gray-200);
      color: var(--gray-900, $gray-900) !important;
      background-color: var(--white, $white) !important;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  .gl-form-input {
    box-shadow: inset 0 0 0 1px var(--gray-200, $gray-200);
  }
}