diff options
| author | Alon Levy <alon@pobox.com> | 2014-12-16 17:37:42 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-16 17:37:42 +0200 |
| commit | ade19de410e0a789a921ec1666b278b2a64176d6 (patch) | |
| tree | c4c54b106de93609ca7bb70a20fd4be696715dbe /res/client/css/partials/search-bar.scss | |
| parent | c7d026b1d504323a8c61d51b726e5e8d2337fc4b (diff) | |
moving files around after repository merger
Diffstat (limited to 'res/client/css/partials/search-bar.scss')
| -rw-r--r-- | res/client/css/partials/search-bar.scss | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/res/client/css/partials/search-bar.scss b/res/client/css/partials/search-bar.scss new file mode 100644 index 00000000..b9f0de7d --- /dev/null +++ b/res/client/css/partials/search-bar.scss @@ -0,0 +1,66 @@ +@import '../modules/mixins'; // For box-shadow + +.search-bar{ + position: relative; + width:100%; + height:$four-baselines; + background: white; + @include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) ); + z-index: 100; +} + +.search-input{ + width: 70%; + height:$icon-height; + float: left; + margin: 8px 12px 12px $doc-margin; +} + +.search-input:before { + content: ""; + background: url(../img/search-icon.png); + padding: 0px 10px 0px 10px; + background-position: center; + background-repeat: no-repeat; +} + +#search { + font-family: $base-font-family; + font-size: $h3-size; + width: 80%; +} + +#search-suggestion { + position: absolute; + width: 70%; + margin-left: $doc-margin; + top: $three-baselines + 6px; +} + +#search-suggestion .suggestion-item { + padding: $one-baseline 0px $one-baseline $two-baselines; +} + +#search-suggestion .suggestion-item.selected, #search-suggestion .suggestion-item:hover { + padding: $one-baseline 0px $one-baseline 22px; +} + + + +.export { + cursor: pointer; + text-align: right; + width: 60px; + float: right; + color: $dark-grey; + font-size: $h5-size; + margin: 14px $doc-margin 12px 12px ; +} + +.export:before { + content: ""; + background: url(../img/export.png); + padding: 0px 9px 0px 9px; + background-position: center; + background-repeat: no-repeat; +}
\ No newline at end of file |
