vinceliuice/Fluent-gtk-theme

Nemo missing Tabs in File > Properties Context Modal

duracell80 opened this issue · 1 comments

Looks to be when I use the fluent GTK themes that in Linux Mint in the nemo file manager the tabs that should be above the content in the file properties modal are missing.

  • To reproduce use any other theme in Linux Mint 21.1 for the "applications" (this is the GTK selection).
  • Right click a file or folder in nemo, can see tabs at the top of the modal popup that appears
  • Now switch to fluent rounded light built with the default options.
  • Do the same right click to get to file properties, tab buttons either hidden, pushed overflow or same color as background, non clickable

I will attempt to look into this myself also but putting it out there as a potential issue.

Thanks for providing such a great theme, it's freakin awesome!

Commenting out the min-width on the stackswitcher seems to resolve for me and the tab button come back into view when right clicking a folder in nemo and selecting properties.

stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button {
  min-width: 100px;
}

stackswitcher button.text-button {
  min-width: 100px;
}

This also works for overriding

stackswitcher button.text-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button{
  min-width: unset;
}