mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
Make the help icons a little not so prominent
This commit is contained in:
parent
6eef19dfc6
commit
3fc3bdd34c
@ -53,7 +53,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label for="period_type">{{ $__t('Period type') }} <i id="chore-period-type-info"
|
||||
class="fas fa-question-circle"
|
||||
class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title=""></i></label>
|
||||
<select required
|
||||
@ -159,7 +159,7 @@
|
||||
@if(GROCY_FEATURE_FLAG_CHORES_ASSIGNMENTS)
|
||||
<div class="form-group">
|
||||
<label for="assignment_type">{{ $__t('Assignment type') }} <i id="chore-assignment-type-info"
|
||||
class="fas fa-question-circle"
|
||||
class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title=""></i></label>
|
||||
<select required
|
||||
@ -210,7 +210,7 @@
|
||||
$chore->track_date_only == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="track_date_only" name="track_date_only" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="track_date_only">{{ $__t('Track date only') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('When enabled only the day of an execution is tracked, not the time') }}"></i>
|
||||
</label>
|
||||
@ -224,7 +224,7 @@
|
||||
$chore->rollover == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="rollover" name="rollover" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="rollover">{{ $__t('Due date rollover') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('When enabled the chore can never be overdue, the due date will shift forward each day when due') }}"></i>
|
||||
</label>
|
||||
|
@ -20,7 +20,7 @@
|
||||
class="form-group {{ $additionalGroupCssClasses }}">
|
||||
<label for="{{ $id }}">{{ $__t($label) }}
|
||||
@if(!empty($hint))
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -19,7 +19,7 @@
|
||||
class="form-group {{ $additionalGroupCssClasses }}">
|
||||
<label for="{{ $id }}">{{ $__t($label) }}
|
||||
@if(!empty($hint))
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -14,7 +14,7 @@
|
||||
data-prefill-by-id="{{ $prefillById }}">
|
||||
<label for="location_id">{{ $__t('Location') }}
|
||||
@if(!empty($hint))
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -23,7 +23,7 @@
|
||||
{{ $__t($label) }}
|
||||
@if(!empty($hint) || !empty($hintId))
|
||||
<i id="{{ $hintId }}"
|
||||
class="fas fa-question-circle"
|
||||
class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -22,12 +22,12 @@
|
||||
for="product_id">
|
||||
{{ $__t($label) }}
|
||||
@if(!$disallowAllProductWorkflows)
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('Type a new product name or barcode and hit TAB or ENTER to start a workflow') }}"></i>
|
||||
@endif
|
||||
@if(!empty($hint))
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -14,7 +14,7 @@
|
||||
data-prefill-by-id="{{ $prefillById }}">
|
||||
<label for="recipe_id">{{ $__t('Recipe') }}
|
||||
@if(!empty($hint))
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $hint }}"></i>
|
||||
@endif
|
||||
|
@ -116,7 +116,7 @@
|
||||
value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('The first item in this list would be picked by the default rule which is "First expiring first, then first in first out"') }}"></i>
|
||||
</label>
|
||||
|
@ -86,7 +86,7 @@
|
||||
'decimals' => $userSettings['stock_decimal_places_prices'],
|
||||
'value' => '',
|
||||
'hint' => $__t('Per stock quantity unit', GROCY_CURRENCY),
|
||||
'additionalHtmlContextHelp' => '<i class="fas fa-question-circle"
|
||||
'additionalHtmlContextHelp' => '<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="' . $__t('This will apply to added products') . '"></i>',
|
||||
'invalidFeedback' => $__t('The price cannot be lower than %s', '0'),
|
||||
|
@ -59,7 +59,7 @@
|
||||
$location->is_freezer == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="is_freezer" name="is_freezer" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="is_freezer">{{ $__t('Is freezer') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('When moving products from/to a freezer location, the products best before date is automatically adjusted according to the product settings') }}"></i>
|
||||
</label>
|
||||
|
@ -43,7 +43,7 @@
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="stay_logged_in">
|
||||
{{ $__t('Stay logged in permanently') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('When not set, you will get logged out at latest after 30 days') }}"></i>
|
||||
</label>
|
||||
|
@ -157,7 +157,7 @@
|
||||
$product->cumulate_min_stock_amount_of_sub_products == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="cumulate_min_stock_amount_of_sub_products" name="cumulate_min_stock_amount_of_sub_products" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="cumulate_min_stock_amount_of_sub_products">{{ $__t('Accumulate sub products min. stock amount') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('If enabled, the min. stock amount of sub products will be accumulated into this product, means the sub product will never be "missing", only this product') }}"></i></span>
|
||||
</label>
|
||||
@ -204,7 +204,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label for="qu_id_stock">{{ $__t('Quantity unit stock') }}</label>
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('Quantity unit stock cannot be changed after first purchase') }}"></i>
|
||||
<select required
|
||||
@ -227,7 +227,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label for="qu_id_purchase">{{ $__t('Default quantity unit purchase') }}</label>
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('This is the default quantity unit used when adding this product to the shopping list') }}"></i>
|
||||
<select required
|
||||
@ -274,7 +274,7 @@
|
||||
$product->enable_tare_weight_handling == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="enable_tare_weight_handling" name="enable_tare_weight_handling" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="enable_tare_weight_handling">{{ $__t('Enable tare weight handling') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('This is useful e.g. for flour in jars - on purchase/consume/inventory you always weigh the whole jar, the amount to be posted is then automatically calculated based on what is in stock and the tare weight defined below') }}"></i>
|
||||
</label>
|
||||
@ -304,7 +304,7 @@
|
||||
$product->not_check_stock_fulfillment_for_recipes == 1) checked @endif class="form-check-input custom-control-input" type="checkbox" id="not_check_stock_fulfillment_for_recipes" name="not_check_stock_fulfillment_for_recipes" value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="not_check_stock_fulfillment_for_recipes">{{ $__t('Disable stock fulfillment checking for this ingredient') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('This will be used as the default setting when adding this product as a recipe ingredient') }}"></i>
|
||||
</label>
|
||||
|
@ -81,7 +81,7 @@
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="not_check_shoppinglist">
|
||||
{{ $__t('Do not check against the shopping list when adding missing items to it') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('By default the amount to be added to the shopping list is "needed amount - stock amount - shopping list amount" - when this is enabled, it is only checked against the stock amount, not against what is already on the shopping list') }}"></i>
|
||||
</label>
|
||||
|
@ -65,7 +65,7 @@
|
||||
))
|
||||
|
||||
<div class="form-group">
|
||||
<label for="variable_amount">{{ $__t('Variable amount') }} <i class="fas fa-question-circle"
|
||||
<label for="variable_amount">{{ $__t('Variable amount') }} <i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('When this is not empty, it will be shown instead of the amount entered above while the amount there will still be used for stock fulfillment checking') }}"></i></label>
|
||||
<input type="text"
|
||||
@ -86,7 +86,7 @@
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="ingredient_group">{{ $__t('Group') }} <i class="fas fa-question-circle"
|
||||
<label for="ingredient_group">{{ $__t('Group') }} <i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('This will be used as a headline to group ingredients together') }}"></i></label>
|
||||
<input type="text"
|
||||
|
@ -318,7 +318,7 @@
|
||||
@if(GROCY_FEATURE_FLAG_STOCK_PRICE_TRACKING)
|
||||
<div class="col-5">
|
||||
<label>{{ $__t('Costs') }} </label>
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('Based on the prices of the default consume rule which is "First expiring first, then first in first out"') }}"></i>
|
||||
<h3 class="locale-number locale-number-currency pt-0">{{ $costs }}</h3>
|
||||
|
@ -71,7 +71,7 @@
|
||||
value="1">
|
||||
<label class="form-check-label custom-control-label"
|
||||
for="use_specific_stock_entry">{{ $__t('Use a specific stock item') }}
|
||||
<i class="fas fa-question-circle"
|
||||
<i class="fas fa-question-circle text-muted"
|
||||
data-toggle="tooltip"
|
||||
title="{{ $__t('The first item in this list would be picked by the default rule which is "First expiring first, then first in first out"') }}"></i>
|
||||
</label>
|
||||
|
Loading…
x
Reference in New Issue
Block a user