ZwiiCMS/module/folder/view/index/index.css

130 lines
2.1 KiB
CSS
Raw Normal View History

2024-03-27 08:47:39 +01:00
@import url('module/folder/view/index/file-icon-classic.css');
2024-03-26 12:09:51 +01:00
@import url('module/folder/view/index/file-icon-high-contrast.css');
2024-03-26 11:33:27 +01:00
@import url('module/folder/view/index/file-icon-square-o.css');
2024-03-30 19:17:30 +01:00
@import url('module/folder/view/index/file-icon-vivid.css');
2024-03-27 08:47:39 +01:00
2024-03-30 19:17:30 +01:00
*/ #dirindex article {
2024-03-23 15:43:21 +01:00
display: block;
margin: 0 auto;
2024-03-26 14:35:41 +01:00
/*width: 600px;*/
2024-03-23 15:43:21 +01:00
}
#dirindex a {
color: #004466;
text-decoration: none;
}
#dirindex a:hover {
text-decoration: underline;
}
#dirindex a:visited {
color: #666666;
}
#dirindex details summary,
#dirindex details summary::-webkit-details-marker {
list-style: none;
cursor: pointer;
}
#dirindex {
list-style: none;
}
#dirindex ul li {
2024-03-24 21:26:00 +01:00
list-style-type: none;
2024-03-23 15:43:21 +01:00
margin-top: 10px;
}
2024-03-30 19:17:30 +01:00
#dirindex li {
padding-left: 2em;
2024-03-23 15:43:21 +01:00
}
/* Style pour le pliage/dépliage des dossiers */
.toggle {
cursor: pointer;
}
/* Style pour les sous-éléments des dossiers */
2024-03-23 16:51:12 +01:00
ul.sub-items {
2024-03-23 15:43:21 +01:00
list-style-type: none;
2024-03-23 16:51:12 +01:00
margin-left: -50px;
2024-03-23 15:43:21 +01:00
}
2024-03-24 21:35:14 +01:00
.fileContainer {
display: flex;
}
2024-03-23 15:43:21 +01:00
.file-info-container {
float: right;
align-content: left;
/* Ajout d'une largeur fixe à la div */
width: 250px;
2024-03-24 21:35:14 +01:00
margin-left: auto;
2024-03-23 15:43:21 +01:00
}
.file-name {
2024-03-24 21:35:14 +01:00
float: left;
2024-03-30 19:17:30 +01:00
max-width: 250px;
/* Largeur maximale du nom de fichier */
white-space: nowrap;
/* Empêcher le débordement du texte à la ligne suivante */
overflow: hidden;
/* Cacher tout texte qui dépasse */
text-overflow: ellipsis;
/* Ajouter des points de suspension (...) pour indiquer que le texte a été tronqué */
2024-03-23 16:51:12 +01:00
}
/**
* Images des icônes
*/
2024-03-24 21:26:00 +01:00
#dirindex li {
background-repeat: no-repeat;
2024-03-23 16:51:12 +01:00
}
2024-03-27 08:47:39 +01:00
.fiv-size-md {
2024-03-27 10:37:01 +01:00
background-size: 1.0em;
2024-03-27 08:47:39 +01:00
}
.fiv-size-lg {
background-size: 1.3em;
2024-03-24 21:26:00 +01:00
}
2024-03-27 08:47:39 +01:00
.fiv-size-xl {
background-size: 1.6em;
}
#dirindex li .fiv-size-xl{
padding-bottom: 0.4em;
2024-03-27 08:47:39 +01:00
}
2024-03-28 15:37:18 +01:00
/**
* Barre d'icônes
*/
/* Style des icônes pour "Déplier" et "Replier" */
.titleicons span {
cursor: pointer;
}
2024-03-30 19:17:30 +01:00
.titlecontainer>.titletag,
.titlecontainer>.titleicons {
display: inline-block;
2024-03-28 15:37:18 +01:00
}
.titletag {
2024-03-30 19:17:30 +01:00
text-align: left;
2024-03-28 15:37:18 +01:00
}
2024-03-30 19:17:30 +01:00
2024-03-28 15:37:18 +01:00
.titleicons {
2024-03-30 19:17:30 +01:00
/* Pour aligner les icônes à gauche dans le CSS de la page
.titleicons {
float: unset;
}
*/
float: right;
2024-03-28 15:37:18 +01:00
}