Prelim: Hide user pic by default

This commit is contained in:
Rory Fewell
2022-09-08 19:31:34 +01:00
committed by Rory Fewell
parent 8851447a67
commit 32ba129b3c
3 changed files with 12 additions and 8 deletions

View File

@@ -75,7 +75,6 @@ $start_menu_popup_menu_separator_styles: ();
// START MENU HORIZONTAL USER PANE
//
$start_menu_horz_userpane_styles: ();
$start_menu_userpic_box_styles: ();
$start_menu_userpic_styles: ();
$start_menu_horz_username_styles: ();

View File

@@ -146,20 +146,23 @@ window.csd.xp-start-menu // Specificity hack -_-
box
{
@include __wintc_apply_props($start_menu_userpic_box_styles);
@include __wintc_apply_props($start_menu_userpic_styles);
//border-image: url("../Resources/gtk-3.0/user_tile_border.png") 2 5 5 2 stretch;
//border-style: solid;
//border-width: 2px 5px 5px 2px;
//margin: 2px 0px 2px 1px;
//background-color: #CCD6EB;
//box-shadow: none;
image
@if not $start_menu_display_userpic
{
@include __wintc_apply_props($start_menu_userpic_styles);
//background: #CCD6EB;
//box-shadow: none;
//margin: 0px;
box-shadow: 0px;
margin: 0px;
min-height: 0px;
min-width: 0px;
opacity: 0.0; // Also set the opacity because the alloc'd size is
// not quite zero
}
}

View File

@@ -13,6 +13,8 @@ $start_text_case: upper !default;
$start_menu_allprograms_height: 30px !default;
$start_menu_allprograms_arrow_width: 4px !default;
$start_menu_display_userpic: false !default;
$start_menu_programs_column_width: 193px !default;
$start_menu_places_column_width: 187px !default;