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

configuration-view.css « configurationView « components « assets - github.com/le0pard/pgtune.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3db59892b6b6654a9a927880cfd40e2bea19f594 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.configuration-view-tabs-wrapper {
  display: flex;
  flex-flow: row wrap;
}

.configuration-view-tab {
  cursor: pointer;
  display: flex;
  flex-basis: 49.95%;
  flex-grow: 0;
  flex-shrink: 0;
  height: 2rem;
  margin-top: 1rem;
  max-width: 49.95%;
  text-align: center;
  width: 49.95%;
  align-items: center;
  justify-content: center;
}

.configuration-view-tab:nth-child(1n) {
  margin-left: 0;
  margin-right: 0;
}

.configuration-view-tab:last-child {
  margin-right: 0;
}

.configuration-view-tab:nth-child(2n) {
  margin-left: auto;
  margin-right: 0;
}

.configuration-view-tab--active {
  border-bottom: 2px solid #cb4b16;
  background-color: var(--headsColor);
}

.configuration-view-copy-wrapper {
  display: flex;
  flex-flow: row wrap;
}

.configuration-view-copy-button {
  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-view-copy-button:nth-child(1n) {
  margin-left: 0;
  margin-right: 30px;
}

.configuration-view-copy-button:last-child {
  margin-right: 0;
}

.configuration-view-copy-button:nth-child(1n) {
  margin-left: auto;
  margin-right: 0;
}

.configuration-view-copy-button:focus {
  outline: 0;
}
.configuration-view-copy-button:hover {
  background-color: var(--buttonHover);
}
.configuration-view-copy-button:active {
  border-width: 2px;
}