This repository was archived by the owner on Oct 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy path_operator-theme.scss
116 lines (97 loc) · 1.94 KB
/
_operator-theme.scss
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
@import '~@angular/material/theming';
$operator-border: #f3f3f3;
$operator-active: #62757f;
$link-color: #2196f3;
@mixin operator-theme($theme) {
$primary: mat-color(map-get($theme, primary));
$accent: mat-color(map-get($theme, accent));
$operator-active-background: rgba($operator-active, 0.7);
rx-marbles > div {
text-align: center;
min-width: 840px;
circle {
// temp fix: current broken on marble component
filter: none !important;
}
}
app-operator-general,
app-operator-vendor-examples {
.main-operator-container {
padding: 5px;
display: flex;
flex-direction: column;
padding: 0 16px;
margin-bottom: 32px;
}
.short-description {
margin: 16px 0 32px;
}
a {
text-decoration: none;
color: $link-color;
&:hover {
text-decoration: underline;
}
}
.extra-tip {
display: flex;
}
h3 {
display: inline-block;
vertical-align: middle;
padding-left: 10px;
}
.tip-warning {
color: rgb(244, 67, 54);
}
.tip-info {
color: rgb(33, 150, 243);
}
}
.operator-section-tabs {
.mat-ink-bar {
background-color: $accent !important;
height: 3px;
}
}
.operator-list {
a {
border-bottom: 1px solid $operator-border;
&.active-operator {
background-color: $operator-border;
// color: white;
&:hover {
background-color: $operator-border;
}
}
&:last-child {
border-bottom: none;
}
}
}
.section-list {
padding: 1px;
list-style-type: none;
margin-top: 0;
li {
padding-bottom: 5px;
&:last-child {
padding-bottom: 0;
}
}
}
.code-block {
position: relative;
pre {
margin-top: 0;
padding-top: 0;
}
}
.frame-wrapper {
iframe {
border: none;
width: 100%;
height: 350px;
}
}
}