component.css 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079
  1. /* GENERAL */
  2. input[data-type].invalid-value{
  3. border: 1px solid #ff0057;
  4. }
  5. /* COMPOSANT QUICKFORM */
  6. div[data-type="quickform"] {
  7. position: relative;
  8. flex: 0 0 auto;
  9. cursor: pointer;
  10. }
  11. .quickform > span {
  12. line-height: 3em;
  13. }
  14. .quickform-tooltip {
  15. opacity: 0.75;
  16. background: #333;
  17. color: #fff;
  18. font-size: 13px;
  19. text-align: center;
  20. padding: 10px;
  21. border-radius: 2rem;
  22. border: 1px solid #fff;
  23. white-space: pre-wrap;
  24. text-decoration: none;
  25. box-shadow: none;
  26. }
  27. /* FIN COMPOSANT QUICKFORM */
  28. /* COMPOSANT FILE */
  29. input[data-type="file"]{
  30. display: none;
  31. }
  32. .component-file-default ul,.component-file-default li{
  33. list-style-type: none;
  34. padding: 0;
  35. margin: 0;
  36. }
  37. .component-file-default .upload-list{
  38. border-top: 1px solid #eaeaea;
  39. }
  40. .component-file-default .upload-list > li{
  41. border-bottom: 1px solid #eaeaea;
  42. position: relative;
  43. height: 45px;
  44. }
  45. .component-file-default .data-type-file{
  46. padding: 10px;
  47. border-top: 1px solid #eaeaea;
  48. }
  49. .component-file-default .upload-list .btn-bar{
  50. float: right;
  51. margin-left: 5px;
  52. }
  53. .component-file-default .upload-list .btn-delete,
  54. .component-file-default .upload-list .file-button{
  55. margin-left: 5px;
  56. }
  57. .component-file-default .file-preview{
  58. display: none;
  59. }
  60. .component-file-default.readonly .upload-header,
  61. .component-file-default.readonly .btn-delete{
  62. display: none;
  63. }
  64. .component-file-default .upload-list .progress-bar{
  65. position: absolute;
  66. top: 0;
  67. left: 0;
  68. height: 100%;
  69. width: 0;
  70. z-index: 10;
  71. background:#f6f6f6;
  72. }
  73. .component-file-default .upload-complete .progress-bar{
  74. display: none;
  75. }
  76. .component-file-default .file-size{
  77. margin-left: 5px;
  78. color:#cecece;
  79. }
  80. .component-file-default .upload-list .file-info{
  81. position: absolute;
  82. top: 0;
  83. width: 100%;
  84. padding: 10px;
  85. font-size: 12px;
  86. line-height: 25px;
  87. left: 0;
  88. z-index: 11;
  89. overflow: hidden;
  90. transition: width 0.1s linear;
  91. }
  92. .component-file-default .upload-list .file-label{
  93. white-space: nowrap;
  94. overflow: hidden;
  95. width: 200px;
  96. display: inline-block;
  97. height: 17px;
  98. text-overflow: ellipsis;
  99. }
  100. .component-file-default .upload-success{
  101. box-shadow: 2px 0 inset #8bd91d;
  102. }
  103. .component-file-default .upload-process:after{
  104. content: 'Traitement...';
  105. color:#cecece;
  106. position: absolute;
  107. bottom: 0;
  108. left: 0;
  109. display: block;
  110. z-index: 20;
  111. width: 100%;
  112. font-size: 10px;
  113. text-align: center;
  114. }
  115. .component-file-default .upload-error{
  116. box-shadow: 2px 0 inset #dc3545;
  117. }
  118. .component-file-default .file-info a{
  119. color:#212529;
  120. }
  121. .component-file-default .file-info> a> i{
  122. margin-right: 3px;
  123. }
  124. .component-file-default .error-message{
  125. background-color: #dc3545;
  126. overflow: hidden;
  127. text-align: center;
  128. color: #ffffff;
  129. height: 15px;
  130. font-size: 10px;
  131. display: none;
  132. position: absolute;
  133. bottom: 0px;
  134. left: 0;
  135. width: 100%;
  136. }
  137. .component-file-default .upload-error .error-message{
  138. display: block;
  139. }
  140. .component-file-cover{
  141. background-repeat: no-repeat;
  142. width: 150px;
  143. height: 150px;
  144. overflow: hidden;
  145. position: relative;
  146. background-position: center center;
  147. }
  148. .component-file-cover[data-file-number="0"]{
  149. background-image: url(../img/default-image-muted.png);
  150. background-size: contain;
  151. }
  152. .component-file-cover .file-link,
  153. .component-file-cover .upload-list,
  154. .component-file-cover .upload-list > li,
  155. .component-file-cover .file-info {
  156. height: 100%;
  157. }
  158. .component-file-cover.readonly .upload-header,
  159. .component-file-cover.readonly .btn-delete{
  160. display: none;
  161. }
  162. .component-file-cover .file-link{
  163. display: block;
  164. height: 100%;
  165. width: 100%;
  166. }
  167. .component-file-cover .file-preview{
  168. background-size: contain;
  169. background-repeat: no-repeat;
  170. opacity: 0;
  171. width: 100%;
  172. height: 100%;
  173. transition: opacity 0.7s ease-in-out;
  174. }
  175. .component-file-cover .preview-loaded .file-preview{
  176. opacity: 1;
  177. }
  178. .component-file-cover .upload-header{
  179. top: 0;
  180. left: 0;
  181. height: 100%;
  182. width: 100%;
  183. z-index: 10;
  184. position: absolute;
  185. }
  186. .component-file-cover .upload-header .upload-zone{
  187. height: 100%;
  188. width: 100%;
  189. top: 0;
  190. left: 0;
  191. position: absolute;
  192. }
  193. .component-file-cover .upload-list,.component-file-cover .upload-list > li{
  194. list-style-type: none;
  195. padding: 0;
  196. margin: 0;
  197. }
  198. .component-file-cover .upload-list .file-preview{
  199. max-width: 100%;
  200. max-height: 100%;
  201. margin: auto;
  202. background-position: center center;
  203. }
  204. .component-file-cover .upload-list .file-info .file-link{
  205. position: absolute;
  206. top: 0;
  207. left: 0;
  208. z-index: 5;
  209. }
  210. .component-file-cover .upload-list .file-info .btn-bar{
  211. background-color: rgba(0,0,0,0.5);
  212. position: absolute;
  213. top: 0;
  214. right: 0;
  215. z-index: 50;
  216. color: #fff;
  217. padding: 0 3px;
  218. border-radius: 3px;
  219. }
  220. .component-file-cover .upload-list .file-icon,
  221. .component-file-cover .upload-list .file-size,
  222. .component-file-cover .file-upload-label {
  223. display: none;
  224. }
  225. .component-file-cover .no-preview .file-icon{
  226. height: 100%;
  227. width: 100%;
  228. top: 0;
  229. line-height: 100%;
  230. font-size: 60px;
  231. text-align: center;
  232. display: block;
  233. left: 0;
  234. position: absolute;
  235. }
  236. .component-file-cover .no-preview .file-icon:before{
  237. left: 0;
  238. top: calc(50% - 30px);
  239. vertical-align: bottom;
  240. position: absolute;
  241. width: 100%;
  242. text-align: center;
  243. }
  244. .component-file-cover .file-label{
  245. opacity: 0;
  246. background-color: rgba(0,0,0,0.5);
  247. padding: 0 3px;
  248. color:#ffffff;
  249. text-align: center;
  250. font-size: 12px;
  251. bottom: 0;
  252. width: 100%;
  253. text-overflow: ellipsis;
  254. position: absolute;
  255. transform: translateY(100px);
  256. transition: all 0.2s ease-in-out;
  257. }
  258. .component-file-cover:hover .file-label {
  259. opacity: 1;
  260. transform: translateY(0);
  261. }
  262. .component-file-cover .upload-list .progress-bar{
  263. position: absolute;
  264. top: 0;
  265. left: 0;
  266. height: 100%;
  267. width: 0;
  268. z-index: 10;
  269. background:#f6f6f6;
  270. background: rgb(0,0,0,0.5);
  271. }
  272. .component-file-cover .upload-complete .progress-bar{
  273. display: none;
  274. }
  275. /* FIN COMPOSANT FILE */
  276. /* COMPOSANT FILEPICKER */
  277. input[data-type="filepicker"] {
  278. display: none!important;
  279. }
  280. .data-type-filepicker{
  281. min-width: 150px;
  282. }
  283. .data-type-filepicker[required="required"],
  284. .data-type-filepicker[required] {
  285. border-left: 0.25rem solid #FFA100 !important;
  286. }
  287. .data-type-filepicker > i {
  288. color: #f1c40f;
  289. }
  290. .data-type-filepicker[readonly] .filepicker-browse,
  291. .data-type-filepicker[readonly] .filepicker-clear{
  292. display: none;
  293. }
  294. .filepicker-modal i.far.fa-folder,
  295. .filepicker-modal i.far.fa-folder-open {
  296. color: #f1c40f;
  297. }
  298. .filepicker-modal .tree-folders,.filepicker-modal .tree-folders li,.filepicker-modal .tree-folders ul{
  299. list-style-type: none;
  300. }
  301. .filepicker-modal .tree-folders ul{
  302. padding-left: 15px;
  303. }
  304. .filepicker-modal .tree-folders li{
  305. cursor: pointer;
  306. }
  307. .filepicker-modal ul.tree-folders li.folder-focused{
  308. font-weight: bold;
  309. }
  310. .filepicker-modal ul.tree-folders li.folder-focused ul {
  311. font-weight: normal;
  312. }
  313. .data-type-filepicker {
  314. cursor: pointer;
  315. }
  316. .data-type-filepicker ul ,.data-type-filepicker li{
  317. padding: 0;
  318. margin: 0;
  319. list-style-type: none;
  320. }
  321. .data-type-filepicker .filepicker-browse,
  322. .data-type-filepicker .filepicker-clear{
  323. float: right;
  324. margin-top: 4px;
  325. opacity: 0.5;
  326. transform: scale(0.8);
  327. transition: all 0.2s ease-in-out;
  328. }
  329. .data-type-filepicker .filepicker-browse:hover,
  330. .data-type-filepicker .filepicker-clear:hover {
  331. transform: scale(1);
  332. opacity: 1;
  333. }
  334. .data-type-filepicker .filepicker-clear{
  335. margin-right:10px ;
  336. }
  337. .data-type-filepicker .filepicker-clear:after{
  338. clear: right;
  339. content: '';
  340. display: block;
  341. }
  342. .data-type-filepicker.readonly .filepicker-browse{
  343. display: none;
  344. }
  345. .data-type-filepicker ul{
  346. display: inline-block;
  347. vertical-align: top;
  348. padding-left: 5px;
  349. }
  350. .data-type-filepicker li{
  351. display: inline-block;
  352. vertical-align: top;
  353. font-size: 12px;
  354. padding: 4px 0px 0 0;
  355. }
  356. .data-type-filepicker li .text-muted{
  357. color: #e8ebec!important;
  358. }
  359. .data-type-filepicker li > i{
  360. transform: rotate(90deg);
  361. }
  362. .data-type-filepicker li:nth-child(1) > i{
  363. display: none;
  364. }
  365. /* FIN COMPOSANT FILEPICKER */
  366. /* COMPOSANT DROPZONE */
  367. div[data-type="dropzone"].form-control {
  368. height: auto;
  369. }
  370. div[data-type="dropzone"]{
  371. border-style: dashed;
  372. background: #e9e9e9;
  373. position: relative;
  374. }
  375. div[data-type="dropzone"] > div{
  376. padding: 5px;
  377. }
  378. div[data-type="dropzone"] > ul{
  379. list-style-type:none;
  380. margin: 0;
  381. padding: 0;
  382. }
  383. div[data-type="dropzone"] > ul > li{
  384. position: relative;
  385. padding: 3px;
  386. border-bottom: 1px solid #cecece;
  387. background:#ffffff;
  388. }
  389. div[data-type="dropzone"] > ul > li > i:first-of-type{
  390. margin: 0 5px;
  391. }
  392. div[data-type="dropzone"] > ul > li > i.pointer{
  393. position:absolute;
  394. right:5px;
  395. top: 50%;
  396. transform: translateY(-50%);
  397. }
  398. div[data-type="dropzone"] .preload{
  399. top: 0px;
  400. box-sizing: border-box;
  401. display: block;
  402. position: absolute;
  403. content: "";
  404. padding:0;
  405. left: 0;
  406. width: 100%;
  407. height: 5px;
  408. background-color: #2b9ad8;
  409. transition: all 0.2s ease-in-out;
  410. }
  411. .dropzone-custom-button {
  412. position: absolute;
  413. right: 5px;
  414. padding: 0 5px;
  415. font-size: 1em;
  416. top: 50%;
  417. transform: translateY(-50%);
  418. }
  419. /* FIN COMPOSANT DROPZONE */
  420. /* COMPOSANT DROPDOWN-SELECT */
  421. .data-type-dropdown-select > .dropdown-toggle-button,
  422. .data-type-dropdown-select > .dropdown-toggle-button:focus {
  423. outline: none;
  424. box-shadow: none;
  425. vertical-align: top;
  426. }
  427. select[data-type="dropdown-select"]{
  428. display: none !important;
  429. }
  430. .input-group .data-type-dropdown-select .dropdown-toggle-button{
  431. height: 100%;
  432. border: 1px solid #cecece;
  433. }
  434. .input-group .input-group-append .data-type-dropdown-select .dropdown-toggle-button{
  435. border-left: 0px;
  436. border-top-left-radius: 0;
  437. border-bottom-left-radius: 0;
  438. }
  439. .input-group .input-group-prepend .data-type-dropdown-select .dropdown-toggle-button{
  440. border-right: 0px;
  441. border-top-right-radius: 0;
  442. border-bottom-right-radius: 0;
  443. }
  444. .data-type-dropdown-select .dropdown-menu{
  445. max-width: 500px;
  446. }
  447. /* FIN DROPDOWN-SELECT */
  448. /* COMPOSANT WYSIWYG / TRUMBOWYG */
  449. /* data-minimal */
  450. .trumbowyg-box.trumbowyg-minimal.trumbowyg-editor-visible.trumbowyg-fr.trumbowyg {
  451. min-height: auto;
  452. }
  453. .trumbowyg-box[readonly] .trumbowyg-button-pane,
  454. .trumbowyg-box[disabled] .trumbowyg-button-pane {
  455. display: none;
  456. }
  457. .trumbowyg-box[readonly] .trumbowyg-editor,
  458. .trumbowyg-box[disabled] .trumbowyg-editor {
  459. background-color: #e9ecef;
  460. }
  461. .trumbowyg-box.trumbowyg-minimal .trumbowyg-editor {
  462. height: 100%;
  463. overflow: visible;
  464. margin: 0 auto;
  465. padding: 0;
  466. background: inherit;
  467. min-height: auto;
  468. white-space: nowrap;
  469. -moz-scrollbars-none;
  470. -ms-overflow-style: none;
  471. }
  472. .trumbowyg-box.trumbowyg-minimal .trumbowyg-editor::-webkit-scrollbar {
  473. height: 0 !important;
  474. }
  475. .trumbowyg-box.trumbowyg-minimal .trumbowyg-editor * {
  476. margin: 0;
  477. }
  478. .wysiwyg-dragover{
  479. position: relative;
  480. background-color: #e3e3e3!important;
  481. }
  482. .wysiwyg-dragover:after{
  483. content :"\f382";
  484. font-family: "Font Awesome 5 Free";
  485. font-weight: 900;
  486. font-size: 80px;
  487. position: absolute;
  488. top: calc(50% - 40px);
  489. left: calc(50% - 40px);
  490. color:#aeaeae;
  491. }
  492. /* mentions */
  493. .mention-user-picker-container .data-type-user{
  494. display: inline-block;
  495. vertical-align: top;
  496. background: none;
  497. padding: 0!important;
  498. }
  499. span.data-mention-user{
  500. color:#17a2b8;
  501. font-weight:bold;
  502. }
  503. span.data-mention-object{
  504. color:#000000;
  505. font-weight:bold;
  506. }
  507. .mention-object-picker-container{
  508. color:#000000;
  509. font-weight:bold;
  510. }
  511. .mention-object-picker{
  512. outline: none;
  513. }
  514. .mention-object-picker-container input.mention-object-picker{
  515. border:0;
  516. outline:0;
  517. color:#000000;
  518. font-weight:bold;
  519. }
  520. /* FIN COMPOSANT WYSIWYG / TRUMBOWYG */
  521. /* PERMISSION PANEL */
  522. #permission-modal{
  523. z-index: 10002;
  524. }
  525. #permission-modal .permission-firm-all .btn-delete,
  526. #permission-modal[data-firm=""] .permission-firm-all .btn-delete-info,
  527. #permission-modal .btn-delete-info {
  528. display: none;
  529. }
  530. #permission-modal[data-firm=""] .permission-firm-all .btn-delete,
  531. #permission-modal .permission-firm-all .btn-delete-info {
  532. display: inline-block;
  533. }
  534. #permission-modal .modal-dialog{
  535. max-width: 800px;
  536. }
  537. #permission-modal #permission{
  538. max-width: 600px;
  539. margin: auto;
  540. }
  541. #permission-modal #permissions .label-diagonal{
  542. display: inline-block;
  543. transform: rotate(-70deg);
  544. font-size: 9px;
  545. }
  546. #permission-modal #permissions .col-target{
  547. max-width: 100px;
  548. }
  549. #permission-modal #permissions .col-read,
  550. #permission-modal #permissions .col-edit,
  551. #permission-modal #permissions .col-delete,
  552. #permission-modal #permissions .col-configure,
  553. #permission-modal #permissions .col-recursive {
  554. max-width: 50px;
  555. }
  556. #permission-modal #permissions td,#permissions th{
  557. text-align: center;
  558. }
  559. /* FIN PERMISSIONS PANEL */
  560. /* COMPOSANT HISTORY */
  561. @keyframes slide-left-fade-in{
  562. 0% {
  563. opacity:0;
  564. transform: translate(400px,0px);
  565. }
  566. 100% {
  567. opacity:1;
  568. transform: translate(0px,0px);
  569. }
  570. }
  571. @keyframes slide-right-fade-out{
  572. 0% {
  573. opacity:1;
  574. transform: translate(0px,0px);
  575. }
  576. 100% {
  577. opacity:0;
  578. transform: translate(400px,0px);
  579. }
  580. }
  581. .history-panel{
  582. position: fixed;
  583. top: 50px;
  584. box-shadow: 0 0 10px 1px rgba(0,0,0,0.15);
  585. right: 0;
  586. width: 33%;
  587. max-width: 400px;
  588. min-width: 200px;
  589. background-color: #f9f9f9;
  590. z-index: 100;
  591. padding: 10px;
  592. box-sizing: border-box;
  593. height: calc(100% - 50px);
  594. opacity: 1;
  595. animation: slide-left-fade-in ease 0.2s;
  596. animation-iteration-count: 1;
  597. transform-origin: 50% 50%;
  598. animation-fill-mode: forwards;
  599. }
  600. .history-panel.fold{
  601. animation: slide-right-fade-out ease 0.2s;
  602. animation-iteration-count: 1;
  603. transform-origin: 50% 50%;
  604. animation-fill-mode: forwards;
  605. opacity: 0;
  606. }
  607. .badge.history-notification {
  608. padding: 2px 5px;
  609. position: absolute;
  610. left: 5px;
  611. height: 15px;
  612. top: 0px;
  613. font-size: 0.65em;
  614. z-index: 1;
  615. }
  616. .history-panel .comment-search{
  617. margin: auto auto 5px auto;
  618. text-align: center;
  619. }
  620. .history-panel h3{
  621. font-size: 16px;
  622. }
  623. .history-panel h2{
  624. font-size: 18px;
  625. font-weight: bold;
  626. }
  627. .history-panel .comments{
  628. padding: 0;
  629. list-style-type: none;
  630. max-height: calc(100% - 70px);
  631. overflow: auto;
  632. }
  633. .history-panel .btn-close{
  634. position: absolute;
  635. right: 10px;
  636. cursor: pointer;
  637. color:#cecece;
  638. top: 10px;
  639. }
  640. .history-panel .comments > li{
  641. padding: 5px;
  642. box-shadow: 0 0 10px 1px rgba(0,0,0,0.05);
  643. border-radius: 3px;
  644. font-size: 12px;
  645. margin-bottom:30px;
  646. background-color: #ffffff;
  647. position: relative;
  648. }
  649. .history-panel .comment[data-importance="important"]{
  650. box-shadow: inset 0 0 0px 3px #ffc310;
  651. }
  652. .history-type{
  653. display: inline-block;
  654. width: 50px;
  655. text-align: center;
  656. font-size: 30px;
  657. vertical-align: top;
  658. }
  659. .history-header{
  660. }
  661. .history-content{
  662. display: inline-block;
  663. vertical-align: top;
  664. }
  665. .history-content .trumbowyg-box{
  666. border: 0px;
  667. margin-top: 0px;
  668. min-height: 100px;
  669. }
  670. .history-content .trumbowyg-editor{
  671. min-height: 100px;
  672. padding: 5px;
  673. overflow: visible;
  674. }
  675. .history-content .trumbowyg-button-pane button,.history-content .trumbowyg-button-pane{
  676. height: 15px;
  677. min-height: 15px;
  678. }
  679. .history-content .trumbowyg-button-pane::after{
  680. top: 14px;
  681. }
  682. .history-panel .comments .comment[data-type="comment"] .history-options{
  683. display: block;
  684. }
  685. .history-panel .comments .comment .history-options{
  686. list-style-type: none;
  687. padding: 0;
  688. margin: 0;
  689. position: absolute;
  690. right: 9px;
  691. bottom: 7px;
  692. color:#cecece;
  693. display: none;
  694. }
  695. .history-panel .comments .history-delete-btn {
  696. transition: color 0.1s linear;
  697. }
  698. .history-panel .comments .history-delete-btn:hover {
  699. color: #ca0202;
  700. }
  701. .history-panel .history-add{
  702. font-size: 13px;
  703. color: #495057;
  704. opacity: 0.5;
  705. cursor: pointer;
  706. text-align: center;
  707. transition: all 0.2s ease-in-out;
  708. }
  709. .history-panel .comments .history-add{
  710. position: absolute;
  711. right: calc(50% - 10px);
  712. bottom: -25px;
  713. }
  714. .history-panel .history-add:hover{
  715. opacity: 1;
  716. transform: scale(1.2);
  717. }
  718. .history-panel .history-importance{
  719. position: absolute;
  720. right: 5px;
  721. top: 10px;
  722. }
  723. /* FIN COMPOSANT HISTORY */
  724. /* COMPOSANT URL */
  725. .url-field {
  726. display: flex;
  727. flex: 1 0 100%;
  728. position: relative;
  729. }
  730. .url-field.haslock > input{
  731. padding-left: 28px;
  732. }
  733. .url-field i {
  734. position: absolute;
  735. top: 50%;
  736. transform: translateY(-50%);
  737. }
  738. .url-field i.url-link {
  739. right: 10px;
  740. cursor: pointer;
  741. }
  742. .url-field i.url-icon {
  743. left: 10px;
  744. }
  745. .input-group .url-field{
  746. position: relative;
  747. -ms-flex: 1 1 auto;
  748. flex: 1 1 auto;
  749. width: 1%;
  750. margin-bottom: 0;
  751. }
  752. .input-group > .url-field .form-control {
  753. border-top-left-radius: 0;
  754. border-bottom-left-radius: 0;
  755. }
  756. /* FIN COMPOSANT URL */
  757. /* COMPOSANT PASSWORD */
  758. .password-field {
  759. display: flex;
  760. flex: 1 0 100%;
  761. position: relative;
  762. }
  763. .password-field i {
  764. position: absolute;
  765. top: 50%;
  766. cursor: pointer;
  767. transform: translateY(-50%);
  768. }
  769. .password-field i.password-toggler,
  770. .password-field i.password-generator {
  771. right: 10px;
  772. }
  773. .password-field i.password-toggler + i.password-generator {
  774. right: 35px;
  775. }
  776. .data-type-password[readonly] i.password-generator{
  777. display: none;
  778. }
  779. .strength-transparent { background-color: transparent !important; }
  780. .strength-low { background-color: #e74c3c !important; }
  781. .strength-medium { background-color: #e67e22 !important; }
  782. .strength-hard { background-color: #2ecc71 !important; }
  783. .password-field .strength-lines {
  784. position: absolute;
  785. bottom: 1px;
  786. left: 2px;
  787. right: 0;
  788. width: calc(100% - 5px);
  789. height: 6px;
  790. z-index: 3;
  791. }
  792. .password-field .strength-lines .line {
  793. position: absolute;
  794. background-color: transparent;
  795. height: 4px;
  796. border-radius: 2px;
  797. transition: background-color 0.15s ease-in;
  798. }
  799. .password-field .strength-lines .line:not(:first-of-type):not(:last-of-type) {
  800. left: 33%;
  801. right: 33%;
  802. }
  803. .password-field .strength-lines .line:first-of-type {
  804. left: 4px;
  805. right: 68%;
  806. }
  807. .password-field .strength-lines .line:last-of-type {
  808. left: 68%;
  809. right: 4px;
  810. }
  811. .input-group .password-field{
  812. position: relative;
  813. -ms-flex: 1 1 auto;
  814. flex: 1 1 auto;
  815. width: 1%;
  816. margin-bottom: 0;
  817. }
  818. .input-group> .password-field .form-control {
  819. border-top-left-radius: 0;
  820. border-bottom-left-radius: 0;
  821. }
  822. /* FIN COMPOSANT PASSWORD */
  823. /* COMPOSANT SEARCH BOX */
  824. .advanced-search-box .simple-search .filter-keyword{
  825. border-radius: 0 .25rem 0 0;
  826. }
  827. .advanced-search-box .options .btn-search-load{
  828. max-width: 200px;
  829. white-space: normal;
  830. word-wrap: break-word;
  831. overflow-wrap: break-word;
  832. display: inline-block;
  833. }
  834. .advanced-search-box .simple-search .data-search-label{
  835. z-index: 5;
  836. }
  837. .advanced-search-box .advanced-search{
  838. display: none;
  839. }
  840. .advanced-search-box.advanced .simple-search .filter-keyword,
  841. .advanced-search-box.advanced .simple-search .data-search-label{
  842. transition: all 0.2s ease-in-out;
  843. }
  844. .advanced-search-box.advanced .advanced-search{
  845. display: block;
  846. }
  847. .advanced-search-box.advanced .simple-search .data-search-label{
  848. border-radius: 3px 0 0 0;
  849. background-color: #f5f9ff;
  850. border: 0;
  851. }
  852. .advanced-search-box.advanced .simple-search .filter-keyword{
  853. background: #e8f1ff;
  854. color: #83b3ff;
  855. border: 0;
  856. }
  857. .advanced-search-box.advanced .advanced-button-search i{
  858. text-shadow: 0 0 5px #007bff;
  859. color: #007bff;
  860. }
  861. .advanced-search-box .advanced-button-search i{
  862. position: relative;
  863. }
  864. .advanced-search-box .advanced-button-search i:after {
  865. content: "\f0d7";
  866. position: absolute;
  867. font-size: 0.8em;
  868. bottom: -3px;
  869. right: -5px;
  870. }
  871. .advanced-search-box ul,.advanced-search-box li{
  872. list-style-type: none;
  873. padding: 0;
  874. margin: 0;
  875. }
  876. .advanced-search-box .criterias{
  877. position: relative;
  878. }
  879. .advanced-search-box .criterias > .condition > .filter-option > .btn-unindent{
  880. display: none;
  881. }
  882. .advanced-search-box li.condition > .filter-option{
  883. user-select: none;
  884. opacity: 0;
  885. transition: all 0.2s ease-in-out;
  886. }
  887. .advanced-search-box li.condition.hover > .filter-option{
  888. opacity: 1;
  889. }
  890. .advanced-search-box li.condition{
  891. transition: background 0.2s ease-in-out;
  892. }
  893. .advanced-search-box li.condition.error:after {
  894. font-weight: bold;
  895. font-size: 13px;
  896. background-color: #ffc107;
  897. padding: 3px 10px;
  898. content: 'Erreur';
  899. position: absolute;
  900. bottom: calc(50% - 14px);
  901. right: 150px;
  902. border-radius: 30px;
  903. color: #fff;
  904. }
  905. .advanced-search-box li.condition.hover{
  906. background-color: rgba(255,255,255,0.5);
  907. }
  908. .advanced-search-box ul.group {
  909. padding: 3px;
  910. background-color: #f5f9ff;
  911. }
  912. .advanced-search-box ul.group ul.group{
  913. position: relative;
  914. background-color: rgb(197, 225, 255);
  915. border-left: 5px solid #78b9ff;
  916. padding-right: 20px;
  917. counter-increment: number;
  918. }
  919. .advanced-search-box ul.group ul.group ~ .filter-option {
  920. height: calc(100% - 6px);
  921. background-color: rgb(72, 86, 109);
  922. position: absolute;
  923. opacity: 1;
  924. top: 3px;
  925. right: 3px;
  926. color: #fff;
  927. }
  928. .advanced-search-box ul.group ~ .filter-option i {
  929. margin: 5px;
  930. padding: 0;
  931. }
  932. .advanced-search-box ul.group ul.group ~ .filter-option i{
  933. display: block;
  934. font-size: 10px;
  935. transition: none;
  936. }
  937. .advanced-search-box ul.group ul.group ~ .filter-option i.btn-unindent,
  938. .advanced-search-box ul.group ul.group ~ .filter-option i.btn-indent{
  939. display: none;
  940. }
  941. .advanced-search-box ul.group ul.group ul.group{
  942. background-color: rgb(211, 243, 197);
  943. border-color: rgb(104, 212, 57);
  944. }
  945. .advanced-search-box ul.group ul.group ul.group ul.group{
  946. background-color: rgb(243, 197, 230);
  947. border-color: rgb(222, 130, 196);
  948. }
  949. .advanced-search-box ul.group ul.group ul.group ul.group ul.group{
  950. background-color: #d8d8d8;
  951. border-color: rgb(95, 95, 95);
  952. }
  953. .advanced-search-box li {
  954. padding: 3px;
  955. position:relative;
  956. }
  957. .advanced-search-box .filter-join{
  958. border: 1px solid #007bff;
  959. background: #f3f9ff;
  960. color: #007bff;
  961. width: 50px;
  962. display: block;
  963. text-transform: uppercase;
  964. margin-top: 5px;
  965. margin-left: 3px;
  966. font-weight: bold;
  967. font-size: 12px;
  968. border-radius: 10px;
  969. }
  970. .advanced-search-box li.condition:last-child > .filter-join{
  971. display: none;
  972. }
  973. .advanced-search-box .filter-column,
  974. .advanced-search-box .filter-operator,
  975. .advanced-search-box .filter-value {
  976. vertical-align: top;
  977. display: inline-block;
  978. width: auto;
  979. }
  980. .advanced-search-box .filter-value{
  981. margin-right: 5px;
  982. max-width: 100%;
  983. }
  984. .advanced-search-box .filter-operator select{
  985. color: #007bff!important;
  986. border:0;
  987. background: transparent;
  988. }
  989. .advanced-search-box .filter-column select{
  990. font-weight: 700!important;
  991. background-color: transparent;
  992. border: none;
  993. padding-left: 0;
  994. display: inline-block;
  995. }
  996. .advanced-search-box .filter-option{
  997. position: absolute;
  998. right: 5px;
  999. top: 11px;
  1000. }
  1001. .advanced-search-box .filter-option i{
  1002. padding: 5px;
  1003. cursor: pointer;
  1004. opacity: 0.5;
  1005. transition: all 0.2s ease-in-out;
  1006. }
  1007. .advanced-search-box .filter-option i.btn-move{
  1008. cursor: move;
  1009. }
  1010. .advanced-search-box .filter-option i.btn-delete:hover {
  1011. color: #ca0202;
  1012. }
  1013. .advanced-search-box .filter-option i.btn-add:hover {
  1014. color: #28a745;
  1015. }
  1016. .advanced-search-box .filter-option i:hover{
  1017. opacity: 1;
  1018. transform: scale(1.15);
  1019. }
  1020. .advanced-search-box .options{
  1021. float: right;
  1022. }
  1023. .advanced-search-box .options > div{
  1024. float: right;
  1025. border-radius: 0;
  1026. }
  1027. .advanced-search-box .options > div:first-child{
  1028. border-radius: 0 0 3px 0;
  1029. }
  1030. .advanced-search-box .options > div:last-child{
  1031. border-radius: 0 0 0 3px;
  1032. }
  1033. .advanced-search-box .options > div.preferences > .btn{
  1034. border-radius: 0px 0px 0px 3px;
  1035. }
  1036. .advanced-search-box .options div.tools {
  1037. font-size: 0.9em;
  1038. }
  1039. .btn-search-load .btn-search-global{
  1040. transition: color 0.2s ease-in-out;
  1041. display: none;
  1042. }
  1043. .advanced-search-box .btn-search-load[data-global="1"] .btn-search-delete {
  1044. display: none;
  1045. }
  1046. .btn-search-load[data-global="1"] .btn-search-global{
  1047. color: #007bff!important;
  1048. }
  1049. .advanced-search-box[data-configure="1"] .btn-search-global{
  1050. display: inline-block;
  1051. }
  1052. .advanced-search-box[data-configure="1"] .btn-search-load[data-global="1"] .btn-search-delete {
  1053. display: inline-block;
  1054. }
  1055. @media (max-width: 767px) {
  1056. .advanced-search-box .simple-search .filter-keyword {
  1057. border-radius: .25rem .25rem 0 .25rem !important;
  1058. }
  1059. .advanced-search-box ul.group ul.group {
  1060. padding: 0.15em;
  1061. }
  1062. .advanced-search-box li {
  1063. padding: .5em 0;
  1064. padding: 0;
  1065. padding-bottom: 0;
  1066. }
  1067. .advanced-search-box li.condition > .filter-option {
  1068. position: relative;
  1069. text-align: right;
  1070. width: 100%;
  1071. vertical-align: top;
  1072. top: unset;
  1073. right: unset;
  1074. display: inline-block;
  1075. padding-top: 0.35rem;
  1076. opacity: 1;
  1077. }
  1078. .advanced-search-box .filter-column,
  1079. .advanced-search-box .filter-operator,
  1080. .advanced-search-box .filter-value {
  1081. width: 100%;
  1082. display: block;
  1083. }
  1084. .advanced-search-box .filter-value input {
  1085. width: 100%;
  1086. font-size: 0.9em;
  1087. padding-top: 0.25rem;
  1088. height: calc(1.5em + .5rem + 2px);
  1089. }
  1090. .advanced-search-box .filter-column select,
  1091. .advanced-search-box .filter-operator select,
  1092. .advanced-search-box .filter-value select {
  1093. width: 100%;
  1094. font-size: 0.9em;
  1095. padding: 0;
  1096. height: calc(1.5em + .5rem + 2px);
  1097. }
  1098. .advanced-search-box ul.group ul.group ~ .filter-option {
  1099. display: inline-block;
  1100. position: relative;
  1101. top: unset;
  1102. right: unset;
  1103. width: 100%;
  1104. text-align: right;
  1105. padding: 0.15rem;
  1106. padding-right: 0.15rem;
  1107. }
  1108. .advanced-search-box ul.group ul.group ~ .filter-option i {
  1109. display: inline-block;
  1110. font-size: 1em;
  1111. }
  1112. .advanced-search-box .filter-join {
  1113. margin: 0 auto;
  1114. font-size: 0.9rem;
  1115. }
  1116. .advanced-search-box ul.group ul.group ~ .filter-join {
  1117. margin: .45em auto;
  1118. font-size: 0.9rem;
  1119. }
  1120. }
  1121. /* FIN COMPOSANT SEARCH BOX */
  1122. /* COMPOSANT CHOIX */
  1123. .data-type-choice[required]{
  1124. padding-left: 2px;
  1125. }
  1126. .data-type-choice > label{
  1127. margin-bottom: 0px;
  1128. }
  1129. /* FIN COMPOSANT CHOIX */
  1130. /* COMPOSANT COLOR */
  1131. .component-color{
  1132. cursor: pointer;
  1133. position: relative;
  1134. }
  1135. .component-color[required] {
  1136. max-width: calc(40px + 0.25rem)!important;
  1137. }
  1138. .component-color .component-color-picker{
  1139. position: absolute;
  1140. background:#ffffff;
  1141. border-radius: 3px;
  1142. width: 160px;
  1143. z-index: 100;
  1144. left:-1px;
  1145. top:-1px;
  1146. box-shadow: 0 0 20px rgba(0,0,0,0.3);
  1147. padding:5px;
  1148. opacity: 0;
  1149. transition: all 0.2s ease-in-out;
  1150. transform: translateX(-20px);
  1151. }
  1152. .component-color-picker ul{
  1153. padding:0;
  1154. margin: 0;
  1155. }
  1156. .component-color .component-color-picker.active{
  1157. transform: translateX(0px);
  1158. opacity: 1;
  1159. }
  1160. .component-color.form-control{
  1161. max-width: 40px;
  1162. }
  1163. .component-color .component-color-thumb{
  1164. width: 15px;
  1165. border-radius: 100px;
  1166. background-color: #333333;
  1167. height: 15px;
  1168. margin: auto;
  1169. }
  1170. .input-group-sm .component-color .component-color-thumb{
  1171. margin-top: 4px;
  1172. }
  1173. .input-group-sm .component-color.form-control {
  1174. max-width: 33px;
  1175. }
  1176. .component-color .component-color-palette{
  1177. display: none;
  1178. }
  1179. .component-color-picker li > div{
  1180. cursor: pointer;
  1181. width:20px;
  1182. height:20px;
  1183. border-radius: 100px;
  1184. }
  1185. .component-color-picker li {
  1186. vertical-align: top;
  1187. padding: 5px;
  1188. display: inline-block;
  1189. }
  1190. .component-color .other-color{
  1191. color: #525252;
  1192. text-align: center;
  1193. display: flex;
  1194. }
  1195. .component-color .other-color > i{
  1196. margin: auto;
  1197. }
  1198. .component-color .color-choice {
  1199. transition: transform 0.1s linear;
  1200. }
  1201. .component-color .other-color {
  1202. transition: color 0.1s linear;
  1203. }
  1204. .component-color .other-color:hover {
  1205. color: #232323;
  1206. }
  1207. .component-color .color-choice:hover {
  1208. transform: scale(1.2);
  1209. }
  1210. /* FIN COMPOSANT COLOR */
  1211. /* COMPOSANT ICÔNES */
  1212. .component-icon.dropdown {
  1213. position: unset;
  1214. }
  1215. div.component-icon[required]{
  1216. border: 0!important;
  1217. }
  1218. .component-icon[required] > .dropdown-toggle{
  1219. border-left: 0.25rem solid #FFA100 !important;
  1220. }
  1221. .component-icon div.dropdown-menu {
  1222. width: 100%;
  1223. max-width: 550px;
  1224. }
  1225. .component-icon.dropdown[readonly] .dropdown-toggle,
  1226. .component-icon.dropdown[disabled] .dropdown-toggle{
  1227. background-color: #cecece!important;
  1228. border-color: #aeaeae!important;
  1229. color:#ffffff!important;
  1230. }
  1231. .component-icon.dropdown[readonly] .dropdown-toggle::after,
  1232. .component-icon.dropdown[disabled] .dropdown-toggle::after{
  1233. display: none;
  1234. }
  1235. .component-icon div.dropdown-menu > div.icons-list {
  1236. max-height: 300px;
  1237. overflow-y: auto;
  1238. padding-left: 5px;
  1239. }
  1240. .component-icon .dropdown-item {
  1241. display: block;
  1242. height: auto;
  1243. padding: .25rem 0.5rem;
  1244. width: 100%;
  1245. }
  1246. .component-icon .dropdown-icon-item {
  1247. cursor: pointer;
  1248. display: inline-flex;
  1249. width: 35px;
  1250. height: 35px;
  1251. transition: all 0.08s linear;
  1252. }
  1253. .component-icon .dropdown-icon-item:focus,
  1254. .component-icon .dropdown-icon-item:active,
  1255. .component-icon .dropdown-icon-item:hover {
  1256. color: #fff;
  1257. text-decoration: none;
  1258. background-color: #007bff;
  1259. border-radius: 3px;
  1260. }
  1261. .component-icon span.dropdown-icon-item > i {
  1262. margin: auto;
  1263. }
  1264. .icon-chooser button {
  1265. border-top-right-radius: 0;
  1266. border-bottom-right-radius: 0;
  1267. }
  1268. .component-icon .dropdown-item.active,
  1269. .component-icon .dropdown-item:active {
  1270. color: unset;
  1271. background-color: unset;
  1272. }
  1273. .component-icon .dropdown-item:focus,
  1274. .component-icon .dropdown-item:hover {
  1275. color: unset;
  1276. background-color: unset;
  1277. }
  1278. .component-icon .no-icon{
  1279. border: 2px dashed #cecece;
  1280. color:#cecece;
  1281. border-radius: 5px;
  1282. padding: 5px;
  1283. transition: all 0.2s ease-in-out;
  1284. height: 35px;
  1285. width: 35px;
  1286. }
  1287. .component-icon .no-icon.dropdown-icon-item:focus,
  1288. .component-icon .no-icon.dropdown-icon-item:active,
  1289. .component-icon .no-icon.dropdown-icon-item:hover {
  1290. border-color: #ffc107;
  1291. color: #ffc107;
  1292. background-color: transparent;
  1293. border-radius: 5px;
  1294. }
  1295. /* FIN COMPOSANT ICÔNES */
  1296. /* COMPOSANT ENTITY PICKER */
  1297. .data-type-entitypicker{
  1298. cursor: pointer;
  1299. min-height: calc(1.5em + .75rem + 2px)!important;
  1300. height: auto!important;
  1301. }
  1302. .entitypicker-modal .list-group-item.active .text-muted{
  1303. color: #a9d7ff!important;
  1304. }
  1305. .entitypicker-clear{
  1306. float: right;
  1307. margin: 4px;
  1308. cursor: pointer;
  1309. }
  1310. .entitypicker-modal .plugin-list-container{
  1311. max-height: 600px;
  1312. overflow: auto;
  1313. }
  1314. input[data-type="entitypicker"]{
  1315. display: none;
  1316. }
  1317. /* FIN COMPOSANT ENTITY PICKER */
  1318. /* COMPOSANT DATE */
  1319. input[data-type="date"]{
  1320. background-image: url('../img/icons/icon-calendar.png');
  1321. background-repeat: no-repeat;
  1322. background-position: 10px center;
  1323. padding-left: 30px!important;
  1324. transition: color 0.2s ease-in-out;
  1325. }
  1326. div#ui-datepicker-div{
  1327. background-color: #ffffff;
  1328. border:1px solid #cecece;
  1329. z-index:10000 !important;
  1330. }
  1331. /* FIN COMPOSANT DATE */
  1332. /* COMPOSANT HOUR */
  1333. input[data-type="hour"]{
  1334. background-image: url('../img/icons/icon-clock.png');
  1335. background-repeat: no-repeat;
  1336. background-position: 10px center;
  1337. padding-left: 30px!important;
  1338. }
  1339. /* FIN COMPOSANT HOUR */
  1340. /* COMPOSANT PHONE */
  1341. input[data-type="phone"]{
  1342. background-image: url('../img/icons/icon-phone.svg');
  1343. background-size: auto 14px;
  1344. background-repeat: no-repeat;
  1345. background-position: 10px center;
  1346. padding-left: 30px!important;
  1347. transition: border 0.4s ease-in-out;
  1348. }
  1349. /* FIN COMPOSANT PHONE */
  1350. /* COMPOSANT CHECKBOX */
  1351. label.check-component {
  1352. width: 15px;
  1353. height: 15px;
  1354. margin: 0 5px;
  1355. /*margin: auto;*/
  1356. border: 1px solid #bbbbbb;
  1357. }
  1358. label.check-component input {
  1359. display: none;
  1360. }
  1361. label.check-component[readonly] input + .box{
  1362. background-color: #e9ecef!important;
  1363. }
  1364. label.check-component[readonly] input + .box:after {
  1365. border-color: #ababab!important;
  1366. }
  1367. label.check-component input:checked + .box {
  1368. background-color: #ddf8d8;
  1369. }
  1370. label.check-component[required] {
  1371. box-shadow: -2px 0px 1px 0px #ffa100;
  1372. }
  1373. label.check-component input:indeterminate + .box {
  1374. background-color: #ffd6c9;
  1375. }
  1376. label.check-component .box {
  1377. width: 100%;
  1378. height: 100%;
  1379. transition: .35s cubic-bezier(0.19, 1, 0.22, 1);
  1380. transition-property: background-color, color, top, left, right, bottom;
  1381. border: 2px solid transparent;
  1382. background-color: white;
  1383. position: relative;
  1384. overflow: hidden;
  1385. cursor: pointer;
  1386. box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  1387. }
  1388. label.check-component input:checked + .box:after {
  1389. width: 85%;
  1390. height: 45%;
  1391. border-left: 1.5px solid;
  1392. border-bottom: 1.5px solid;
  1393. border-color: #28b72e;
  1394. transform: rotate(-45deg) translate3d(0, 0, 0);
  1395. transform-origin: center center;
  1396. top: 0;
  1397. }
  1398. label.check-component input:indeterminate + .box:after {
  1399. width: 75%;
  1400. height: 0;
  1401. top: 1px;
  1402. border-top: 1px solid rgba(50, 50, 50,.5);
  1403. }
  1404. label.check-component .box:after {
  1405. content: '';
  1406. position: absolute;
  1407. transition: .35s cubic-bezier(0.19, 1, 0.22, 1);
  1408. transition-property: background-color, color, top, left, right, bottom;
  1409. left: 0;
  1410. right: 0;
  1411. top: 200%;
  1412. bottom: 5%;
  1413. margin: auto;
  1414. }
  1415. label[disabled].check-component input:checked + .box,
  1416. label[disabled].check-component .box {
  1417. background-color: #e8e8e8;
  1418. cursor: not-allowed;
  1419. }
  1420. label[disabled].check-component input:checked + .box:after {
  1421. border-color: #565656;
  1422. }
  1423. .advanced-search .filter-value label.check-component {
  1424. margin: 15px 5px 0 5px;
  1425. }
  1426. /* FIN COMPOSANT CHECKBOX */
  1427. /* COMPOSANT RADIO */
  1428. .radio-component:checked,
  1429. .radio-component:not(:checked) {
  1430. position: absolute;
  1431. left: -9999px;
  1432. }
  1433. .radio-component:checked + label,
  1434. .radio-component:not(:checked) + label {
  1435. position: relative;
  1436. padding-left: 20px;
  1437. cursor: pointer;
  1438. line-height: 20px;
  1439. display: inline-block;
  1440. color: #333;
  1441. margin-bottom: 0;
  1442. pointer-events: none;
  1443. }
  1444. .radio-component:checked + label:before,
  1445. .radio-component:not(:checked) + label:before {
  1446. content: '';
  1447. position: absolute;
  1448. left: 0;
  1449. top: -15px;
  1450. width: 18px;
  1451. height: 18px;
  1452. border: 1px solid #7db581;
  1453. box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  1454. border-radius: 100%;
  1455. background: #fff;
  1456. pointer-events: all;
  1457. }
  1458. .radio-component:checked + label:after,
  1459. .radio-component:not(:checked) + label:after {
  1460. content: '';
  1461. width: 8px;
  1462. height: 8px;
  1463. background: #2fca26;
  1464. position: absolute;
  1465. top: -10px;
  1466. left: 5px;
  1467. border-radius: 100%;
  1468. -webkit-transition: all 0.2s ease;
  1469. transition: all 0.2s ease;
  1470. pointer-events: all;
  1471. }
  1472. .radio-component:not(:checked) + label:after {
  1473. opacity: 0;
  1474. -webkit-transform: scale(0);
  1475. transform: scale(0);
  1476. }
  1477. .radio-component:checked + label:after {
  1478. opacity: 1;
  1479. -webkit-transform: scale(1);
  1480. transform: scale(1);
  1481. }
  1482. .radio-component:checked + label[disabled],
  1483. .radio-component:not(:checked) + label[disabled] {
  1484. cursor: not-allowed;
  1485. }
  1486. .radio-component:checked + label[disabled]:before,
  1487. .radio-component:not(:checked) + label[disabled]:before {
  1488. border: 1px solid #2541274a;
  1489. box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  1490. background: #e8e8e8;
  1491. }
  1492. /* FIN COMPOSANT RADIO */
  1493. /* COMPOSANT CARD */
  1494. *[data-type="card"].card-component-container {
  1495. cursor: pointer;
  1496. color: #2b9ad8;
  1497. position: relative;
  1498. }
  1499. *[data-type="card"].card-component-container > div.wrapper {
  1500. position: absolute;
  1501. display: block;
  1502. min-height: 0px;
  1503. z-index: 10;
  1504. }
  1505. *[data-type="card"].card-component-container:hover {
  1506. text-decoration: underline;
  1507. color: #207cb1;
  1508. }
  1509. .card-component {
  1510. text-transform: none;
  1511. font-size: 12pt;
  1512. cursor: default;
  1513. color: #2a2a28;
  1514. opacity: 0;
  1515. position: absolute;
  1516. z-index: -1;
  1517. background-color: #fff;
  1518. border-radius: 4px;
  1519. box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, .15);
  1520. transition: all .40s;
  1521. }
  1522. .card-component-hover {
  1523. animation: slide-up-fade-in ease 0.35s;
  1524. animation-iteration-count: 1;
  1525. transform-origin: 50% 50%;
  1526. animation-fill-mode:forwards;
  1527. -webkit-animation: slide-up-fade-in ease 0.35s;
  1528. -webkit-animation-iteration-count: 1;
  1529. -webkit-transform-origin: 50% 50%;
  1530. -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
  1531. -moz-animation: slide-up-fade-in ease 0.35s;
  1532. -moz-animation-iteration-count: 1;
  1533. -moz-transform-origin: 50% 50%;
  1534. -moz-animation-fill-mode:forwards; /*FF 5+*/
  1535. -o-animation: slide-up-fade-in ease 0.35s;
  1536. -o-animation-iteration-count: 1;
  1537. -o-transform-origin: 50% 50%;
  1538. -o-animation-fill-mode:forwards; /*Not implemented yet*/
  1539. -ms-animation: slide-up-fade-in ease 0.35s;
  1540. -ms-animation-iteration-count: 1;
  1541. -ms-transform-origin: 50% 50%;
  1542. -ms-animation-fill-mode:forwards; /*IE 10+*/
  1543. }
  1544. .card-component-hide {
  1545. animation: slide-down-fade-out ease 0.25s;
  1546. animation-iteration-count: 1;
  1547. transform-origin: 50% 50%;
  1548. animation-fill-mode:forwards;
  1549. -webkit-animation: slide-down-fade-out ease 0.25s;
  1550. -webkit-animation-iteration-count: 1;
  1551. -webkit-transform-origin: 50% 50%;
  1552. -webkit-animation-fill-mode:forwards;
  1553. -moz-animation: slide-down-fade-out ease 0.25s;
  1554. -moz-animation-iteration-count: 1;
  1555. -moz-transform-origin: 50% 50%;
  1556. -moz-animation-fill-mode:forwards;
  1557. -o-animation: slide-down-fade-out ease 0.25s;
  1558. -o-animation-iteration-count: 1;
  1559. -o-transform-origin: 50% 50%;
  1560. -o-animation-fill-mode:forwards;
  1561. -ms-animation: slide-down-fade-out ease 0.25s;
  1562. -ms-animation-iteration-count: 1;
  1563. -ms-transform-origin: 50% 50%;
  1564. -ms-animation-fill-mode:forwards;
  1565. }
  1566. @keyframes slide-up-fade-in{
  1567. 0% {
  1568. opacity:0;
  1569. z-index: -1;
  1570. transform: translate(0px,40px);
  1571. }
  1572. 100% {
  1573. opacity:1;
  1574. z-index: 1100;
  1575. transform: translate(0px,0px);
  1576. }
  1577. }
  1578. @-moz-keyframes slide-up-fade-in{
  1579. 0% {
  1580. opacity:0;
  1581. z-index: -1;
  1582. transform: translate(0px,40px);
  1583. }
  1584. 100% {
  1585. opacity:1;
  1586. z-index: 1100;
  1587. transform: translate(0px,0px);
  1588. }
  1589. }
  1590. @-webkit-keyframes slide-up-fade-in{
  1591. 0% {
  1592. opacity:0;
  1593. z-index: -1;
  1594. transform: translate(0px,40px);
  1595. }
  1596. 100% {
  1597. opacity:1;
  1598. z-index: 1100;
  1599. transform: translate(0px,0px);
  1600. }
  1601. }
  1602. @-o-keyframes slide-up-fade-in{
  1603. 0% {
  1604. opacity:0;
  1605. z-index: -1;
  1606. transform: translate(0px,40px);
  1607. }
  1608. 100% {
  1609. opacity:1;
  1610. z-index: 1100;
  1611. transform: translate(0px,0px);
  1612. }
  1613. }
  1614. @keyframes slide-down-fade-out{
  1615. 0% {
  1616. opacity:1;
  1617. z-index: 1100;
  1618. transform: translate(0px,0px);
  1619. }
  1620. 100% {
  1621. opacity:0;
  1622. z-index: -1;
  1623. transform: translate(0px,40px);
  1624. }
  1625. }
  1626. @-moz-keyframes slide-down-fade-out{
  1627. 0% {
  1628. opacity:1;
  1629. z-index: 1100;
  1630. transform: translate(0px,0px);
  1631. }
  1632. 100% {
  1633. opacity:0;
  1634. z-index: -1;
  1635. transform: translate(0px,40px);
  1636. }
  1637. }
  1638. @-webkit-keyframes slide-down-fade-out{
  1639. 0% {
  1640. opacity:1;
  1641. z-index: 1100;
  1642. transform: translate(0px,0px);
  1643. }
  1644. 100% {
  1645. opacity:0;
  1646. z-index: -1;
  1647. transform: translate(0px,40px);
  1648. }
  1649. }
  1650. @-o-keyframes slide-down-fade-out{
  1651. 0% {
  1652. opacity:1;
  1653. z-index: 1100;
  1654. transform: translate(0px,0px);
  1655. }
  1656. 100% {
  1657. opacity:0;
  1658. z-index: -1;
  1659. transform: translate(0px,40px);
  1660. }
  1661. }
  1662. /* FIN COMPOSANT CARD */
  1663. /* COMPOSANT LOCATION */
  1664. input[data-type="location"]{
  1665. background-image: url('../img/icons/icon-location.png');
  1666. background-repeat: no-repeat;
  1667. background-position: 10px center;
  1668. padding-left: 30px!important;
  1669. }
  1670. .input-group-sm input[data-type="location"]{
  1671. height: calc(1.5em + .5rem + 2px);
  1672. padding: .25rem .5rem;
  1673. font-size: .875rem;
  1674. line-height: 1.5;
  1675. }
  1676. /* FIN COMPOSANT LOCATION */
  1677. /* COMPOSANT MAP */
  1678. *[data-type="map"]{
  1679. display: none;
  1680. }
  1681. /* FIN COMPOSANT MAP */
  1682. /* COMPOSANT CONTACT */
  1683. input.data-type-contact{
  1684. background-image: url('../img/icons/icon-contact.png');
  1685. background-repeat:no-repeat;
  1686. background-position: 10px center;
  1687. padding-left: 30px!important;
  1688. }
  1689. /* FIN COMPOSANT CONTACT */
  1690. /* COMPOSANT USER */
  1691. input[data-type="user"]{
  1692. display: none!important;
  1693. }
  1694. div.data-type-user{
  1695. background-image: url('../img/icons/icon-user.png');
  1696. background-repeat: no-repeat;
  1697. background-position: 10px center;
  1698. padding-left: 30px !important;
  1699. display: inline-block;
  1700. }
  1701. div.data-type-user[disabled],div.data-type-user[readonly] {
  1702. background-color: #e9ecef !important;
  1703. }
  1704. .input-group > .form-control.data-type-user,
  1705. .input-group > .form-control-plaintext.data-type-user {
  1706. position: unset;
  1707. }
  1708. div.data-type-user.unfolded{
  1709. background-position: 10px 10px;
  1710. }
  1711. div.data-type-user.unfolded{
  1712. position : absolute;
  1713. height: 200px;
  1714. overflow: auto;
  1715. z-index: 100;
  1716. top: 0;
  1717. left: 0;
  1718. }
  1719. div.data-type-user.unfolded.overflowing .unfold{
  1720. display: none;
  1721. }
  1722. div.data-type-user .unfold{
  1723. display: none;
  1724. color: #cecece;
  1725. float: right;
  1726. cursor: pointer;
  1727. }
  1728. div.data-type-user.overflowing.unfolded{
  1729. overflow: inherit;
  1730. }
  1731. div.data-type-user.overflowing{
  1732. overflow: auto;
  1733. }
  1734. div.data-type-user.overflowing .unfold{
  1735. display: inline-block;
  1736. }
  1737. div.data-type-user::-webkit-scrollbar {
  1738. width: 5px;
  1739. }
  1740. div.data-type-user::-webkit-scrollbar-track {
  1741. background: #f1f1f1;
  1742. }
  1743. div.data-type-user::-webkit-scrollbar-thumb {
  1744. background: #888;
  1745. border-radius: 5px;
  1746. }
  1747. div.data-type-user::-webkit-scrollbar-thumb:hover {
  1748. background: #555;
  1749. }
  1750. div.data-type-user[required] {
  1751. border-left: 0.25rem solid #FFA100 !important;
  1752. }
  1753. div.data-type-user > ul > li > input{
  1754. border: 0;
  1755. outline: none;
  1756. margin: 0;
  1757. background: transparent;
  1758. padding: 0 0 7px 0;
  1759. }
  1760. div.data-type-user > ul{
  1761. cursor: text;
  1762. border: 0;
  1763. margin: 0;
  1764. padding: 0;
  1765. height: 100%;
  1766. width: 100%;
  1767. vertical-align: top;
  1768. list-style-type: none;
  1769. /*display: flex;*/
  1770. align-items: center;
  1771. }
  1772. div.data-type-user > ul > li{
  1773. padding: 0 5px 0 5px;
  1774. display: inline-block;
  1775. margin: 0;
  1776. padding: 0 5px 0 0;
  1777. vertical-align: middle;
  1778. }
  1779. div.data-type-user > ul > li > div{
  1780. display: flex;
  1781. font-size: 12px;
  1782. border-bottom: 1px solid #4caf50;
  1783. text-overflow: ellipsis;
  1784. white-space: nowrap;
  1785. padding: 0;
  1786. margin: 0 0 3px 0;
  1787. }
  1788. div.data-type-user > ul > li > div > i{
  1789. margin: auto;
  1790. margin-left: 5px;
  1791. cursor: pointer;
  1792. vertical-align: middle;
  1793. font-size: 9px;
  1794. }
  1795. div.data-type-user ul.dropdown-menu .dropdown-item {
  1796. position: relative;
  1797. padding: .25rem 0.50rem;
  1798. }
  1799. div.data-type-user ul.dropdown-menu div.user-logo,
  1800. div.data-type-user ul.dropdown-menu div.rank-logo {
  1801. display: inline-block;
  1802. width: auto;
  1803. position: absolute;
  1804. top: 50%;
  1805. transform: translateY(-50%);
  1806. }
  1807. div.data-type-user ul.dropdown-menu div.user-infos,
  1808. div.data-type-user ul.dropdown-menu div.rank-infos {
  1809. margin-left: 2.25rem;
  1810. min-height: 30px;
  1811. }
  1812. .user-picker-tag[data-entity="rank"] div{
  1813. border-color: #03a9f4;
  1814. }
  1815. /* FIN COMPOSANT USER */
  1816. /* COMPOSANT TAG-LIST & TAG */
  1817. input[data-type="tag-list"]{
  1818. display:none!important;
  1819. }
  1820. input[data-type="tag"]{
  1821. display:none!important;
  1822. }
  1823. div.data-type-tag-list,.data-type-tag{
  1824. background-image: url('../img/icons/icon-tag.png');
  1825. background-repeat:no-repeat;
  1826. background-position: 10px center;
  1827. padding-left: 30px !important;
  1828. height:inherit !important;
  1829. }
  1830. div.data-type-tag[required],div.data-type-tag-list[required] {
  1831. border-left: 0.25rem solid #FFA100 !important;
  1832. }
  1833. div.data-type-tag-list[disabled],
  1834. div.data-type-tag-list[readonly],
  1835. div.data-type-tag[readonly] {
  1836. background-color:#e9ecef !important;
  1837. }
  1838. div.data-type-tag-list > ul > li > input,
  1839. div.data-type-tag > ul > li > input{
  1840. border: 0;
  1841. outline: none;
  1842. height: 18px;
  1843. font-size: 12px;
  1844. margin: 0;
  1845. background: transparent;
  1846. padding: 0 0 0 3px;
  1847. }
  1848. div.data-type-tag-list > ul,
  1849. div.data-type-tag > ul{
  1850. border: 0;
  1851. margin: 0;
  1852. padding: 0;
  1853. height: 100%;
  1854. width: 100%;
  1855. vertical-align: top;
  1856. list-style-type: none;
  1857. /*display: flex;*/
  1858. align-items: center;
  1859. }
  1860. div.data-type-tag-list > ul > li,
  1861. div.data-type-tag > ul > li{
  1862. padding: 0 5px 0 5px;
  1863. display: inline-block;
  1864. margin: 0;
  1865. padding:0 5px 0 0;
  1866. vertical-align: text-bottom;
  1867. }
  1868. .data-type-tag-list > ul > li > div > i,
  1869. .data-type-tag > ul > li > div > i{
  1870. margin: auto;
  1871. margin-left: 5px;
  1872. cursor: pointer;
  1873. vertical-align: middle;
  1874. font-size: 9px;
  1875. }
  1876. div.data-type-tag-list ul.dropdown-menu .dropdown-item {
  1877. position: relative;
  1878. padding: .25rem 1.25rem;
  1879. }
  1880. div.data-type-tag-list > ul > li > div,
  1881. div.data-type-tag > ul > li > div {
  1882. display: flex;
  1883. font-size: 12px;
  1884. text-overflow: ellipsis;
  1885. white-space: nowrap;
  1886. border-radius: 3px;
  1887. padding: 0 5px 0 5px;
  1888. background-color: #e9ecef;
  1889. }
  1890. /* FIN COMPOSANT TAG-LIST & TAG */
  1891. /* COMPOSANT CHECKBOX LIST */
  1892. input[data-type="checkbox-list"]{
  1893. display: none!important;
  1894. }
  1895. .data-type-checkbox-list.form-control{
  1896. height: auto;
  1897. }
  1898. .data-type-checkbox-list.form-control ul{
  1899. list-style-type: none;
  1900. padding: 0;
  1901. margin:0 0 0 36px;
  1902. }
  1903. .data-type-checkbox-list.form-control > ul{
  1904. padding: 5px 12px;
  1905. margin:0;
  1906. }
  1907. .data-type-checkbox-list.form-control .checkbox-toggle-fold{
  1908. transition: transform 0.15s ease-in-out;
  1909. font-size: 0.8rem;
  1910. line-height: 1.2rem;
  1911. height: 15px;
  1912. width: 15px;
  1913. text-align: center;
  1914. }
  1915. .data-type-checkbox-list.form-control [data-folded="0"] > .dropdown-element > .checkbox-toggle-fold:first-child{
  1916. transform : rotate(90deg);
  1917. transform-origin: 8px 9px;
  1918. }
  1919. .data-type-checkbox-list.form-control .checkbox-list-check-all{
  1920. font-size: 10px;
  1921. }
  1922. .data-type-checkbox-list.form-control .checkbox-list-check-all.hide{
  1923. visibility: hidden;
  1924. opacity: 0;
  1925. }
  1926. .data-type-checkbox-list.form-control .checkbox-list-check-all:not(.hide) {
  1927. visibility: visible;
  1928. opacity: 1;
  1929. transition: visibility 0s, opacity 0.3s linear;
  1930. }
  1931. .data-type-checkbox-list.form-control [data-folded="1"] > ul{
  1932. display: none;
  1933. }
  1934. .data-type-checkbox-list.form-control ul li label{
  1935. padding:0;
  1936. cursor: pointer;
  1937. margin:0;
  1938. }
  1939. .data-type-checkbox-list .dropdown-menu{
  1940. max-height: 200px;
  1941. overflow: auto;
  1942. }
  1943. .data-type-checkbox-list .dropdown-menu .dropdown-item.active,
  1944. .data-type-checkbox-list .dropdown-menu .dropdown-item:active{
  1945. color: inherit;
  1946. background-color: inherit;
  1947. }
  1948. .data-type-checkbox-list .dropdown-menu .fa-stack{
  1949. font-size: 0.5em;
  1950. }
  1951. .data-type-checkbox-list .dropdown-toggle{
  1952. overflow: hidden;
  1953. white-space: nowrap;
  1954. text-overflow: ellipsis;
  1955. }
  1956. .data-type-checkbox-list.form-control > ul li.dropdown-item{
  1957. padding: 0;
  1958. }
  1959. .data-type-checkbox-list.form-control > ul li.dropdown-item:hover{
  1960. background-color: inherit;
  1961. }
  1962. .data-type-checkbox-list.form-control > ul li.dropdown-item label{
  1963. /*padding: .25rem 0.5rem;*/
  1964. }
  1965. .data-type-checkbox-list.form-control > ul > li,
  1966. .data-type-checkbox-list.form-control > ul input[type="checkbox"]
  1967. {
  1968. cursor: pointer;
  1969. }
  1970. /* FIN COMPOSANT CHECKBOX LIST */
  1971. /* COMPOSANT JSONTABLE */
  1972. input[data-type="jsontable"]{
  1973. display: none!important;
  1974. }
  1975. table.data-type-json[required]{
  1976. border-left: 0.25rem solid #FFA100 !important;
  1977. }
  1978. table.data-type-json[readonly] .btn-add-line,
  1979. table.data-type-json[readonly] .btn-remove{
  1980. display: none;
  1981. }
  1982. /* FIN COMPOSANT JSONTABLE */
  1983. /* COMPOSANT CHOICE */
  1984. input[data-type="choice"]{
  1985. display: none!important;
  1986. }
  1987. /* FIN COMPOSANT CHOICE */
  1988. /* COMPOSANT FIRM */
  1989. input[data-type="firm"]{
  1990. display: none!important;
  1991. }
  1992. input.data-type-firm{
  1993. background-image: url('../img/icons/icon-firm.png');
  1994. background-repeat: no-repeat;
  1995. background-position: 10px center;
  1996. padding-left: 30px !important;
  1997. }
  1998. /* FIN COMPOSANT FIRM */
  1999. /* COMPOSANT IMAGE */
  2000. .type-image-bloc {
  2001. position: relative;
  2002. }
  2003. .type-image-bloc .btn-delete-img {
  2004. position: absolute;
  2005. right: 0px;
  2006. }
  2007. .type-image-bloc img{
  2008. /*max-width:70px;*/
  2009. max-height:70px;
  2010. display: inline-block;
  2011. margin-right: 15px;
  2012. }
  2013. .type-image-bloc input{
  2014. display: inline-block;
  2015. width: auto;
  2016. }
  2017. /* FIN COMPOSANT IMAGE