aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/styles/boxed-group.css
blob: f41ae1927d66647addc3872cf72d347cb83fe616 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.boxed-group {
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  background-color: #fff;
}

.boxed-group > h2 {
  line-height: 24px;
  padding: 15px 20px 0;
}

.boxed-group hr {
  height: 0;
  border-top: 1px solid #efefef;
  margin: 15px -20px;
}

.boxed-group-header {
  position: relative;
  z-index: 10;
  padding: 15px 20px 0;
}

.boxed-group-header > h2 {
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
}

.boxed-group-header [class^="icon-"] {
  display: inline-block;
  vertical-align: middle;
}

.boxed-group-actions {
  position: relative;
  z-index: 12;
  float: right;
  margin-top: 15px;
  margin-right: 20px;
}

.boxed-group-inner {
  padding: 15px 20px;
}

.boxed-group-inner:empty {
  padding-top: 0;
}

.boxed-group-list {
  margin-top: -8px;
  margin-bottom: -8px;
}

.boxed-group-list > li {
  margin-left: -20px;
  margin-right: -20px;
  padding: 8px 20px;
}

.boxed-group-loading {
  position: relative;
  transition: border-color 0.25s;
}

.boxed-group-loading:before,
.boxed-group-loading:after {
  position: absolute;
  z-index: 1;
  border: 2px solid transparent;
  box-sizing: border-box;
  content: '';
}

.boxed-group-loading:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-color: #4b9fd5;
  border-right-color: #4b9fd5;
  animation: 3s top-left-border 0s infinite;
}

.boxed-group-loading:after {
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border-bottom-color: #4b9fd5;
  border-left-color: #4b9fd5;
  animation: 3s border-bottom-border 0s infinite;
}

@keyframes top-left-border {
  0% {
    width: 0;
    height: 0;
  }

  25% {
    width: 100%;
    height: 0;
  }

  50%, 100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes border-bottom-border {
  0%, 50% {
    width: 0;
    height: 0;
    border-width: 0;
  }

  51% {
    border-width: 2px;
  }

  75% {
    width: 100%;
    height: 0;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}