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

configuration-form.css « configurationForm « components « assets - github.com/le0pard/pgtune.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c268579bc235ca56bde4117f859171b06026edf2 (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
.configuration-form-btn-wrapper {
  display: flex;
  flex-flow: row wrap;
}

.configuration-form-btn {
  background-color: var(--headsColor);
  border: 1px solid var(--commentColor);
  color: var(--baseColor);
  display: flex;
  flex-basis: 99.9%;
  flex-grow: 0;
  flex-shrink: 0;
  height: 2.6rem;
  max-width: 99.9%;
  text-align: center;
  width: 99.9%;
  align-items: center;
  justify-content: center;
}

.configuration-form-btn:nth-child(1n) {
  margin-left: 0;
  margin-right: 30px;
}

.configuration-form-btn:last-child {
  margin-right: 0;
}

.configuration-form-btn:nth-child(1n) {
  margin-left: auto;
  margin-right: 0;
}

.configuration-form-btn--disabled {
  background-color: var(--commentColor);
}
.configuration-form-btn:focus:not(:focus-visible) {
  outline: 0;
}
.configuration-form-btn:hover {
  background-color: var(--buttonHover);
}
.configuration-form-btn:active {
  border-width: 2px;
}