Fixed tutorial view and reimplemented API for new frontend
diff --git a/dev/scss/base.scss b/dev/scss/base.scss
index 1d3d26a..ca1029e 100644
--- a/dev/scss/base.scss
+++ b/dev/scss/base.scss
@@ -37,7 +37,7 @@
color: $dark-orange;
text-decoration: none;
&:hover {
- color: $light-green; // $darkest-orange;
+ color: $darkest-orange;
@include color-transition;
}
&:active, &:visited {
diff --git a/dev/scss/header/header.scss b/dev/scss/header/header.scss
index e63283a..8b4e0a5 100644
--- a/dev/scss/header/header.scss
+++ b/dev/scss/header/header.scss
@@ -105,6 +105,10 @@
content: $fa-login;
}
}
+
+ #vc-view > div {
+ margin: 1.3em 0 .5em 0;
+ }
}
diff --git a/dev/scss/header/searchbar.scss b/dev/scss/header/searchbar.scss
index 883f003..6411d87 100644
--- a/dev/scss/header/searchbar.scss
+++ b/dev/scss/header/searchbar.scss
@@ -97,13 +97,13 @@
*/
&::after {
font-family: "FontAwesome";
- content: '\f096';
+ content: $fa-check;
}
}
}
&:checked + label span {
&:after {
- content:"\f046";
+ content: $fa-checked;
}
}
-}
+}
\ No newline at end of file
diff --git a/dev/scss/header/vc.scss b/dev/scss/header/vc.scss
index d6650a4..12071db 100644
--- a/dev/scss/header/vc.scss
+++ b/dev/scss/header/vc.scss
@@ -249,3 +249,17 @@
}
}
}
+
+
+#vc-choose {
+ &::after {
+ content: $fa-down;
+ padding: {
+ left: 2pt;
+ right: 4pt;
+ }
+ }
+ &.active::after {
+ content: $fa-up;
+ }
+}
\ No newline at end of file
diff --git a/dev/scss/util.scss b/dev/scss/util.scss
index f0e10de..8b91f22 100644
--- a/dev/scss/util.scss
+++ b/dev/scss/util.scss
@@ -181,4 +181,6 @@
$fa-tutorial: "\f19d";
$fa-left-align: "\f036";
$fa-right-align: "\f038";
-$fa-question: "\f128"; // "\f059";
\ No newline at end of file
+$fa-question: "\f128"; // "\f059";
+$fa-checked: "\f046";
+$fa-check: "\f096";
\ No newline at end of file