Skip to content
Snippets Groups Projects
Commit b1c510f1 authored by Karl Hasselbring's avatar Karl Hasselbring
Browse files

Refactoring: searchbar dateien aufgeräumt

parent 6ab68bbe
No related branches found
No related tags found
4 merge requests!1262WIP: Resolve "Spendenseite Texte anpassen",!1207WIP: Resolve "Rechtschreibfehler",!1198Meta ger redesign,!1131Meta ger redesign
...@@ -4,8 +4,10 @@ ...@@ -4,8 +4,10 @@
font-size: 16px; font-size: 16px;
background-color: white; background-color: white;
.search-focus-selector { .search-focus-selector {
background-color: transparent;
border-radius: 5px 0px 0px 5px; border-radius: 5px 0px 0px 5px;
background-color: white;
position: relative;
text-overflow: ellipsis;
select { select {
width: 100%; width: 100%;
color: #777; color: #777;
...@@ -15,6 +17,18 @@ ...@@ -15,6 +17,18 @@
background-color: transparent; background-color: transparent;
padding-right: 35px; padding-right: 35px;
} }
&:after {
content: "\f078";
font: 15px "FontAwesome", sans-serif; //text-align: center;
line-height: 30px;
color: #aaa;
background-color: transparent;
right: 8px;
top: 2px;
padding: 2px 2px 2px 5px;
position: absolute;
pointer-events: none;
}
} }
.search-add-focus { .search-add-focus {
display: flex; display: flex;
...@@ -84,32 +98,39 @@ ...@@ -84,32 +98,39 @@
.search-custom-hidden { .search-custom-hidden {
display: none; display: none;
} }
@media (max-width: @screen-xs-max) { .searchbar-tooltip {
flex-direction: column-reverse; display: none;
}
}
.search-focus-selector {
background-color: white;
position: relative;
text-overflow: ellipsis;
&:after {
content: "\f078";
font: 15px "FontAwesome", sans-serif; //text-align: center;
line-height: 30px;
color: #aaa;
background-color: transparent;
right: 8px;
top: 2px;
padding: 2px 2px 2px 5px;
position: absolute; position: absolute;
pointer-events: none; margin-top: 40px;
&>.searchbar-tooltip-arrow {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #ff8000;
margin-left: 5%;
}
&>.searchbar-tooltip-content {
position: relative;
margin-left: -45%;
&>p {
display: inline-block;
background: #ff8000;
border-radius: .25em;
font-size: 16px;
color: white;
padding: 5px 10px;
}
}
div:hover>& {
display: inline-block;
@media (max-width: @screen-xs-max) {
display: none;
}
}
} }
} @media (max-width: @screen-xs-max) {
flex-direction: column-reverse;
.searchform-bonus {
li {
margin: 5px;
} }
} }
...@@ -154,41 +175,7 @@ ...@@ -154,41 +175,7 @@
.resultpage-searchbar { .resultpage-searchbar {
margin: 5px 0px 0px 5px; margin: 5px 0px 0px 5px;
:first-child { :first-child {
border-left: none; border-left: none;
} }
}
.searchbar-tooltip {
display: none;
position: absolute;
margin-top: 40px;
&>.searchbar-tooltip-arrow {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #ff8000;
margin-left: 5%;
}
&>.searchbar-tooltip-content {
position: relative;
margin-left: -45%;
&>p {
display: inline-block;
background: #ff8000;
border-radius: .25em;
font-size: 16px;
color: white;
padding: 5px 10px;
}
}
}
div:hover>.searchbar-tooltip {
display: inline-block;
@media (max-width: @screen-xs-max) {
display: none;
}
} }
\ No newline at end of file
...@@ -7,20 +7,6 @@ ...@@ -7,20 +7,6 @@
@include('modals.plugin-modal') @include('modals.plugin-modal')
<h1 id="mglogo"><a class="hidden-xs" href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/") }}">MetaGer</a></h1> <h1 id="mglogo"><a class="hidden-xs" href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/") }}">MetaGer</a></h1>
@include('parts.searchbar', ['class' => 'startpage-searchbar']) @include('parts.searchbar', ['class' => 'startpage-searchbar'])
<ul class="list-inline searchform-bonus hidden">
<li id="plug"
@unless ($browser === 'Firefox' || $browser === 'Mozilla' || $browser === 'Chrome' || $browser === 'Opera' || $browser === 'IE' || $browser === 'Edge' || $browser === 'Safari' || $browser === 'Vivaldi')
class="hidden"
@endunless>
<a href="#" data-toggle="modal" data-target="#plugin-modal" class="btn btn-default mutelink" title="{{ trans('index.plugintitle') }}"><i class="fa fa-plug" aria-hidden="true"></i> {{ trans('index.plugin') }}</a></li>
@if (LaravelLocalization::getCurrentLocale() == "de")
<li>
<a href="https://suma-ev.de/presse/Werbefreie-Suche-mit-MetaGer.html" target="_blank" class="btn btn-default mutelink">
Werbefreie Suche mit MetaGer
</a>
</li>
@endif
</ul>
<script type="text/javascript" src="{{ elixir('js/scriptStartPage.js') }}"></script> <script type="text/javascript" src="{{ elixir('js/scriptStartPage.js') }}"></script>
<script type="text/javascript" src="{{ elixir('js/searchbar.js') }}"></script> <script type="text/javascript" src="{{ elixir('js/searchbar.js') }}"></script>
@endsection @endsection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment