|
@@ -33,17 +33,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="under-content">
|
|
|
- <i
|
|
|
- class="material-icons"
|
|
|
- title="How many users there are in the station."
|
|
|
- >people</i
|
|
|
- >
|
|
|
- <span
|
|
|
- class="users-count"
|
|
|
- title="How many users there are in the station."
|
|
|
- > {{ station.userCount }}</span
|
|
|
- >
|
|
|
-
|
|
|
+ <span class="official"><i class="badge material-icons">verified_user</i>Official</span>
|
|
|
<i
|
|
|
v-if="station.privacy !== 'public'"
|
|
|
class="material-icons right-icon"
|
|
@@ -106,17 +96,7 @@
|
|
|
{{ station.description }}
|
|
|
</div>
|
|
|
<div class="under-content">
|
|
|
- <i
|
|
|
- class="material-icons"
|
|
|
- title="How many users there are in the station."
|
|
|
- >people</i
|
|
|
- >
|
|
|
- <span
|
|
|
- class="users-count"
|
|
|
- title="How many users there are in the station."
|
|
|
- > {{ station.userCount }}</span
|
|
|
- >
|
|
|
-
|
|
|
+ <span class="hostedby">Hosted by <span class="host">{{$parent.getUsernameFromId(station.owner)}} {{userIdMap['Z' + station.owner]}}</span></span>
|
|
|
<i
|
|
|
v-if="station.privacy !== 'public'"
|
|
|
class="material-icons right-icon"
|
|
@@ -166,6 +146,7 @@ export default {
|
|
|
official: [],
|
|
|
community: []
|
|
|
},
|
|
|
+ userIdMap: this.$parent.userIdMap,
|
|
|
nightMode: false
|
|
|
};
|
|
|
},
|
|
@@ -343,6 +324,29 @@ html {
|
|
|
position: relative;
|
|
|
}
|
|
|
|
|
|
+ .official {
|
|
|
+ font-size: 18px;
|
|
|
+ color: #03a9f4;
|
|
|
+ position: relative;
|
|
|
+ top: -5px;
|
|
|
+
|
|
|
+ .badge {
|
|
|
+ position: relative;
|
|
|
+ padding-right: 2px;
|
|
|
+ color: #38d227;
|
|
|
+ top: +5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .hostedby {
|
|
|
+ font-size: 15px;
|
|
|
+
|
|
|
+ .host {
|
|
|
+ font-size: 18px;
|
|
|
+ color: #03a9f4;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.right-icon {
|
|
|
float: right;
|
|
|
}
|