Add vertical divider to Yii2's Nav widget - twitter-bootstrap-3

How can I add a vertical divider, that separates top-level items, to Yii2's Nav? Is this supported?
From Nav's docs I know, that I can add horizontal divider ('<li class="divider"></li>') or horizontal header ('<li class="dropdown-header">Dropdown Header</li>') to first-level dropdown items. But adding these classes at top-level items brings no visual effect.
Is there any way to visually separate let's say Login item from all other top-level items in Nav?

There is no vertical divider in bootstrap 3, read more here :
https://github.com/twbs/bootstrap/issues/9501
Vertical divider doesn't work in Bootstrap 3
You should simply create needed css rules.

Related

Change NavLink left padding for FluentUI Nav

When styling the Nav bar, I cant find a way to set that padding and make it smaller
I have try add a custom style or class in each item but is not working. any idea?
If i apply style to the link or the compositeLink, just overwrite all the paddings... but i want each level to be indented!
https://developer.microsoft.com/en-us/fluentui#/controls/web/nav

How can I get rid of the messages area in a Vuetify slider?

I'm using a v-slider in a Vuetify context. The component has a message area that takes some space below the slider and makes it impossible to align the actual slider (the "line") in the vertical center to line up with other neighbouring components.
There seems to be a number of way to customize the message, but how do I get rid of that area completely? There will never be any messages to display there.
I've now resorted to adding a padding on top of the slider, align the components and then add a negative top padding on the group. But that seems just like a hack that I'd like to avoid.
Add the prop "hide-details" to the slider
<v-slider v-model="volume" label="Volume" hide-details></v-slider>
You can find all the possible props in the API-Section for the sliders.

VSCode: Multiple horizontal and vertical panels

Is it possible to have mixed vertical and horizontal tabs/panels in VSCode - it seems I only can have either horizontal or vertical and no more than 3 total.
This is now supported as of VS Code 1.25. The feature is called "Grid editor layout". You can read more about it here
Grid layout lets you arrange editors vertically and horizontally. You can also put more than 3 editors next to each other

Bootstrap 3 navbar jumping onto two lines rather than collapsing?

Think I'm missing the obvious here, but I have a Bookstrap 3 navbar that works great in desktop view but as I squeeze the width and it gets to tablet size rather than collapsing into the toggle menu it's jumping the menu onto two lines:
http://www.doorsets.org.uk/
I've tried reducing the text size in the navbar via a media query but that isn't solving it.
What am I missing?
Appreciate it. Thank you.
NJ
One solution might be to change the point at which the navbar collapses, you can do this by creating a customized Bootstrap and setting the #grid-float-breakpoint to a larger number.
This variable unfortunately also influences the dt and dd inside a .dl-horizontal which might be a problem.
If you want to use a media query to reduce the font-size you can use the .navbar-default .navbar-nav > li > a selector. It however needs to become 9px at the smallest viewport size to still stay on a single row which is quite unreadable.
From the Bootstrap documentation:
Overflowing content
Since Bootstrap doesn't know how much space the content in your navbar needs, you might run into issues with content wrapping into a second row. To resolve this, you can:
Reduce the amount or width of navbar items.
Hide certain navbar items at certain screen sizes using responsive utility classes.
Change the point at which your navbar switches between collapsed and horizontal mode. Customize the #grid-float-breakpoint variable or add your own media query.
It goes on to say:
Changing the collapsed mobile navbar breakpoint
The navbar collapses into its vertical mobile view when the viewport is narrower than #grid-float-breakpoint, and expands into its horizontal non-mobile view when the viewport is at least #grid-float-breakpoint in width. Adjust this variable in the Less source to control when the navbar collapses/expands. The default value is 768px (the smallest "small" or "tablet" screen).

Horizontal layout with fullscreen scrollbar

How can I create horizontal layout with fullscreen scrollbar? Like "Store" app in Windows 8. I use WinJS
Try this, flexbox:
http://msdn.microsoft.com/en-us/library/ie/hh673531(v=vs.85).aspx
There is a property called ‘flex-direction’which allows you to change a row to a column, i.e. the elements would be aligned vertically. It is also possible to reverse the direction, i.e. the last element in the container would appear first in the list. This property can take the values – ‘row’, ‘row-reverse’, ‘column’ and ‘column-reverse’.