Search found 12 matches

by cabot
Mon Oct 28, 2024 11:36 am
Forum: [3.x] Discussion
Topic: Issue with installing child styles when parent style name is modified in ACP
Replies: 3
Views: 606

Issue with installing child styles when parent style name is modified in ACP

Hello,

Currently, if the name of a style is changed in the ACP, it is not possible to install the child styles that depend on it. This is particularly problematic for prosilver, the default, non-removable style, which is the parent/ancestor of the majority of inherited styles.

Problem Description ...
by cabot
Wed Aug 21, 2024 5:35 pm
Forum: [4.x] Style Development
Topic: New v4 style proposals?
Replies: 11
Views: 1916

Re: New v4 style proposals?

I've now reached the point where the bidi.css stylesheet can be summed up in this single… empty rule. ^^

Code: Select all

.rtl {
}
All this while having perfect symmetry between the ltr and rtl display without having to overload the déclarations.
by cabot
Tue Aug 20, 2024 8:54 am
Forum: [4.x] Style Development
Topic: New v4 style proposals?
Replies: 11
Views: 1916

Re: New v4 style proposals?

If there is to be a new style, well, that's fine, but the new future style is a hypothesis as things stand, if not wishful thinking.

In my humble opinion, in order to support the continuous integration of phpBB, it seems necessary to do the same with prosilver, failing a new style. This means ...
by cabot
Fri Aug 16, 2024 3:03 pm
Forum: [4.x] Style Development
Topic: New v4 style proposals?
Replies: 11
Views: 1916

Re: New v4 style proposals?

Hello,

I've refactored the CSS for the horizontal lists using modern properties (flex, margin-inline, css var), which allowed me to use the natural flow of the document and to simplify the declarations as much as possible while maintaining the responsive and rtl display.

The screenshots only show ...
by cabot
Sat Nov 05, 2016 6:40 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: PHPBB3-14844 - BBcode on style inherit from prosilver

but again this is an error with bbcode.php which does need work re-factoring
I never said the opposite...

And please note that we have differents points of views and that yours is not better than another, you are free to interpret the W3C recommendations to match your decision as I am free to ...
by cabot
Sat Nov 05, 2016 8:29 am
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: PHPBB3-14844 - BBcode on style inherit from prosilver

Not only outside of a post but everywhere those BBcodes are used, even in a post.
Except for a style which inherit the parent bbcode.html file.

This is bold text in span as declared in bbcode.php, not text in strong tag as it would be according to bbcode.html.
by cabot
Thu Nov 03, 2016 6:37 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: PHPBB3-14844 - BBcode on style inherit from prosilver

All that is important is usually displayed in bold and/or underlined but all that is in bold is not systematically important. You can use bold to highlight a word but that's not why it should be considered as really important, especially for screen readers (accessibility) and search engines (SEO ...
by cabot
Tue Nov 01, 2016 12:53 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: BBcode and forum description on style inherit from prosilver

Perhaps would it related to template bietfield?
I ask because I do not understand English well enough so I have not been able to understand the operation described in the article.
by cabot
Mon Oct 31, 2016 7:22 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: BBcode and forum description on style inherit from prosilver

The best practice should be the use of the CSS (as it is in bbcode.php) in order not to depend of the tag display rendering.

And it would be possible, for the next update 3.1, to modify prosilver file as you said in your first post :
<!-- BEGIN b_open --><span style="font-weight: bold;"><!-- END b ...
by cabot
Mon Oct 31, 2016 6:03 pm
Forum: [3.x] Tickets Discussion
Topic: PHPBB3-14844 - BBcode on style inherit from prosilver
Replies: 38
Views: 114709

Re: BBcode and forum description on style inherit from prosilver

I think we do not understand. :oops:

BBCode b in bbcode.php :
'b_open' => '<span style="font-weight: bold">',
'b_close' => '</span>',
BBCode b in bbcode.html :
<!-- BEGIN b_open --><strong><!-- END b_open -->
<!-- BEGIN b_close --></strong><!-- END b_close -->
Either it is considered that the ...