main.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /** DASHBOARD **/
  2. /* Conteneur principal du plugin Dashboard */
  3. .plugin-dashboard{
  4. list-style-type: none;
  5. margin:0;
  6. padding:0;
  7. }
  8. .plugin-dashboard #dashboards {}
  9. /* formulaire d'édition de tableau de bord */
  10. .plugin-dashboard .dashboard-form {}
  11. html.module-index,
  12. .module-index body{
  13. background-color: #efefef;
  14. }
  15. .dashboard-placeholder{
  16. transition: background 0.15s linear;
  17. cursor: pointer;
  18. position: relative;
  19. }
  20. .dashboard-placeholder:hover{
  21. background-color: #e6e6e6;
  22. border-radius: 10px;
  23. }
  24. .dashboard-placeholder .placeholder-add{
  25. display: inline-block;
  26. opacity: 0;
  27. text-align: center;
  28. height: 100%;
  29. vertical-align: bottom;
  30. line-height: 100%;
  31. position: absolute;
  32. color: #b5b3b3;
  33. top: calc(50% - 15px);
  34. left: calc(50% - 15px);
  35. font-size: 30px;
  36. transition: opacity 0.15s linear;
  37. }
  38. .dashboard-placeholder:hover .placeholder-add{
  39. opacity: 1;
  40. }
  41. .dashboard-configure-menu li.active i.text-muted{
  42. color: #ffffff!important;
  43. }
  44. .dashboard-configure-menu li{
  45. cursor: pointer;
  46. transition: background 0.2s ease-in-out;
  47. }
  48. .dashboard-configure-menu li:hover{
  49. background: #f3f3f3;
  50. }