different hover and selected states for a spry menu bar - spry

anyone out there know how to make different hover and selected states for tabs within the same spry tabbed menu?
im having a lot of trouble....

if you mean their styles you can simply edit its related CSS file and make any style you need

Related

Hiding the tabs appearance of intellij idea 2018

I am trying to hide the tabs screen (which i placed on the left, see screenshot 2), just as other screen parts kan be hidden. I am using intellij idea 2018. I have the tabs appearance set to the left, see screenshot 2. I can't find any options to automatically hide this left screen, just as is possible with the projects view (screenshot 3).
Any idea's?
1) My main development view
[2) The tabs options
3) Projects view
You can set placement to "none" if you want to hide it completely. I don't think there is a way to temporarily hide them.

UWP menu without hamburger

This is my first UWP app
I have a SplitView. On the right side I want a menu. On the left side I want to be able to load different pages into it(frame)
The only menu I can find have that hamburger in it(AppBarButton).
This app will only run on windows desktop machines so I do not have need of the hamburger and it will be rather useless.
I have spent the last two nights looking for options but all I get are hamburgers.
Can someone please point me to an example of a no hamburger menu or a tutorial of some kind?
I am sure I can figure it out once I know what elements to use, I just need a push in the correct direction.
What you need is a base page (let's call it "HostView") this will simply have a SplitView control with the DisplayMode set to Inline and the IsPaneOpen set to true. You can also set the side panel width by using the OpenPaneLength property.
Your menu buttons go into the SplitView.Pane and you place a Frame control in the SplitView.Content. This frame will navigate to the correct page when a menu item is selected.
If you set the properties as I said above then you will not need a Hamburger menu to open the side panel at all. However, please consider the fact that users will want to resize your app, and they might resize to a very narrow size which means it might not have enough space to display all the content. IN which case you will need to collapse the side panel and show a hamburger menu to open it when needed. You don't have to do this, but it is something to consider.

Custom drawer menu used in all pages

I am new to cross platform development using Xamarin and currently I'm into the "trial and error"-phase.
I want to create my own drawer menu, that goes from bottom and upwards on slide. The menu will have different stop stages since the buttons (navigations) will be grouped by some logical things such as "Favorites", "Frequently used" etc. where each row (group) will contain the buttons.
Is it possible to create a "master page" with a header and also the footer which is the drawer?
I stumbled upon the ControlTemplate, however to me that only seem to be a master layout that can be used in pages to get the same look-and-feel without redundant style coding. As per Xamarin documentation
Control templates provide a clean separation between the appearance of a page and its content, enabling the creation of pages that can easily be themed.
But I need to add some behavior to it such as the sliding animation etc. and I would really not like to add a container in each xaml-file that I place the drawer menu in within each xaml.cs file.
Is there a good way of achieving something like this?
All help is appreciated.
The Slide Over Kit may help. It is a free plug in that allows you to create slide in panels from any direction.
https://github.com/XAM-Consulting/SlideOverKit

How to hide the div structure thing next to the editor tabs

There's a colored bar at the top of the Intellij IDEA editor, which shows the div structure. Does anyone know how to hide that? Because everytime I move the cursor to the editor tabs, I cross over the bar which makes the editor blink. (Maybe a better way is to keep the bar, but turn off the blinking when the cursor moves across the bar. Is it possible to do that?)
You can disable it by unchecking Show HTML breadcrumbs in Settings/Editor/General/Appearance.

Preventing list items from appearing until YUI3 Tabview loaded

I'm using YUI 3 tabview, and my page appears without tabs very briefly, and then the tabs appear. I found this page:
http://yuilibrary.com/yui/docs/widget/
Hiding Progressively Enhanced Markup
which seems relevant, but I'm not sure how it applies to tabview.
Is there a way to prevent the display of the untabbed list until the tabs are ready?
Thanks very much!
The default style of the tab container could be set to display:none; and on your tab view creation you could then remove the display:none property
You could bind to your tabview render event and set the display on that.