displayed attachments, added attachments filter to material admin view

This commit is contained in:
2021-01-25 16:15:03 +01:00
parent 5d4c1d5449
commit 8945034b21
12 changed files with 390 additions and 57 deletions

View File

@@ -2043,6 +2043,15 @@ article.card {
article.card.modal-card section.col-right section.tool.industriels div.tool-content > section p {
margin: 0;
font-size: 0.882em; }
article.card.modal-card section.col-right section.attachments a {
margin: 0;
font-size: 0.882em;
line-height: 0.6; }
article.card.modal-card section.col-right section.attachments a span {
font-size: 0.8em; }
article.card.modal-card section.col-right section.attachments p {
margin: 0;
font-size: 0.882em; }
#main-content > article.thematique div.cols {
display: flex;

File diff suppressed because one or more lines are too long

View File

@@ -45,6 +45,16 @@ import { mapState } from 'vuex'
import 'vue-cool-lightbox/dist/vue-cool-lightbox.min.css'
import 'theme/assets/styles/main.scss'
// import prettyBytes from 'vuejs/plugins/prettyBytes'
// Vue.use(prettyBytes)
// Vue.filter('prettyBytes', function (value) {
// if (!value) return ''
// value = value.toString()
// return value + 'Mb'
// })
(function (Drupal, drupalSettings, drupalDecoupled) {
const MaterioTheme = function () {
let _v_sitebranding_block, _v_user_block, _v_header_menu,

View File

@@ -1238,6 +1238,20 @@ article.card{
}
}
}
section.attachments{
a{
margin:0;
font-size: 0.882em;
line-height: 0.6;
span{
font-size: 0.8em
}
}
p{
margin: 0;
font-size: 0.882em;
}
}
}
}
}