gestion changement d'alias

This commit is contained in:
2024-09-20 18:47:12 +02:00
parent 111fac9a42
commit 5e40f208ef
123 changed files with 3382 additions and 141451 deletions

View File

@ -1,38 +1 @@
/*
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
.cke_autocomplete_panel
{
position: absolute;
display: none;
box-sizing: border-box;
width: 200px;
max-height: 300px;
overflow: auto;
padding: 0;
margin: 0;
list-style: none;
background: #FFF;
border: 1px solid #b6b6b6;
border-bottom-color: #999;
border-radius: 3px;
font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}
.cke_autocomplete_opened
{
display: block;
}
.cke_autocomplete_panel > li
{
padding: 5px;
}
.cke_autocomplete_panel > li:hover
{
cursor: pointer;
}
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover
{
background-color: #EFF0EF;
}
.cke_autocomplete_panel{position:absolute;display:none;box-sizing:border-box;width:200px;max-height:300px;overflow:auto;padding:0;margin:0;list-style:none;background:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;font:12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif}.cke_autocomplete_opened{display:block}.cke_autocomplete_panel>li{padding:5px}.cke_autocomplete_panel>li:hover{cursor:pointer}.cke_autocomplete_panel>li:hover,.cke_autocomplete_selected{background-color:#eff0ef}