diff --git a/htdocs/admin/modules.php b/htdocs/admin/modules.php
index 9074f3d7984..b871096e148 100644
--- a/htdocs/admin/modules.php
+++ b/htdocs/admin/modules.php
@@ -1297,8 +1297,8 @@ if ($mode == 'marketplace') {
$url = 'https://www.dolistore.com';
- // Marketplace
- print '
'."\n";
+ // Source Marketplace DoliStore
+ print '
'."\n";
print ' | ';
print ''.$langs->trans("DoliStoreDesc").' ';
print img_picto('', 'url', 'class="pictofixedwidth"').''.$url.' | ';
@@ -1330,8 +1330,8 @@ if ($mode == 'marketplace') {
$url = 'https://github.com/Dolibarr/dolibarr-community-modules';
- // Community
- print '
'."\n";
+ // Source Community github
+ print '
'."\n";
print ' | ';
print ''.$langs->trans("CommunityModulesDesc").' ';
print img_picto('', 'url', 'class="pictofixedwidth"').''.$url.' | ';
@@ -1409,7 +1409,7 @@ if ($mode == 'marketplace') {
print '';
?>
-
';
- print ''."\n";
+ print '
'."\n";
print '| ';
print '';
print ' | ';
@@ -1630,7 +1630,7 @@ if ($mode == 'develop') {
print '';
print '
';
- print ''."\n";
+ print '
'."\n";
$url = 'https://partners.dolibarr.org';
print '';
print' ';
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index afcd9aa6fa8..8f18fc91626 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -330,6 +330,9 @@ input {
font-size: unset;
box-sizing: border-box;
}
+input[type="text"] {
+ height: 28px;
+}
select.vmenusearchselectcombo {
background-color: unset;
}
@@ -7388,19 +7391,20 @@ input.select2-input {
border-top: 1px solid #ccc;
border-bottom: solid 1px var(--inputbordercolor);
}
-.select2-container--default .select2-selection--single
-{
+.select2-container--default .select2-selection--single {
outline: none;
border-top: none;
border-left: none;
border-right: none;
+ border-radius: 3px;
+
+ border-radius: 5px;
border: solid 1px var(--inputbordercolor);
box-shadow: none !important;
- border-radius: 3px;
}
.select2-container--focus .select2-container--default .select2-selection--single {
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 5aaa8af711d..5d0aa12ed56 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -644,9 +644,12 @@ span.massactionselect, input.inputsearch_dropdownselectedfields {
input {
line-height: 1.3em;
- padding: 5px;
+ padding: 4px;
padding-left: 5px;
}
+input[type="text"] {
+ height: 1.3em;
+}
select {
padding-top: 4px;
padding-right: 4px;
@@ -7229,15 +7232,20 @@ input.select2-input {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
-.select2-container--default .select2-selection--single
-{
+.select2-container--default .select2-selection--single {
outline: none;
+
border-top: none;
border-left: none;
border-right: none;
- border-bottom: solid 1px rgba(0,0,0,.2);
+ border-radius: 3px;
+
+ border-radius: 5px;
+
+
+ border: solid 1px var(--inputbordercolor);
+
box-shadow: none !important;
- border-radius: 0 !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
border-top: none;
|