Added preliminary meta-button
Change-Id: I517bd12a7f9ec1ba6e13d856e7ea07685afe7673
diff --git a/dev/scss/main/resultinfo.scss b/dev/scss/main/resultinfo.scss
index e36c6a3..206cd67 100644
--- a/dev/scss/main/resultinfo.scss
+++ b/dev/scss/main/resultinfo.scss
@@ -26,7 +26,7 @@
cursor: pointer;
position: relative;
> span {
- @include blind;
+ @include blind;
}
box-shadow: $choose-box-shadow;
@include standard-text-padding;
@@ -35,30 +35,30 @@
@include choose-item;
border: {
- top-width: $border-size;
- bottom-width: $border-size;
- top-style: solid;
- bottom-style: solid;
+ top-width: $border-size;
+ bottom-width: $border-size;
+ top-style: solid;
+ bottom-style: solid;
}
&:hover {
- @include choose-hover;
+ @include choose-hover;
}
}
> a:last-child {
border: {
- top-right-radius: $standard-border-radius;
- bottom-right-radius: $standard-border-radius;
- right-width: $border-size;
- right-style: solid;
- }
+ top-right-radius: $standard-border-radius;
+ bottom-right-radius: $standard-border-radius;
+ right-width: $border-size;
+ right-style: solid;
+ }
}
> a:first-child {
border: {
- top-left-radius: $standard-border-radius;
- bottom-left-radius: $standard-border-radius;
- left-width: $border-size;
- left-style: solid;
- }
+ top-left-radius: $standard-border-radius;
+ bottom-left-radius: $standard-border-radius;
+ left-width: $border-size;
+ left-style: solid;
+ }
}
> a::after {
font-family: 'FontAwesome';
@@ -72,6 +72,9 @@
> a.show-kq::after {
content: $fa-code;
}
+ > a.show-meta::after {
+ content: $fa-metadata;
+ }
}
}
@@ -90,6 +93,11 @@
border-bottom-right-radius: 0;
}
}
+ div.result.left {
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ }
}
#total-results {
diff --git a/dev/scss/util.scss b/dev/scss/util.scss
index 834484b..20651cb 100644
--- a/dev/scss/util.scss
+++ b/dev/scss/util.scss
@@ -234,4 +234,5 @@
$fa-checked: "\f046";
$fa-check: "\f096";
$fa-code: "\f121";
-$fa-marked: "\f005";
\ No newline at end of file
+$fa-marked: "\f005";
+$fa-metadata: "\f067";
\ No newline at end of file