aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/fields/InputField.scss
blob: 7cc34d9f78bb190cf4456399d36dc14c7ce725c5 (plain) (blame)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import "../../colors.scss";

.input-field {
  font-size: 0.9em;
  margin: 5px 0;

  .field-name {
    label {
      margin: 0;
    }
  }

  .field-input {
    position: relative;

    .field-value {
      .file-label {
        width: 100%;
        margin: 0;
        padding: 7px 10px;
        cursor: pointer;
        color: $color-primary-4;
        border-radius: 5px;
        background-color: $color-primary-2;
      }

      input[type="file"] {
        display: none;
      }

      .file-label:after {
        position: absolute;
        top: 0;
        right: 0;
        padding: 7px 10px 7px 12px;
        content: "Browse";
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        background-color: $color-primary-1;
      }
    }
  }

  &.field-active {
    &.field-inline .field-name {
      color: $color-primary-3 !important;
      background-color: $color-primary-4 !important;
    }

    .field-value input, .field-value .file-label {
      color: $color-primary-3 !important;
      background-color: $color-primary-4 !important;
    }

    .file-label:after {
      background-color: $color-secondary-4 !important;
    }
  }

  &.field-invalid {
    &.field-inline .field-name {
      color: $color-primary-4 !important;
      background-color: $color-secondary-2 !important;
    }

    .field-value input, .field-value .file-label {
      color: $color-primary-4 !important;
      background-color: $color-secondary-2 !important;
    }

    .file-label:after {
      background-color: $color-secondary-1 !important;
    }
  }

  &.field-small {
    font-size: 0.8em;
  }

  &.field-inline .field-wrapper {
    display: flex;

    .field-name {
      padding: 6px 7px;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      background-color: $color-primary-2;
    }

    .field-input {
      width: 100%;

      input, .file-label {
        padding-left: 3px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    &:focus-within .field-name {
      background-color: $color-primary-1;
    }
  }

  .field-clear {
    font-size: 0.9em;
    font-weight: 600;
    position: absolute;
    z-index: 10;
    top: 8px;
    right: 8px;
    cursor: pointer;
    letter-spacing: -0.5px;
  }

  &.field-active .field-clear {
    color: $color-primary-2;
  }

  .field-error {
    font-size: 0.9em;
    padding: 5px 10px;
    color: $color-secondary-0;
  }
}