Small adfjustment on header css. Disables dropdown inputs for item creation not available in alpha version (Closes #12). Alerts user that Search and Advanced Search on Repository is not available in Alpha (Closes #14).
This commit is contained in:
parent
8a1eed6c64
commit
980a5fdfbc
|
@ -23,12 +23,15 @@
|
|||
:placeholder="$i18n.get('instruction_search_repository')"
|
||||
class="input is-small"
|
||||
type="search"
|
||||
v-model="searchTerm">
|
||||
v-model="searchTerm"
|
||||
@click="alert('Not ready to use in Alpha version.')">
|
||||
<span class="icon is-right">
|
||||
<i class="mdi mdi-magnify" />
|
||||
</span>
|
||||
</div>
|
||||
<a href="">{{ $i18n.get('advanced_search') }}</a>
|
||||
<a
|
||||
@click.prevent="alert('Not ready to use in Alpha version.')"
|
||||
href="">{{ $i18n.get('advanced_search') }}</a>
|
||||
</span>
|
||||
<a
|
||||
class="level-item"
|
||||
|
@ -52,6 +55,15 @@ export default {
|
|||
},
|
||||
props: {
|
||||
isMenuCompressed: false
|
||||
},
|
||||
methods: {
|
||||
alert(message) {
|
||||
this.$toast.open({
|
||||
duration: 3000,
|
||||
message: message,
|
||||
position: 'is-bottom'
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -80,20 +92,18 @@ export default {
|
|||
|
||||
.level-item{
|
||||
height: $header-height;
|
||||
width: 184px;
|
||||
transition: width 0.15s;
|
||||
-webkit-transition: width linear 0.15s;
|
||||
width: 180px;
|
||||
transition: width 0.15s, background-color 0.2s;
|
||||
-webkit-transition: width 0.15s background-color 0.2s;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover{
|
||||
background-color: #257787;
|
||||
}
|
||||
background-color: #257787;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.tainacan-logo {
|
||||
max-height: 22px;
|
||||
padding: 0px 28px;
|
||||
padding: 0px 24px;
|
||||
transition: padding 0.15s;
|
||||
-webkit-transition: padding linear 0.15s;
|
||||
}
|
||||
|
@ -140,6 +150,7 @@ export default {
|
|||
&.menu-compressed {
|
||||
.level-left .level-item {
|
||||
width: 220px;
|
||||
background-color: $secondary;
|
||||
.tainacan-logo {
|
||||
padding: 0px 42px;
|
||||
}
|
||||
|
|
|
@ -18,9 +18,9 @@
|
|||
{{ $i18n.get('add_one_item') }}
|
||||
</router-link>
|
||||
</b-dropdown-item>
|
||||
<b-dropdown-item>{{ $i18n.get('add_items_bulk') }}
|
||||
<b-dropdown-item disabled>{{ $i18n.get('add_items_bulk') + ' (Not ready)' }}
|
||||
</b-dropdown-item>
|
||||
<b-dropdown-item>{{ $i18n.get('add_items_external_source') }}<br><small class="is-small">{{ $i18n.get() }}</small></b-dropdown-item>
|
||||
<b-dropdown-item disabled>{{ $i18n.get('add_items_external_source') + ' (Not ready)' }}<br><small class="is-small">{{ $i18n.get() }}</small></b-dropdown-item>
|
||||
</b-dropdown>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue