blob: 5bd25619460ac0bec85cc7ea8ee1005ae3df4535 (
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
|
.oauth-provider {
display: block;
width: 180px;
line-height: 22px;
padding: 8px 12px;
border: none;
border-radius: 2px;
box-sizing: border-box;
background-color: #236a97;
color: #fff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.oauth-provider:hover,
.oauth-provider:focus {
color: #fff;
box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.3);
}
.oauth-provider > span {
padding-left: 6px;
}
.oauth-provider-sonarqube {
background-color: #4b9fd5;
}
|