mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
remove less & less-loader dep
This commit is contained in:
parent
d11798a3ab
commit
5d2ffa81f4
6 changed files with 35 additions and 39 deletions
|
@ -55,7 +55,6 @@ li {
|
|||
scrollbar-color: #FF4511 #111;
|
||||
}
|
||||
|
||||
// EVENT
|
||||
.event {
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
@ -67,34 +66,31 @@ li {
|
|||
margin-right: .4em;
|
||||
transition: all .5s;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.title {
|
||||
display: -webkit-box;
|
||||
overflow: hidden;
|
||||
margin: 0.5rem 1rem 0.5rem 1rem;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
font-size: 1.1em !important;
|
||||
line-height: 1.2em !important;
|
||||
}
|
||||
.event .title {
|
||||
display: -webkit-box;
|
||||
overflow: hidden;
|
||||
margin: 0.5rem 1rem 0.5rem 1rem;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 3;
|
||||
-webkit-box-orient: vertical;
|
||||
font-size: 1.1em !important;
|
||||
line-height: 1.2em !important;
|
||||
}
|
||||
|
||||
.body {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.event .body {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.event .place span {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.place {
|
||||
max-width: 100%;
|
||||
span {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.event .place a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.vc-past {
|
|
@ -176,7 +176,7 @@ export default {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<style lang='less'>
|
||||
<style lang='scss'>
|
||||
|
||||
.editor {
|
||||
margin-top: 4px;
|
||||
|
|
|
@ -61,12 +61,12 @@ export default {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<style lang='less'>
|
||||
#list {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
.v-list-item__title {
|
||||
white-space: normal !important;
|
||||
}
|
||||
}
|
||||
<style>
|
||||
#list {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
#list .v-list-item__title {
|
||||
white-space: normal !important;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<template lang='pug'>
|
||||
v-app#iframe
|
||||
nuxt
|
||||
v-app#iframe
|
||||
nuxt
|
||||
</template>
|
||||
<style lang='less'>
|
||||
<style>
|
||||
#iframe.v-application {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ module.exports = {
|
|||
}
|
||||
},
|
||||
|
||||
css: ['./assets/style.less'],
|
||||
css: ['./assets/style.css'],
|
||||
|
||||
/*
|
||||
** Customize the progress-bar component
|
||||
|
|
|
@ -33,7 +33,7 @@ export default {
|
|||
|
||||
// <iframe src='http://localhost:13120/embed/1' class='embedded_gancio'></iframe>
|
||||
</script>
|
||||
<style lang='less'>
|
||||
<style lang='scss'>
|
||||
.embed_event {
|
||||
display: flex;
|
||||
transition: margin .1s;
|
||||
|
|
Loading…
Reference in a new issue