blob: f2d127984eea6fd654686687b2c08e3fdfa828f3 [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
2@import "util";
3
4header {
5 position: relative;
6 background-color: $light-green;
Nils Diewald1c546922015-04-13 01:56:19 +00007 @include light-noise;
Nils Diewalda944fab2015-04-08 21:02:04 +00008// background-color: $ids-grey-1;
9 @include box-sizing-box();
10 padding: 8px;
11 padding-bottom: 0;
12 font-size: 10pt;
13 color: $nearly-white;
14 // text-shadow: none;
15 button {
16 color: $light-green;
17 background-color: transparent;
18 border-width: 0;
19 font-weight: normal;
20 margin: 0;
21 padding: 0;
22 outline: none;
23 }
24 span.select, #vc-choose { /* Formally vc.location */
25 cursor: pointer;
26 line-height: 1.8em;
27 border: {
28 width: 0;
29 bottom-width: 3px;
30 style: solid;
31 color: transparent;
32 }
33 display: inline-block;
34 &:hover {
35 color: $dark-green;
36 border-color: $dark-green;
37 }
38 &::after {
39 pointer-events: none;
40 font-family: FontAwesome;
41 text-align: center;
42 background-color: $light-green;
43 }
44 }
45 span.select::after {
Nils Diewald2488d052015-04-09 21:46:02 +000046 content: $fa-down;
Nils Diewalda944fab2015-04-08 21:02:04 +000047 }
48
49 form {
50 padding-left: $logo-left-distance;
51 min-height: 2.7em;
52 display: block;
53 margin: 0px;
54 position: relative;
55 }
56}
57
58
59/**
60 * Temporary hack for language chooser
61 * http://cssdeck.com/labs/styling-select-box-with-css3
62 */
63#ql-field {
64 cursor: pointer;
65 margin: 0;
66 outline: none;
67 border: none;
68 display: inline-block;
69 position: relative;
70 color: white;
71 background-color: $light-green;
72 border-width: 0;
73 border-radius: 0;
74 @include no-appearance;
75 &:checked {
76 outline: none;
77 }
78 > option {
79 padding: 0pt 2pt;
80 outline: none;
81 }
82}
83
84/**
85 * funny hack for firefox
86 */
87#ql-field:-moz-focusring {
88 color: transparent;
89 text-shadow: 0 0 0 white;
90}