1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /** DASHBOARD **/
- /* Conteneur principal du plugin Dashboard */
- .plugin-dashboard{
- list-style-type: none;
- margin:0;
- padding:0;
- }
- .plugin-dashboard #dashboards {}
- /* formulaire d'édition de tableau de bord */
- .plugin-dashboard .dashboard-form {}
- html.module-index,
- .module-index body{
- background-color: #efefef;
- }
- .dashboard-placeholder{
- transition: background 0.15s linear;
- cursor: pointer;
- position: relative;
- border-radius: 10px;
- }
- .dashboard-placeholder:hover{
- background-color: #e6e6e6;
- }
- .dashboard-placeholder .placeholder-add{
- display: inline-block;
- opacity: 0;
- text-align: center;
- height: 100%;
- vertical-align: bottom;
- line-height: 100%;
- position: absolute;
- color: #b5b3b3;
- top: calc(50% - 15px);
- left: calc(50% - 15px);
- font-size: 30px;
- transition: opacity 0.15s linear;
- }
- .dashboard-placeholder:hover .placeholder-add{
- opacity: 1;
- }
|