change section_width to converse_width
This commit is contained in:
parent
13fb987b04
commit
0f6907ab68
@ -133,10 +133,7 @@ nav {
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
section {width: $section_width;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
nav:hover {
|
||||
background-image: linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||
@ -1028,7 +1025,7 @@ footer {
|
||||
|
||||
.thread-wrapper.toplevel_item {
|
||||
width: 92%;
|
||||
max-width: 1024px;
|
||||
max-width: $converse_width;
|
||||
}
|
||||
|
||||
.wall-item-body {
|
||||
|
@ -18,7 +18,7 @@ function theme_content(&$a) {
|
||||
$arr['font_colour'] = get_pconfig(local_user(),'redbasic', 'font_colour' );
|
||||
$arr['radius'] = get_pconfig(local_user(),'redbasic', 'radius' );
|
||||
$arr['shadow'] = get_pconfig(local_user(),'redbasic', 'photo_shadow' );
|
||||
$arr['section_width']=get_pconfig(local_user(),"redbasic","section_width");
|
||||
$arr['converse_width']=get_pconfig(local_user(),"redbasic","converse_width");
|
||||
$arr['nav_min_opacity']=get_pconfig(local_user(),"redbasic","nav_min_opacity");
|
||||
$arr['sloppy_photos']=get_pconfig(local_user(),"redbasic","sloppy_photos");
|
||||
return redbasic_form($a, $arr);
|
||||
@ -41,7 +41,7 @@ function theme_post(&$a) {
|
||||
set_pconfig(local_user(), 'redbasic', 'font_colour', $_POST['redbasic_font_colour']);
|
||||
set_pconfig(local_user(), 'redbasic', 'radius', $_POST['redbasic_radius']);
|
||||
set_pconfig(local_user(), 'redbasic', 'photo_shadow', $_POST['redbasic_shadow']);
|
||||
set_pconfig(local_user(), 'redbasic', 'section_width', $_POST['redbasic_section_width']);
|
||||
set_pconfig(local_user(), 'redbasic', 'converse_width', $_POST['redbasic_converse_width']);
|
||||
set_pconfig(local_user(), 'redbasic', 'nav_min_opacity', $_POST['redbasic_nav_min_opacity']);
|
||||
set_pconfig(local_user(), 'redbasic', 'sloppy_photos', $_POST['redbasic_sloppy_photos']);
|
||||
}
|
||||
@ -93,7 +93,7 @@ if(feature_enabled(local_user(),'expert'))
|
||||
'$font_colour' => array('redbasic_font_colour', t('Set font-colour for posts and comments'), $arr['font_colour']),
|
||||
'$radius' => array('redbasic_radius', t('Set radius of corners'), $arr['radius']),
|
||||
'$shadow' => array('redbasic_shadow', t('Set shadow depth of photos'), $arr['shadow']),
|
||||
'$section_width' => array('redbasic_section_width',t('Set width of main section'),$arr['section_width']),
|
||||
'$converse_width' => array('redbasic_converse_width',t('Set maximum width of conversation regions'),$arr['converse_width']),
|
||||
'$nav_min_opacity' => array('redbasic_nav_min_opacity',t('Set minimum opacity of nav bar - to hide it'),$arr['nav_min_opacity']),
|
||||
'$sloppy_photos' => array('redbasic_sloppy_photos',t('Sloppy photo albums'),$arr['sloppy_photos'],t('Are you a clean desk or a messy desk person?')),
|
||||
));
|
||||
|
@ -24,7 +24,7 @@
|
||||
$font_colour = get_pconfig($uid, "redbasic", "font_colour");
|
||||
$radius = get_pconfig($uid, "redbasic", "radius");
|
||||
$shadow = get_pconfig($uid,"redbasic","photo_shadow");
|
||||
$section_width=get_pconfig($uid,"redbasic","section_width");
|
||||
$converse_width=get_pconfig($uid,"redbasic","converse_width");
|
||||
$nav_min_opacity=get_pconfig($uid,'redbasic','nav_min_opacity');
|
||||
$sloppy_photos=get_pconfig($uid,'redbasic','sloppy_photos');
|
||||
|
||||
@ -84,8 +84,8 @@
|
||||
$shadow = "0";
|
||||
if(! $active_colour)
|
||||
$active_colour = '#FFFFFF';
|
||||
if (! $section_width)
|
||||
$section_width="72%";
|
||||
if (! $converse_width)
|
||||
$converse_width="1024px";
|
||||
if($nav_min_opacity === false || $nav_min_opacity === '') {
|
||||
$nav_float_min_opacity = 1.0;
|
||||
$nav_percent_min_opacity = 100;
|
||||
@ -141,7 +141,7 @@ $options = array (
|
||||
'$radius' => $radius,
|
||||
'$shadow' => $shadow,
|
||||
'$active_colour' => $active_colour,
|
||||
'$section_width' => $section_width,
|
||||
'$converse_width' => $section_width,
|
||||
'$nav_float_min_opacity' => $nav_float_min_opacity,
|
||||
'$nav_percent_min_opacity' => $nav_percent_min_opacity
|
||||
);
|
||||
|
Reference in New Issue
Block a user