Skip to content
Snippets Groups Projects
Commit fb9e49a6 authored by Davide's avatar Davide
Browse files

code block for search string, new less/css for plugin

parent 0353b1bc
No related branches found
No related tags found
3 merge requests!1712Development,!1705Development,!1688Resolve "dynamic instructions for adding metager as default search engine"
...@@ -21,4 +21,6 @@ npm-debug.log ...@@ -21,4 +21,6 @@ npm-debug.log
/.project /.project
composer.lock composer.lock
local.log local.log
\ No newline at end of file
browserstack.err
\ No newline at end of file
...@@ -87,7 +87,7 @@ return [ ...@@ -87,7 +87,7 @@ return [
'mobileff.2' => 'Wählen Sie den Menüpunkt Einstellungen.', 'mobileff.2' => 'Wählen Sie den Menüpunkt Einstellungen.',
'mobileff.3' => 'In dem dann erscheinenden Menü wählen Sie in der Kategorie "Allgemein" den Menüpunkt "Suchen".', 'mobileff.3' => 'In dem dann erscheinenden Menü wählen Sie in der Kategorie "Allgemein" den Menüpunkt "Suchen".',
'mobileff.4' => 'Tippen Sie auf "+ Suchmaschine hinzufügen".', 'mobileff.4' => 'Tippen Sie auf "+ Suchmaschine hinzufügen".',
'mobileff.5' => 'Wählen Sie nun "Andere" aus. Tragen Sie darunter den Namen (MetaGer) und den Such-String ein (https://metager.de/meta/meta.ger3?eingabe=%s).', 'mobileff.5' => 'Wählen Sie "Andere" aus und tragen darunter den Namen (MetaGer) und den Such-String ein.',
'mobilechr.1' => 'Tippen Sie in Ihrem Browser oben rechts auf "<i class="fas fa-ellipsis-v"></i>" um das Browsermenü zu öffnen.', 'mobilechr.1' => 'Tippen Sie in Ihrem Browser oben rechts auf "<i class="fas fa-ellipsis-v"></i>" um das Browsermenü zu öffnen.',
'mobilechr.2' => 'Wählen Sie den Menüpunkt Einstellungen.', 'mobilechr.2' => 'Wählen Sie den Menüpunkt Einstellungen.',
......
#search{
color: orangered;
background-color:white;
}
\ No newline at end of file
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
@foreach($css as $cssFile) @foreach($css as $cssFile)
<link href="{{ $cssFile }}" rel="stylesheet" /> <link href="{{ $cssFile }}" rel="stylesheet" />
@endforeach @endforeach
@else @endif
@endif @endif
</head> </head>
<body> <body>
......
...@@ -183,6 +183,7 @@ ...@@ -183,6 +183,7 @@
<li>{{ trans('plugin-page.mobileff.3') }}</li> <li>{{ trans('plugin-page.mobileff.3') }}</li>
<li>{{ trans('plugin-page.mobileff.4') }}</li> <li>{{ trans('plugin-page.mobileff.4') }}</li>
<li>{{ trans('plugin-page.mobileff.5') }}</li> <li>{{ trans('plugin-page.mobileff.5') }}</li>
<code id=search>"https://metager.de/meta/meta.ger3?eingabe=%s"</code>
</ol> </ol>
</div> </div>
@elseif ($browser === 'Chrome') @elseif ($browser === 'Chrome')
......
...@@ -167,7 +167,8 @@ Route::group( ...@@ -167,7 +167,8 @@ Route::group(
->with('navbarFocus', 'dienste') ->with('navbarFocus', 'dienste')
->with('agent', new Agent()) ->with('agent', new Agent())
->with('browser', (new Agent())->browser()) ->with('browser', (new Agent())->browser())
->with('request', $this->input('request', 'GET')); ->with('request', $this->input('request', 'GET'))
->with('css', [mix('/css/plugin.css')]);
}); });
Route::group(['middleware' => ['auth.basic'], 'prefix' => 'admin'], function () { Route::group(['middleware' => ['auth.basic'], 'prefix' => 'admin'], function () {
......
...@@ -46,6 +46,9 @@ mix ...@@ -46,6 +46,9 @@ mix
.less("resources/less/utility.less", "public/css/utility.css", { .less("resources/less/utility.less", "public/css/utility.css", {
strictMath: true strictMath: true
}) })
.less("resources/less/metager/pages/plugin.less", "public/css/plugin.css",{
strictMath: true
})
// js // js
.babel( .babel(
[ [
......
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