blob: d3003bda65405751d8975f73957f726e7657fe2a (
plain) (
blame)
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
|
@import '../colors.scss';
.connection {
background-color: $color-primary-0;
border-top: 3px solid $color-primary-3;
border-bottom: 3px solid $color-primary-3;
td {
vertical-align: middle;
}
.connection-service {
.btn {
width: 100%;
}
.btn:hover {
background-color: $color-primary-1 !important;
color: $color-primary-4;
}
}
.connection-icon {
font-weight: 600;
font-size: 18px;
margin-right: 6px;
cursor: pointer;
}
.connection-icon.icon-enabled {
color: $color-secondary-2;
}
&:hover {
background-color: $color-primary-2;
}
&.connection-selected {
background-color: $color-primary-2;
}
}
.connection-popover {
background-color: $color-primary-4;
border: none;
.popover-body {
color: $color-primary-1;
textarea {
background-color: $color-primary-3;
font-size: 12px;
width: 200px;
}
}
.arrow::after {
border-right-color: $color-primary-4;
}
}
|