This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, master has been updated
via 1642dbe46b5d489c91b482edbb93f744a994ba97 (commit)
via e979a521747f56e372d299512c6cccc2d2bf3a13 (commit)
via 65be85c474204cd0b2129878bae1cc3cb8e0192e (commit)
via c4ce65e5d21abb7c1ceaeeb8b8d433b5ef9ce3a3 (commit)
via 34540a10444617254417ef96c30d4d3d44819836 (commit)
from d85bf8d3cc76b8716ac95016547422823089c0c5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=1642dbe46b5d489c91b482edbb93f744a994ba97
commit 1642dbe46b5d489c91b482edbb93f744a994ba97
Author: Franck Villaume <[email protected]>
Date: Wed Mar 24 07:54:37 2021 +0100
sync CHANGES
diff --git a/src/CHANGES b/src/CHANGES
index e4cebc1..bb57ad7 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -3,6 +3,7 @@ FusionForge X.y:
* Diary & Notes: support markdown (TrivialDev)
* Diary & Notes: support crossref (TrivialDev)
* Forum: pinning support (DGFiP/Guy Morin)
+* Forum: fix behavior [#897] (DGFiP/Guy Morin)
* Plugin Hudson/Jenkins: display link in public area widget [#889] (TrivialDev)
* Theme: new funky-guy, support responsive menu (DGFiP/Guy Morin)
* User: followers/following mechanism (TrivialDev)
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=e979a521747f56e372d299512c6cccc2d2bf3a13
commit e979a521747f56e372d299512c6cccc2d2bf3a13
Merge: d85bf8d 65be85c
Author: Franck Villaume <[email protected]>
Date: Wed Mar 24 07:52:23 2021 +0100
Merge remote-tracking branch 'gmorin/master'
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=65be85c474204cd0b2129878bae1cc3cb8e0192e
commit 65be85c474204cd0b2129878bae1cc3cb8e0192e
Author: Guy Morin <guy@guy-90X3A>
Date: Tue Mar 23 22:05:42 2021 +0100
Funky theme : menu adapts with long texts
diff --git a/src/www/themes/funky/css/theme.css
b/src/www/themes/funky/css/theme.css
index 96e8599..0b08ef3 100644
--- a/src/www/themes/funky/css/theme.css
+++ b/src/www/themes/funky/css/theme.css
@@ -286,7 +286,6 @@ hr {
.tabGenerator .tg-middle span span {
display: block;
text-align:center;
- vertical-align: middle;
height: 20px;
border-bottom: 0;
border-top-left-radius: 6px;
@@ -298,6 +297,8 @@ hr {
margin: 0 2px;
transition-property: background-color, color, height, shadow;
transition-duration: 0.3s;
+ padding: 0 4px;
+ white-space: nowrap;
}
.tabGenerator .tg-middle span span:hover {
@@ -319,14 +320,14 @@ hr {
}
.tabGenerator .tg-right span.selected span {
- display:none;
+ display: none;
}
/*
innertabs
*/
.innertabs .tabGenerator {
- font-weight:bold;
+ font-weight: bold;
border-collapse: collapse;
height: 20px;
}
@@ -339,6 +340,7 @@ hr {
padding:0;
margin: 0;
vertical-align: middle;
+ border-right: 1px solid white;
}
.innertabs .tabGenerator .tg-middle {
@@ -347,30 +349,50 @@ hr {
}
.innertabs .tabGenerator .tg-middle span {
+ margin: 0;
+ width: 100%;
+ height: 100%;
+ display: block;
background-color: #F7F7F7;
- margin-top: 0;
+ color:black;
+ text-shadow: 1px 1px white;
+ line-height: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: normal;
+ align-items: center;
+ text-align: center;
+}
+
+.innertabs .tabGenerator .tg-middle span:hover {
+ background-color: white;
+}
+.innertabs .tabGenerator .tg-middle span.selected {
+ background-color: white;
+ text-shadow: 1px 1px white;
}
.innertabs .tabGenerator .tg-middle span span {
display: block;
text-align:center;
- vertical-align: middle;
- height: 20px;
+ height: auto;
margin: 0;
border-bottom: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
- background-color: #F7F7F7;
- line-height: 17px;
+ background: none;
color: black;
- text-shadow: 1px 1px white;
- border-left: 1px solid white;
- border-right: 1px solid white;
+ border-left: none;
+ border-right: none;
}
+.innertabs .tabGenerator .tg-middle span:hover span,
.innertabs .tabGenerator .tg-middle span span:hover {
display: block;
- background-color: white;
+ color: black;
+ background: none;
+ text-shadow: none;
+ height: auto;
}
.innertabs .tabGenerator .tg-middle span span a {
@@ -378,6 +400,41 @@ hr {
color: black;
}
+.innertabs .tabGenerator{
+ height: 100%;
+}
+.innertabs .tabGenerator tr,
+.innertabs .tabGenerator .tg-middle,
+.innertabs .tabGenerator .tg-middle a,
+.innertabs .tabGenerator .tg-middle span {
+ display:flex;
+ flex-direction:row;
+ width:100%;
+ transition-property: background;
+ transition-duration: 0.3s;
+}
+.innertabs .tabGenerator .tg-middle:first-child a {
+ border-left: 1px solid white;
+}
+.innertabs .tabGenerator td a {
+ width: 100%;
+}
+.innertabs .tabGenerator .tg-middle span span {
+ display: inline;
+ vertical-align: middle;
+}
+.innertabs .tabGenerator td a:hover {
+ background: white;
+ color: black;
+ height: auto;
+}
+.innertabs .tabGenerator .tg-middle span.selected span {
+ background: none;
+ text-shadow: 1px 1px white;
+ color: black;
+ height: auto;
+}
+
.innertabs .tabGenerator .tg-middle span.selected span {
background-color: white;
text-shadow: 1px 1px white;
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=c4ce65e5d21abb7c1ceaeeb8b8d433b5ef9ce3a3
commit c4ce65e5d21abb7c1ceaeeb8b8d433b5ef9ce3a3
Author: Guy Morin <guy@guy-90X3A>
Date: Tue Mar 23 21:45:08 2021 +0100
Funky theme : text-shadow should be blue in p.information
diff --git a/src/www/themes/funky/css/theme.css
b/src/www/themes/funky/css/theme.css
index 53e70b5..96e8599 100644
--- a/src/www/themes/funky/css/theme.css
+++ b/src/www/themes/funky/css/theme.css
@@ -659,7 +659,7 @@ p.information {
border: 1px solid #3a5fa5;
padding: 7px;
border-radius: 6px;
- text-shadow: 1px 1px #DFF59f;
+ text-shadow: 1px 1px #bcf;
text-align: left;
font-weight: normal;
font-size: small;
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=34540a10444617254417ef96c30d4d3d44819836
commit 34540a10444617254417ef96c30d4d3d44819836
Author: Guy Morin <guy@guy-90X3A>
Date: Tue Mar 23 11:13:07 2021 +0100
[#897] Fixed by removing the "start new discussion" link
diff --git a/src/common/forum/ForumHTML.class.php
b/src/common/forum/ForumHTML.class.php
index cdad1fe..3d4996d 100644
--- a/src/common/forum/ForumHTML.class.php
+++ b/src/common/forum/ForumHTML.class.php
@@ -167,7 +167,7 @@ function forum_header($params = array()) {
echo
util_make_link('/forum/monitor.php?forum_id='.$forum_id.'&group_id='.$group_id.'&start=1',
html_image('ic/mail16w.png').' '._('Monitor Forum')).' | ';
}
- if ($f && $forum_id) {
+ if ($f && $forum_id && forge_check_perm ('forum', $forum_id, 'post')) {
echo util_make_link
('/forum/new.php?forum_id='.$forum_id.'&group_id='.$group_id,
html_image('ic/write16w.png', 20, 20,
array('alt'=>_('Start New Thread'))) .' '.
_('Start New Thread'));
-----------------------------------------------------------------------
Summary of changes:
src/CHANGES | 1 +
src/common/forum/ForumHTML.class.php | 2 +-
src/www/themes/funky/css/theme.css | 83 ++++++++++++++++++++++++++++++------
3 files changed, 72 insertions(+), 14 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits