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

total-memory-input.css « configurationForm « components « assets - github.com/le0pard/pgtune.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4e46113215571ba6e351492c00f3446f25b0400 (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
56
57
58
59
60
61
62
63
64
.total-memory {
  lost-flex-container: row;
  margin-bottom: 1rem;
}

.total-memory-label {
  lost-column: 5/8 2;
  font-size: 1.1rem;
}

.total-memory-tooltip {
  lost-column: 3/8 2;
  text-align: right;
  font-size: 0.8rem;
}

.total-memory-tooltip__link {
  border-bottom: 1px dotted #b58900;
  text-decoration: none;
  vertical-align: middle;
  margin-right: 4px;
}

.total-memory-amount {
  lost-column: 4/5 2 4px;
}
.total-memory-amount__input {
  font-size: 1.3rem;
  color: var(--inputColor);
  border: 1px solid var(--inputBorder);
  border-radius: 0;
  background-color: var(--inputBg);
  width: 100%;
  padding: 2px 1px;
  box-sizing: border-box;
}
.total-memory-amount__input:placeholder {
  font-size: 1.2rem;
  color: var(--inputColorPlaceholder);
}
.total-memory-amount__input:focus:not(:focus-visible) {
  outline: none;
}
.total-memory-amount__error {
  font-size: 0.8rem;
  color: #dc322f;
}

.total-memory-unit {
  lost-column: 1/5 2 4px;
}
.total-memory-unit__select {
  width: calc(100% - 2px);
  font-size: 1.3rem;
  color: var(--inputColor);
  border-radius: 0;
  appearance: none;
  border: 1px solid var(--inputBorder);
  background-color: var(--inputBg);
  padding: 2px 1px;
}
.total-memory-unit__select:focus:not(:focus-visible) {
  outline: none;
}