I’d like to know if there is a simple way to add separator between the button in a toggle. If it can’t be in buttons maybe in tabs. Thanks in advance.
Posts made by lazaroofarrill
-
separator between toggle buttons
-
RE: Style selected row in table
@dobbel Thank you very much had to remove the scoped property from the styles but finally worked.
-
Style selected row in table
I can’t change table row highlight when hovering and selected.
Tried with before and after selectors and with v-deep modifier but didn’t work -
RE: [Solved] style selected route-tab diferently from the rest
@Ilia & @metalsadman thanks a lot didn’t know that about the scoped property
-
RE: [Solved] style selected route-tab diferently from the rest
@Ilia nope, didn’t work. I’m using a router-tab, don’t know if that makes any difference.
<template> ... <q-tabs active-color="primary" align="left" class="custom-tab" dense> <q-route-tab :key="tab.label" :to="tab.to" v-for="tab in headerRoutes" class="q-tab__label"> {{tab.label}} </q-route-tab> </q-tabs> ... </template> <style lang="scss" scoped> .custom-tab { font-size: 12pt; } .q-tab__active .q-tab__label { font-weight: 900; } </style>
-
[Solved] style selected route-tab diferently from the rest
I wan’t to give the selected tab a bolder font weight, Since there is an active-color and active-bg-color property, I guess there’s gotta be a way of achieving this as well. Thanks in advance.
-
RE: Style elements inside button toggle
@dobbel I see. I found a workoround styling tabs. But the button felt like a more natural choice.
-
Style elements inside button toggle
I want to give the unselected buttons an outline design and space them a little, tried using outline in the toggle along with gutter but it outlines the whole element while I want an outline applied for each button.