00d44256b4
Rebrand all 17 sub-extensions from mokowaas to mokosuite naming, including component, plugins, modules, task plugins, and webservices. Updates package manifest, workflows, docs, wiki, and issue templates. Adds new plg_system_mokosuite_license extension.
95 lines
1.5 KiB
CSS
95 lines
1.5 KiB
CSS
/**
|
|
* MokoSuite Dashboard Styles
|
|
* @package com_mokosuite
|
|
*/
|
|
|
|
/* Info bar */
|
|
.mokosuite-info-bar .card-body {
|
|
padding: 1rem 1.5rem;
|
|
}
|
|
|
|
.mokosuite-info-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.mokosuite-info-label {
|
|
font-size: 0.8125rem;
|
|
color: #6c757d;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.025em;
|
|
}
|
|
|
|
.mokosuite-info-value {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* Plugin cards */
|
|
.mokosuite-plugin-card {
|
|
transition: box-shadow 0.15s ease, opacity 0.15s ease;
|
|
border-left: 3px solid #0d6efd;
|
|
}
|
|
|
|
.mokosuite-plugin-card:hover {
|
|
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.mokosuite-plugin-disabled {
|
|
opacity: 0.6;
|
|
border-left-color: #adb5bd;
|
|
}
|
|
|
|
.mokosuite-plugin-disabled:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mokosuite-plugin-icon {
|
|
font-size: 1.5rem;
|
|
color: #1a2744;
|
|
width: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Category headings */
|
|
.mokosuite-category-heading {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
padding-top: 0.5rem;
|
|
}
|
|
|
|
/* Toggle switch */
|
|
.mokosuite-toggle {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mokosuite-toggle:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Quick actions */
|
|
.mokosuite-quick-actions .btn {
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.mokosuite-quick-actions .btn:disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Loading spinner overlay on toggle */
|
|
.mokosuite-plugin-card.is-loading {
|
|
position: relative;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mokosuite-plugin-card.is-loading::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(255, 255, 255, 0.7);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: inherit;
|
|
}
|