I ported the latest version.VOLKERMORD wrote:It was a security bug in this mod,not sure it was fix.
I speak privately with primehalo (I do not remember exactly when), and security bug is solved.VOLKERMORD wrote:It was a security bug in this mod,not sure it was fix.
Yep that i was tallk about,I'm glad that has been fixRaul [ThE KuKa] wrote:I speak privately with primehalo (I do not remember exactly when), and security bug is solved.VOLKERMORD wrote:It was a security bug in this mod,not sure it was fix.
Code: Select all
<?php
/**
*
* prime_quick_style [Spanish]
*
* @package language
* @copyright (c) 2008-2014 Ken F. Innes IV
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'PRIME_QUICK_STYLE' => 'Estilo',
));
?>
Are your styles really separate styles (as in separate entries in the DB)? Because a style switcher is somewhat different from a color switcher (which just loads a different .CSS file). Secondly, I'm not sure how we would represent these styles. phpBB doesn't know what the dominant color of a style is. So I'd have to come up with some smart way to do this.Mess wrote:I have a feature request.
Would it be possible to include an option for a simple style changer, for use when its only colors which change? And use icons to change theme instead of a dropdown? I'm not a huge fan of the current dropdown, but I really appreciate the functionality.
I'm only considering css changes, so no. Not a complete style change.PayBas wrote:Are your styles really separate styles (as in separate entries in the DB)? Secondly, I'm not sure how we would represent these styles. phpBB doesn't know what the dominant color of a style is. So I'd have to come up with some smart way to do this.Mess wrote:I have a feature request.
Would it be possible to include an option for a simple style changer, for use when its only colors which change? And use icons to change theme instead of a dropdown? I'm not a huge fan of the current dropdown, but I really appreciate the functionality.
Color switchers are a function of the styles themselves. So it would be possible to have a style switcher and a color switcher. But that's up to the style authors, not me .Mess wrote:I'm only considering css changes, so no. Not a complete style change.PayBas wrote:Are your styles really separate styles (as in separate entries in the DB)? Secondly, I'm not sure how we would represent these styles. phpBB doesn't know what the dominant color of a style is. So I'd have to come up with some smart way to do this.Mess wrote:I have a feature request.
Would it be possible to include an option for a simple style changer, for use when its only colors which change? And use icons to change theme instead of a dropdown? I'm not a huge fan of the current dropdown, but I really appreciate the functionality.
I see where you are going. What I'm requesting is not really related to this mod, as its different functionality.
And starting to make ACP options to define icons and what not, is probably an entirely different ext.
Sorry, I didn't think it through.
Code: Select all
select {
background: #FAFAFA url("./images/icons/select.png") no-repeat 100% center;
border-color: #11A3EA;
color: #28313F;
-webkit-appearance: none; /* Removes default chrome and safari style */
-moz-appearance: none; /* Removes Default Firefox style */
text-indent: 0.01px; /* Removes default arrow from firefox */
text-overflow: ""; /* Removes default arrow from firefox */
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
select {
padding-right: 10px;
}
}