blob: 5abc95e29a5bce37530dadc2f4af5c6dec962bdd [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00002@import "../util";
Nils Diewalda944fab2015-04-08 21:02:04 +00003
Akronb917a7c2015-07-02 11:02:42 +02004$border-size : 1px;
5
Akron179c8ac2015-06-30 19:30:50 +02006#resultinfo {
Nils Diewalda944fab2015-04-08 21:02:04 +00007 clear: both;
Akron179c8ac2015-06-30 19:30:50 +02008 text-align: right;
Nils Diewalda944fab2015-04-08 21:02:04 +00009
Akron179c8ac2015-06-30 19:30:50 +020010 font-size: 10pt;
Nils Diewalda944fab2015-04-08 21:02:04 +000011 p.found {
Akron179c8ac2015-06-30 19:30:50 +020012 display: inline;
Nils Diewalda944fab2015-04-08 21:02:04 +000013 padding: 0;
14 margin: 0;
15 text-align: right;
16 }
Akronb917a7c2015-07-02 11:02:42 +020017
18 div.result {
Akron179c8ac2015-06-30 19:30:50 +020019 display: inline-block;
Akronb917a7c2015-07-02 11:02:42 +020020 margin: 2pt 0 0 2pt;
Akron179c8ac2015-06-30 19:30:50 +020021 > a {
Akronb917a7c2015-07-02 11:02:42 +020022 display: inline-block;
Akron179c8ac2015-06-30 19:30:50 +020023 cursor:pointer;
24 position: relative;
Akron179c8ac2015-06-30 19:30:50 +020025 > span {
26 @include blind;
27 }
Akronb917a7c2015-07-02 11:02:42 +020028 box-shadow: $choose-box-shadow;
29 @include standard-text-padding;
30 padding-top: 1pt;
31 padding-bottom: 1pt;
32
33 @include choose-item;
34 border: {
35 top-width: $border-size;
36 bottom-width: $border-size;
37 top-style: solid;
38 bottom-style: solid;
39 }
40 &:hover {
41 @include choose-hover;
42 }
43 }
44
45 > a:last-child {
46 border: {
47 top-right-radius: $standard-border-radius;
48 bottom-right-radius: $standard-border-radius;
49 right-width: $border-size;
50 right-style: solid;
51 }
52 }
53 > a:first-child {
54 border: {
55 top-left-radius: $standard-border-radius;
56 bottom-left-radius: $standard-border-radius;
57 left-width: $border-size;
58 left-style: solid;
59 }
Akron179c8ac2015-06-30 19:30:50 +020060 }
61 > a::after {
62 font-family: 'FontAwesome';
63 }
64 > a.align.left::after {
65 content: $fa-left-align;
66 }
67 > a.align.right::after {
68 content: $fa-right-align;
69 }
70 > a.show-kq::after {
71 content: $fa-code;
72 }
73 }
Nils Diewalda944fab2015-04-08 21:02:04 +000074}
75
Akronb917a7c2015-07-02 11:02:42 +020076#resultinfo.found {
77 position: relative;
78 z-index: 20;
79 margin-bottom: 0px;
80 div.result > a {
81 margin-bottom: 0;
82 border-bottom-width: 0;
83 box-shadow: none;
84 &:first-child {
85 border-bottom-left-radius: 0;
86 }
87 &:last-child {
88 border-bottom-right-radius: 0;
89 }
90 }
91}
92
Nils Diewalda944fab2015-04-08 21:02:04 +000093#total-results {
94 color: $total-results;
95 font-weight: bold;
96}
Akronb917a7c2015-07-02 11:02:42 +020097/*
Nils Diewalda898dac2015-05-06 21:04:16 +000098#no-results {
99 margin: 0 auto;
100 text-align: center;
101 code {
102 &::before {
103 content : open-quote;
104 }
105 &::after {
106 content : close-quote;
107 }
108 font-weight: bold;
109 }
110}
Akronb917a7c2015-07-02 11:02:42 +0200111
112*/