Rebrand icons (#242)

This commit is contained in:
kylezs 2021-01-06 20:31:44 -08:00 committed by GitHub
parent e80bc806ea
commit 99ed706ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 29 additions and 17 deletions

View File

@ -12,11 +12,11 @@ if [ -z "$RENAME" ]; then
fi
if [ "$OS" == "Linux" ]; then
ASSET_URL="https://builds.lokinet.dev/loki-project/loki-core/loki-dev-linux-LATEST.tar.xz"
ASSET_URL="https://oxen.rocks/loki-project/loki-core/loki-dev-linux-LATEST.tar.xz"
elif [ "$OS" == "Windows" ]; then
ASSET_URL="https://builds.lokinet.dev/loki-project/loki-core/loki-dev-win-LATEST.zip"
ASSET_URL="https://oxen.rocks/loki-project/loki-core/loki-dev-win-LATEST.zip"
elif [ "$OS" == "macOS" ]; then
ASSET_URL="https://builds.lokinet.dev/loki-project/loki-core/loki-dev-macos-LATEST.tar.xz"
ASSET_URL="https://oxen.rocks/loki-project/loki-core/loki-dev-macos-LATEST.tar.xz"
else
echo "OS must be Linux, Windows or macOS"
exit 1

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View File

@ -58,12 +58,13 @@
>Discord</a
>
-
<a
<!-- readded once oxen subreddit is known -->
<!-- <a
href="#"
@click="openExternal('https://www.reddit.com/r/LokiProject/')"
>Reddit</a
>
-
- -->
<a
href="#"
@click="

View File

@ -368,14 +368,13 @@ footer,
background: white;
color: $oxen-navy !important;
* {
color: $oxen-navy;
}
.q-list-separator > .q-item-division + .q-item-division, .q-item-division + .q-separator {
border-top: 1px solid #333;
}
// .q-item:hover {
// background: $oxen-teal;
// color: white;
// }
}
.menu-list {

View File

@ -2,13 +2,20 @@
<q-page>
<div class="q-mx-md import-old-gui">
<q-list link dark no-border class="wallet-list">
<q-item v-for="state in directory_state" :key="state.directory" :class="{ selected: state.selected }">
<q-item
v-for="state in directory_state"
:key="state.directory"
:class="{ selected: state.selected }"
>
<q-item-section>
<div class="row items-center">
<q-item-label class="items-center">
<q-checkbox v-model="state.selected" dark color="dark" />
</q-item-label>
<q-item-label class="wallet-name" @click.native="state.selected = !state.selected">
<q-item-label
class="wallet-name"
@click.native="state.selected = !state.selected"
>
{{ state.directory }}
</q-item-label>
</div>
@ -19,7 +26,7 @@
v-model="state.type"
hide-underline
dark
class="q-ma-none full-width"
class="q-ma-none full-width nettype-select"
:options="selectOptions"
emit-value
map-options
@ -93,7 +100,9 @@ export default {
this.$q.notify({
type: "negative",
timeout: 3000,
message: this.$t("notification.errors.failedWalletImport") + `: ${wallet}`
message:
this.$t("notification.errors.failedWalletImport") +
`: ${wallet}`
});
});
}
@ -109,7 +118,9 @@ export default {
methods: {
populate_state() {
// Keep any directories that intersect
const new_state = this.directory_state.filter(state => this.directories.includes(state.directory));
const new_state = this.directory_state.filter(state =>
this.directories.includes(state.directory)
);
// Add in new directories
this.directories

View File

@ -37,7 +37,7 @@
@change="setWalletPath"
/>
<q-btn
color="secondary"
color="primary"
:label="$t('buttons.selectWalletFile')"
:text-color="theme == 'dark' ? 'white' : 'dark'"
@click="selectFile"

View File

@ -208,7 +208,8 @@ export default {
flat: true,
label: this.$t("dialog.buttons.cancel")
},
color: "#1F1C47"
color: "#1F1C47",
persistent: true
})
.onOk(password => {
this.$q.loading.show({