feat(ui): updates link incon, and other minor tweaks
This commit is contained in:
@@ -50,8 +50,8 @@
|
||||
<span>{{ stream.collaborators.length }}</span>
|
||||
<v-icon small>mdi-account-outline</v-icon>
|
||||
<span class="ma-2"></span>
|
||||
<v-icon v-if="stream.isPublic" small>mdi-lock-open</v-icon>
|
||||
<v-icon v-else small>mdi-lock-outline</v-icon>
|
||||
<v-icon v-if="stream.isPublic" small>mdi-link</v-icon>
|
||||
<v-icon v-else small>mdi-link-lock</v-icon>
|
||||
</div>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@@ -37,8 +37,8 @@
|
||||
<span>{{ stream.collaborators.length }}</span>
|
||||
|
||||
<span class="ma-2"></span>
|
||||
<v-icon v-if="stream.isPublic" small>mdi-lock-open</v-icon>
|
||||
<v-icon v-else small>mdi-lock-outline</v-icon>
|
||||
<v-icon v-if="stream.isPublic" small>mdi-link</v-icon>
|
||||
<v-icon v-else small>mdi-link-lock</v-icon>
|
||||
</div>
|
||||
|
||||
<div class="mt-1 grey--text text--lighten-1">
|
||||
|
||||
@@ -51,11 +51,11 @@
|
||||
</p>
|
||||
<p>
|
||||
<span v-if="stream.isPublic">
|
||||
<v-icon small>mdi-lock-open</v-icon>
|
||||
<v-icon small>mdi-link</v-icon>
|
||||
link sharing on
|
||||
</span>
|
||||
<span v-else>
|
||||
<v-icon small>mdi-lock-outline</v-icon>
|
||||
<v-icon small>mdi-link-lock</v-icon>
|
||||
link sharing off
|
||||
</span>
|
||||
</p>
|
||||
|
||||
@@ -11,12 +11,12 @@ export default new Vuetify({
|
||||
theme: {
|
||||
themes: {
|
||||
light: {
|
||||
primary: "#2196f3",
|
||||
secondary: "#607d8b",
|
||||
accent: "#03a9f4",
|
||||
error: "#ff5722",
|
||||
warning: "#ffc107",
|
||||
info: "#3f51b5",
|
||||
primary: "#047EFB", //blue
|
||||
secondary: "#7BBCFF", //light blue
|
||||
accent: "#FCF25E", //yellow
|
||||
error: "#FF5555", //red
|
||||
warning: "#FF9100", //orange
|
||||
info: "#313BCF", //dark blue
|
||||
success: "#4caf50"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -29,7 +29,7 @@ let migrationDirs = walk( './modules' )
|
||||
module.exports = {
|
||||
test: {
|
||||
client: 'pg',
|
||||
connection: process.env.POSTGRES_URL || 'postgres://localhost/speckle2_test',
|
||||
connection: 'postgres://localhost/speckle2_test',
|
||||
migrations: {
|
||||
directory: migrationDirs
|
||||
},
|
||||
|
||||
@@ -13,7 +13,7 @@ type Branch {
|
||||
id: String!
|
||||
name: String!
|
||||
author: User!
|
||||
description: String!
|
||||
description: String
|
||||
commits(limit: Int! = 25, cursor: String): CommitCollection
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user