aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/settings/styles.css
blob: c3d0a6588b8b8a378480fb1dea97f3b838adbb89 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.settings-layout {
  margin-bottom: 60px;
}

.settings-definitions-list > li + li {
  margin-top: 30px;
}

.settings-definition {
  display: flex;
  align-items: stretch;
}

.settings-definition-changed {
  margin: -10px -20px;
  padding: 9px 20px;
  border-top: 1px solid #faebcc;
  border-bottom: 1px solid #faebcc;
  background-color: #fcf8e3;
}

.settings-definition-left {
  width: 330px;
  padding-right: 30px;
  box-sizing: border-box;
}

.settings-definition-right {
  position: relative;
  width: calc(100% - 330px);
  padding-top: 35px;
  box-sizing: border-box;
}

.settings-definition-name {
  text-overflow: ellipsis;
}

.settings-definition-key {
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-definition-key:hover {
  overflow: visible;
}

.settings-definition-state {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-definition-state-icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  text-align: center;
}

.settings-definition-state-icon > .icon-alert-error,
.settings-definition-state-icon > .spinner {
  position: relative;
  top: -2px;
}

.settings-definition-changes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #e6e6e6;
}

.settings-sub-categories-list {
}

.settings-sub-categories-list > li {
}

.settings-sub-categories-list > li + li {
  margin: 30px -20px 0;
  padding: 30px 20px;
  border-top: 1px solid #e6e6e6;
}

.settings-sub-category-name {
  margin-bottom: 20px;
  font-size: 16px;
}

.settings-sub-category-description {
  margin-top: -15px;
  margin-bottom: 20px;
  color: #777;
}