Have found a conflict with an extension - prosilver French edition
Re: Have found a conflict with an extension
- Attachments
-
- tatiana5.zip
- (244.3 KiB) Downloaded 21 times
-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am
-
- Jr. Style Validator
- Posts: 1033
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Have found a conflict with an extension
Great, thanks. Not able to check that just yet but I'm sure it'll do the job great.cabot wrote:Check

-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am
Re: Have found a conflict with an extension
Just have checked it now and it does work great, thanks! 

-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am
-
- Jr. Style Validator
- Posts: 1033
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Have found a conflict with an extension
Hi cabot,
How can I make the color change between light and dark for topic example?
https://www.phpbb.com/customise/db/exte ... icpreview/
How can I make the color change between light and dark for topic example?
https://www.phpbb.com/customise/db/exte ... icpreview/
-
- Registered User
- Posts: 737
- Joined: Tue Mar 22, 2011 9:53 pm
-
- Jr. Style Validator
- Posts: 1033
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Have found a conflict with an extension
Thank you very much carbot! I took a look at your changes. Is it always that file that you have to adjust in terms of CSS?
There are some extensions (including cbb-chat & cbb-reactions) that only change between light and dark when you right the page). But somehow I also want to be able to do it myself, without always asking here, if I know what to look for.
There are some extensions (including cbb-chat & cbb-reactions) that only change between light and dark when you right the page). But somehow I also want to be able to do it myself, without always asking here, if I know what to look for.
-
- Registered User
- Posts: 737
- Joined: Tue Mar 22, 2011 9:53 pm
Re: Have found a conflict with an extension
The folder contained in the archive only concerns the Topic Preview extension.
But you can also create a custom style sheet containing the CSS modifications for the extensions you use.
viewtopic.php?p=15933066#p15933066
But you can also create a custom style sheet containing the CSS modifications for the extensions you use.
viewtopic.php?p=15933066#p15933066
-
- Jr. Style Validator
- Posts: 1033
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Have found a conflict with an extension
Hi again. That last file you posted for benny came in very handy for me too so thanks for that. Here's another extension there's a problem with.
https://www.phpbb.com/customise/db/exte ... te_bbcode/
Lights on,
Lights off,
https://www.phpbb.com/customise/db/exte ... te_bbcode/
Lights on,
Lights off,
-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am
Re: Have found a conflict with an extension
Hello,
You can add the folder contained in this archive to the
Or add this to your custom stylesheet if you have one:
You can add the folder contained in this archive to the
styles/
directory of the extension:
Or add this to your custom stylesheet if you have one:
Code: Select all
html,
[data-theme=light] {
--info-note-shadow: var(--color05);
}
@media (prefers-color-scheme:dark) {
html {
--info-note-shadow: var(--color02);
}
}
[data-theme=dark] {
--info-note-shadow: var(--color02);
}
.prosilver_fr #info_note table {
background-color: var(--color02);
}
.prosilver_fr #info_note {
box-shadow: 1px 2px 4px 1px var(--info-note-shadow);
}
.prosilver_fr .prime_bbcode_note_spur,
.prosilver_fr #note-close {
background: none;
}
.prime_bbcode_note_spur::after,
#note-close::after {
display: inline-block;
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-size: 1em;
line-height: 1;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: inherit;
}
.prime_bbcode_note_spur::after {
content: '\f05a';
margin-left: 0.15em;
}
#note-close::after {
content: '\f057';
font-size: 1.2em;
}
-
- Jr. Style Validator
- Posts: 1033
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Have found a conflict with an extension
I don't have a custom stylesheet but that zip file worked great, thanks!cabot wrote:Hello,
You can add the folder contained in this archive to thestyles/
directory of the extension:

-
- Registered User
- Posts: 1383
- Joined: Thu Sep 25, 2014 10:36 am