CSS
This commit is contained in:
parent
a9440c934d
commit
0033a1a02a
@ -113,7 +113,7 @@ class FormAdmin
|
|||||||
$out .= '>'.$langs->trans("AutoDetectLang").'</option>';
|
$out .= '>'.$langs->trans("AutoDetectLang").'</option>';
|
||||||
}
|
}
|
||||||
|
|
||||||
asort($langs_available);
|
asort($langs_available); // array('XX' => 'Language (Country)', ...)
|
||||||
|
|
||||||
foreach ($langs_available as $key => $value) {
|
foreach ($langs_available as $key => $value) {
|
||||||
$valuetoshow = $value;
|
$valuetoshow = $value;
|
||||||
|
|||||||
@ -936,7 +936,7 @@ if (!empty($arrayfields['c.assigned']['checked'])) {
|
|||||||
// Opp status
|
// Opp status
|
||||||
if (!empty($arrayfields['p.fk_opp_status']['checked'])) {
|
if (!empty($arrayfields['p.fk_opp_status']['checked'])) {
|
||||||
print '<td class="liste_titre nowrap center">';
|
print '<td class="liste_titre nowrap center">';
|
||||||
print $formproject->selectOpportunityStatus('search_opp_status', $search_opp_status, 1, 0, 1, 0, 'maxwidth100', 1, 0);
|
print $formproject->selectOpportunityStatus('search_opp_status', $search_opp_status, 1, 0, 1, 0, 'maxwidth100 nowrapoption', 1, 0);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
if (!empty($arrayfields['p.opp_amount']['checked'])) {
|
if (!empty($arrayfields['p.opp_amount']['checked'])) {
|
||||||
|
|||||||
@ -285,7 +285,7 @@ div.tabBar textarea:focus {
|
|||||||
border: 1px solid #aaa !important;
|
border: 1px solid #aaa !important;
|
||||||
}
|
}
|
||||||
input:focus:not(.button):not(.select2-search__field):not(#top-bookmark-search-input):not(.search_component_input):not(.input-search-takepos),
|
input:focus:not(.button):not(.select2-search__field):not(#top-bookmark-search-input):not(.search_component_input):not(.input-search-takepos),
|
||||||
select:focus, .select2-container--open .select2-selection--single {
|
select:focus, .select2-container--open [aria-expanded="false"].select2-selection--single {
|
||||||
/* div.tabBar input:focus, div.tabBar select:focus { */
|
/* div.tabBar input:focus, div.tabBar select:focus { */
|
||||||
border-bottom: 1px solid #666 !important;
|
border-bottom: 1px solid #666 !important;
|
||||||
border-bottom-left-radius: 0 !important;
|
border-bottom-left-radius: 0 !important;
|
||||||
@ -6028,7 +6028,7 @@ span.select2.select2-container.select2-container--default {
|
|||||||
}
|
}
|
||||||
span.select2.select2-container.select2-container--default {
|
span.select2.select2-container.select2-container--default {
|
||||||
<?php if (empty($conf->global->THEME_SHOW_BORDER_ON_INPUT)) { ?>
|
<?php if (empty($conf->global->THEME_SHOW_BORDER_ON_INPUT)) { ?>
|
||||||
//border-bottom: solid 1px var(--inputbordercolor);
|
/*border-bottom: solid 1px var(--inputbordercolor);*/
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6347,6 +6347,17 @@ ul.select2-results__options li {
|
|||||||
font-size: 0.95em;
|
font-size: 0.95em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 767px)
|
||||||
|
{
|
||||||
|
.select2-container.select2-container--open .select2-dropdown.ui-dialog {
|
||||||
|
min-width: 200px !important;
|
||||||
|
}
|
||||||
|
.select2-container--open .select2-dropdown--below {
|
||||||
|
border-top: 1px solid var(--inputbordercolor);
|
||||||
|
/* border-top: 1px solid #aaaaaa; */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* For categories */
|
/* For categories */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user