[smartly][css] removing icons (remove, hide)

Change tile-# to the tile your targeting.

#tile-9 .tile-primary:before{display:none;}

or to remove icon from all dash link tiles use

.tile.dashboard .tile-primary:before{display:none;}

OK, tile-specific, just like individual device tiles...

Can't remember what I tried. Maybe just as well, it might be embarrassing. :wink:

The "global" one, that's what I tried. Must have got the syntax wrong.

I believe the correct technical term is "Bingo!" Thanks!

2 Likes

You should try out this for dashboard links instead. They work for local as well as remote with a single button.

1 Like

Wow :eyes: since when was that an option?! Is this the C-7 hub?

This is a C7 hub but it's available on C5 since before the C7 release I think. I've had it for a while now.

1 Like

Ah I'm C-4 here. Good to know HE is working on the dashboard though!

That does not look very stock...once again I remember why I should not look at other people's dashboards, unless I feel like I want a can of "Whup-a$$" dumped on me. :wink:

It's probably available on c4 too. It was just an update to the dashboard app.

It's stock, I just stuck Emoji's in the dashboard name. They're like contact sensors... I stick em on everything.

Update called ___________ ?

Ahhh...didn't know/think you could do that. :slight_smile:

Base hub software.

Thinking of your twins again... :wink:

Ohhhhhh. Heck dude, that's good thinking.

1 Like

Yea, sorts em for me. I'm a little weird and want things organized certain ways.

image

3 Likes

I've found that if you stalk @lewis.heidrick a bit you will learn useful things.

3 Likes

https://emojipedia.org/

Just c/p as needed anywhere in HE (and most other apps, I use them now for my AutoTask ticketing too)

2 Likes

im not running smarthly but how do you remove the "dashboard text", all mu dashboard links say dashboard at the bottom

Change tile 9 to the one your targeting. (.tile-title is the bottom one - .tile-secondary is the top one). FYI smartly does it automatically along with many other common 'fixes'

#tile-9 .tile-title, 
#tile-9 .tile-secondary {
  display: none;
}
1 Like

@BorrisTheCat to move presence icons and words them with this (use - numbers to go up if you prefer) the 'not-presence' syntax might need some help, both mine are here, it the grill is hot so gotta run.

.tile.presence .material-icons{
  position:relative;
  top:75px;
}

.tile.presence .tile-primary.present>div{
  position:relative;
  top:75px;
}

.tile.presence .tile-primary.not-present>div{
  position:relative;
  top:75px;
}

individually

#tile-123 .material-icons{
  position:relative;
  top:75px;
}

#tile-123 .tile-primary.present>div{
  position:relative;
  top:75px;
}
2 Likes