Skip to main content
Topic: split topic: line between posts (Read 3949 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

split topic: line between posts

If you split a topic and choose the posts which should be moved to the new topic, there's a small line between title and message of each post, but not between the posts! In my opinion it would be much better to show the different posts, splitted by a line, instead of split post header and post message, but not the posts.  ;)

And why are there two different arrows?  :-\

Edit: It seems the different arrows show if a post is moved or not. Hm... Don't need that, I see at clearly if the moved post is on the left (not moved) or the right (moved) side.  :D

Re: split topic: line between posts

Reply #1

Quote from: Jorin – And why are there two different arrows?  :-\

Edit: It seems the different arrows show if a post is moved or not. Hm... Don't need that, I see at clearly if the moved post is on the left (not moved) or the right (moved) side.  :D
I guess, you are not using Firefox as you default browser?
I ask, because I can not see arrows at all with Firefox!
With Chrome they are visible.

Re: split topic: line between posts

Reply #2

No, most of the time I use Chrome.

How do you split at all if you don't see the arrows you have to click?  :o  Always changing the browser?

It seems you are not alone:

https://translate.google.de/translate?sl=de&tl=en&js=y&prev=_t&hl=de&ie=UTF-8&u=http%3A%2F%2Fsupport.elkarte-hilfe.de%2Findex.php%2Ftopic%2C258.0.html&edit-text=

@Spuds: Here are some problems with Firefox/Opera and ElkArte. Chrome works fine though.

Re: split topic: line between posts

Reply #3

Have not looked at the arrows yet ... 1.0.10 yes ??

One of the problems Ruth may be having is the code css was changed in 1.0.10, if she is using a custom theme then its index.css needs to be updated.  Open that file , find the .bbc_code section, then delte the two - lines and add the two + lines
Code: [Select]
 .bbc_code {
- overflow: auto;
- height: 20em;
+ height: auto;
+ max-height: 20em;

Re: split topic: line between posts

Reply #4

Quote from: Jorin – If you split a topic and choose the posts which should be moved to the new topic, there's a small line between title and message of each post, but not between the posts! In my opinion it would be much better to show the different posts, splitted by a line, instead of split post header and post message, but not the posts.  ;)
That would be better yes.
Quote from: Jorin –
And why are there two different arrows?  :-\
presentational bug, they should have been the same but the JS was not updated to use the FA arrow.
Quote from: Jorin –
Edit: It seems the different arrows show if a post is moved or not. Hm... Don't need that, I see at clearly if the moved post is on the left (not moved) or the right (moved) side.  :D
Selecting the arrow allows you to move the post from side to side ... if  there are no arrows and you select the wrong message how would you move it back other than start all over?  And no I have no intention of adding D&D to that interface, but someone else could.

Re: split topic: line between posts

Reply #5

I agree that we need ONE arrow to move the posts to the right and back to the left. But today there are two different arrows. No need for that, one is more than enough. I think.

Re: split topic: line between posts

Reply #6

nods and points finger at emanuele  :P

Re: split topic: line between posts

Reply #7

for 1.0.10 open topic.js
Code: (find) [Select]
							'<img src="' + images_url + '/split_' + (curSection === "selected" ? "de" : "") + 'select.png" alt="' + (curSection === "selected" ? "&lt;-" : "-&gt;") + '" />' +

Code: (replace) [Select]
							'<i class="fa fa-2x fa-arrow-circle-o-' + (curSection === "selected" ? "left" : "right") + '" alt="' + (curSection === "selected" ? "&lt;-" : "-&gt;") + '"></i>' +
now your arrows should be the same

Re: split topic: line between posts

Reply #8

QuoteI guess, you are not using Firefox as you default browser?
I ask, because I can not see arrows at all with Firefox!
With Chrome they are visible.
For 1.1 ... this problem is with the SVG syntax in the css files.  

You will need to edit both index_besocial.css and index_light.css In those files find the definition for .i-chevron-circle-right::before { and .i-chevron-circle-left::before {

In those two areas you need to change
Code: [Select]
fill='#000000'
to
Code: [Select]
fill='black'
  One uses #000 instead of #000000 just change both to black

Re: split topic: line between posts

Reply #9

Quote from: Jorin – No need for that, one is more than enough. I think.
The more, the better!! XD
Bugs creator.
Features destroyer.
Template killer.

Re: split topic: line between posts

Reply #10

As with the bugs!  :D

 

Re: split topic: line between posts

Reply #11

Quote from: Jorin – No, most of the time I use Chrome.
How do you split at all if you don't see the arrows you have to click?  :o  Always changing the browser?
[...]
I was asking my self, how to the h... can I bring the messages to the other side?!? I found somewhere a screenshot then from the split screen and saw the arrows. Then I found that the "buttons / links" are there, clickable but rather invisible.
To further investigate this, I tried it also with chrome and saw, there are arrows visible!

Thanks @Spuds for the quick fix of the issue, I will change the CSS in my installation until next release.