storj/web/satellite/src/components/common/Checkbox.vue
Nikolay Yurchenko 354337a18b
[WIP] Header satellite ui initial markup (#651)
* [V3-635] created Project Dropdown list

* Deleting redundant package-lock.json

* [V3-637] New Project button and popup markup

* component structure and placement changed

* [V3-636] created user profile settings markup

* navigation area created
2018-11-14 16:00:01 +02:00

95 lines
1.9 KiB
Vue

<template>
<label class="container">
<input type="checkbox" v-model="checked" @change="onChange">
<span class="checkmark"></span>
</label>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
@Component(
{
data: () => {
return {
checked: false
}
},
methods: {
onChange () {
this.$emit('setData', this.$data.checked)
}
},
}
)
export default class Checkbox extends Vue {
}
</script>
<style scoped lang="scss">
.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
}
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: white;
border: 2px solid rgba(56, 75, 101, 0.4);
border-radius: 4px;
}
.container:hover input ~ .checkmark {
background-color: #ccc;
}
.container input:checked ~ .checkmark {
border: 2px solid #2196F3;
background-color: #2196F3;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.container input:checked ~ .checkmark:after {
display: block;
}
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
</style>