Commit 007a12f5c21672b99caeef3d9b45d2ce44f99067
1 parent
88bb7f31
UI: Add 'powered by' footer to dashboards
Showing
2 changed files
with
24 additions
and
0 deletions
... | ... | @@ -134,3 +134,24 @@ section.tb-dashboard-toolbar { |
134 | 134 | @include transition(margin-top .3s cubic-bezier(.55,0,.55,.2) .2s); |
135 | 135 | } |
136 | 136 | } |
137 | + | |
138 | +/***************************** | |
139 | + * dashboard powered by footer | |
140 | + ****************************/ | |
141 | + | |
142 | +section.tb-powered-by-footer { | |
143 | + position: absolute; | |
144 | + right: 25px; | |
145 | + bottom: 5px; | |
146 | + z-index: 3; | |
147 | + pointer-events: none; | |
148 | + span { | |
149 | + font-size: 12px; | |
150 | + a { | |
151 | + font-weight: bold; | |
152 | + text-decoration: none; | |
153 | + border: none; | |
154 | + pointer-events: all; | |
155 | + } | |
156 | + } | |
157 | +} | ... | ... |
... | ... | @@ -292,4 +292,7 @@ |
292 | 292 | </md-button> |
293 | 293 | </section> |
294 | 294 | </section> |
295 | + <section class="tb-powered-by-footer" ng-style="{'color': vm.dashboard.configuration.gridSettings.titleColor}"> | |
296 | + <span>Powered by <a href="https://thingsboard.io" target="_blank">Thingsboard</a></span> | |
297 | + </section> | |
295 | 298 | </md-content> | ... | ... |