123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /** HOST **/
- /* Conteneur principal du plugin Hébergement */
- .plugin-host{
- list-style-type: none;
- margin:0;
- padding:0;
- }
- .module-host.embedded #mainMenu{
- display: none;
- }
- .module-host.embedded .container-fluid{
- padding-top: 0px;
- }
- .module-host.embedded body {
- margin-bottom: 0px;
- }
- .module-host.embedded .col-xl-3 {
- padding: 0 5px 0 5px;
- }
- .module-host.embedded .no-embedded {
- display: none;
- }
- .module-host.embedded .advanced-search-box{
- margin-top: 5px;
- }
- .module-host.embedded .form-control,
- .module-host.embedded .input-group-text,
- .module-host.embedded .btn,
- .module-host.embedded .list-group-item,
- .module-host.embedded .page-link
- {
- font-size: 11px;
- line-height: 11px;
- padding: 2px;
- }
- .module-host.embedded .advanced-search-box .btn
- {
- padding-top: 8px;
- }
- .plugin-host #hosts {}
- /* formulaire d'édition de machine / environnement */
- .plugin-host .machine-form {}
- #machines li{
- cursor: pointer;
- transition: background 0.2s ease-in-out;
- }
- #machines li:hover{
- background-color: #ececec!important;
- }
- #machines li.active:hover{
- background-color: #1568c2!important
- }
- #machines .list-group-item.active .text-muted {
- color: #67b8ff!important;
- }
- .host-application-container{
- background-color: #efefef;
- }
- #machine-form[data-readonly="true"] .noReadOnly,
- #machines .item-line.readonly .noReadOnly{
- display: none;
- }
- .machines-preloader {
- text-align: center;
- }
- .machines-preloader i{
- font-size: 40px;
- }
- .plugin-host .host-preloader{
- opacity: 1;
- transition: opacity 0.2s ease-in-out;
- }
- .plugin-host .host-preloader.hidden{
- display: block!important;
- opacity: 0;
- transition: opacity 0.2s ease-in-out;
- }
- .plugin-host-access-list.embedded .no-embedded{
- display: none!important;
- }
- .plugin-host-access-list.embedded #application-accesss thead tr th,
- .plugin-host-access-list.embedded #application-accesss tbody tr td{
- padding: 3px;
- }
- .plugin-host-access-list.embedded .page-item .page-link{
- padding: 3px;
- }
- .module-host.page-ping,.module-host.page-ping .container-fluid{
- background-color: #f6f6f6;
- }
- #vm-ping-list > li{
- min-height: 150px;
- }
- #vm-ping-list .applications{
- list-style-type: none;
- padding: 0;
- margin: 0;
- }
- #machine-applications li.selected{
- background-color: #ffffee;
- color: #b5a700;
- }
|