thm-p3-configurator 0.0.252 → 0.0.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -18,8 +18,8 @@ $secondary: #0f1223;
|
|
|
18
18
|
$custom-secondary: #f8be2c87;
|
|
19
19
|
$custom-primary: #f8bd2c;
|
|
20
20
|
// TMG theme colors
|
|
21
|
-
$tmg-primary: #
|
|
22
|
-
$tmg-secondary: #
|
|
21
|
+
$tmg-primary: #41bbca;
|
|
22
|
+
$tmg-secondary: #000;
|
|
23
23
|
$success: $green;
|
|
24
24
|
$info: $cyan;
|
|
25
25
|
$warning: $yellow;
|
|
@@ -67,6 +67,18 @@ Configurator TMG theme
|
|
|
67
67
|
border-color: $tmg-primary !important;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
+
.btn-outline-primary {
|
|
71
|
+
border-color: $tmg-primary;
|
|
72
|
+
color: $tmg-primary;
|
|
73
|
+
|
|
74
|
+
&:hover,
|
|
75
|
+
&.active {
|
|
76
|
+
background-color: $tmg-primary;
|
|
77
|
+
border-color: $tmg-primary;
|
|
78
|
+
color: white;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
70
82
|
.btn-outline-theme-primary {
|
|
71
83
|
border-color: $tmg-primary;
|
|
72
84
|
color: $tmg-primary;
|
|
@@ -93,6 +105,12 @@ Configurator TMG theme
|
|
|
93
105
|
&:hover {
|
|
94
106
|
@extend .bg-tmg-secondary;
|
|
95
107
|
}
|
|
108
|
+
|
|
109
|
+
&.active {
|
|
110
|
+
background-color: $tmg-primary;
|
|
111
|
+
border-color: $tmg-primary;
|
|
112
|
+
color: white;
|
|
113
|
+
}
|
|
96
114
|
}
|
|
97
115
|
|
|
98
116
|
.list-check {
|
|
@@ -150,6 +168,21 @@ Configurator TMG theme
|
|
|
150
168
|
border-color: $tmg-primary !important;
|
|
151
169
|
}
|
|
152
170
|
}
|
|
171
|
+
|
|
172
|
+
// Form select focus styling
|
|
173
|
+
.form-select {
|
|
174
|
+
&[class*='is-focused'] {
|
|
175
|
+
border-color: lighten($tmg-secondary, 10%) !important;
|
|
176
|
+
box-shadow: 0 0 0 0.2rem rgba($tmg-secondary, 0.5) !important;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// Form label styling
|
|
181
|
+
.form-label {
|
|
182
|
+
span {
|
|
183
|
+
color: $tmg-primary;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
153
186
|
}
|
|
154
187
|
}
|
|
155
188
|
|