1777 lines
38 KiB
SCSS
1777 lines
38 KiB
SCSS
$topbar-height: 4.2rem;
|
|
$update-height: 3rem;
|
|
$sidebar-width-large: 240px;
|
|
$sidebar-width-small: $topbar-height;
|
|
$sidebar-padding: 2rem;
|
|
$content-padding: 1.5rem;
|
|
|
|
// Special cases
|
|
.sidebar-closed:not(.sidebar-quickopen) {
|
|
#admin-sidebar {
|
|
float: left;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
width: $sidebar-width-small;
|
|
|
|
#admin-logo {
|
|
h3 {
|
|
font-size: 0;
|
|
&:first-letter {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|
|
|
|
&.error::before {
|
|
content: "\f071";
|
|
font-family: "FontAwesome";
|
|
margin-right: 0.65rem;
|
|
font-size: 1.2rem;
|
|
color: #c0392b;
|
|
}
|
|
}
|
|
|
|
.custom-logo {
|
|
margin-right: 0;
|
|
padding-right: 15px;
|
|
|
|
img {
|
|
padding: 0 5px;
|
|
}
|
|
}
|
|
|
|
#grav-logo-small {
|
|
display: inline-block;
|
|
}
|
|
|
|
#grav-logo-large {
|
|
display: none;
|
|
}
|
|
|
|
.front-end {
|
|
display: none;
|
|
}
|
|
|
|
#admin-user-details {
|
|
padding: 15px 0 15px 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.admin-user-names {
|
|
display: none;
|
|
}
|
|
|
|
#admin-menu {
|
|
em {
|
|
display: none;
|
|
}
|
|
|
|
li {
|
|
.badges {
|
|
.updates {
|
|
border-radius: 100%;
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 10px;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
padding: 1px 3px;
|
|
min-width: 15px;
|
|
}
|
|
.count {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#open-handle {
|
|
@include breakpoint(large-desktop-plus) {
|
|
.fa-angle-right:before {
|
|
content: "\f105";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#admin-main {
|
|
margin-left: $sidebar-width-small;
|
|
}
|
|
}
|
|
|
|
.sidebar-open {
|
|
#admin-sidebar {
|
|
z-index: 10001;
|
|
float: left;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
width: $sidebar-width-large;
|
|
|
|
h3 {
|
|
font-size: 1.2rem;
|
|
&:first-letter {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
|
|
#grav-logo-small {
|
|
display: none;
|
|
}
|
|
|
|
#grav-logo-large {
|
|
display: inline-block;
|
|
}
|
|
|
|
#admin-user-details {
|
|
padding: 15px 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.admin-user-names {
|
|
display: block;
|
|
}
|
|
|
|
.front-end {
|
|
display: inline-block;
|
|
}
|
|
|
|
#admin-menu {
|
|
em {
|
|
display: inline;
|
|
}
|
|
|
|
li {
|
|
.badges {
|
|
.updates {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0;
|
|
position: relative;
|
|
top: auto;
|
|
right: auto;
|
|
@extend .badge;
|
|
}
|
|
.count {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#open-handle {
|
|
@include breakpoint(mini-nav-range) {
|
|
.fa-angle-right:before {
|
|
content: "\f104";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#admin-sidebar {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
max-height: 100vh;
|
|
opacity: 0;
|
|
//transition: opacity 0.2s 0s, visibility 0s 0.2s;
|
|
|
|
#open-handle {
|
|
display: block;
|
|
position: absolute;
|
|
cursor: pointer;
|
|
right:0;
|
|
top: 0;
|
|
width: 15px;
|
|
height: $topbar-height;
|
|
text-align: center;
|
|
line-height: $topbar-height;
|
|
font-size: 12px;
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
.fa-angle-right:before {
|
|
content: "\f104";
|
|
}
|
|
}
|
|
}
|
|
|
|
&.sidebar-is-visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
//transition: opacity 0.2s 0s, visibility 0s 0s
|
|
}
|
|
|
|
@include breakpoint(mobile-only) {
|
|
z-index: 5;
|
|
}
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
float: left;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
width: $sidebar-width-small;
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
float: left;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
width: $sidebar-width-large;
|
|
}
|
|
|
|
}
|
|
|
|
#admin-logo {
|
|
height: $topbar-height;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&.nav-hover {
|
|
.admin-logo {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.admin-logo {
|
|
margin-right: -10px;
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
margin-right: 0;
|
|
&.custom-logo {
|
|
|
|
padding-right: 15px;
|
|
|
|
img {
|
|
padding: 0 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
a:not(.front-end) {
|
|
display: inherit;
|
|
}
|
|
|
|
&.custom-logo {
|
|
img {
|
|
max-height: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.front-end {
|
|
|
|
margin-left: 15px;
|
|
opacity: 0.6;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
display: none;
|
|
}
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
display: none;
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
display: inline-block;
|
|
}
|
|
|
|
}
|
|
|
|
#grav-logo-small {
|
|
height: 30px;
|
|
display: none;
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
display: inline-block;
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#grav-logo-large {
|
|
height: 30px;
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
display: none;
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
margin: 0;
|
|
|
|
@include breakpoint(tablet-plus) {
|
|
font-size: 0;
|
|
&:first-letter {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
font-size: 1.5rem;
|
|
&:first-letter {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
i {
|
|
font-size: 1rem;
|
|
vertical-align: middle;
|
|
margin-top: -1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.block-userinfo {
|
|
img {
|
|
width: 200px;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
& + .block-file {
|
|
margin-top: -5rem !important;
|
|
}
|
|
}
|
|
|
|
#offline-status {
|
|
padding: .2rem 1rem;
|
|
text-align: center;
|
|
display: none;
|
|
|
|
.fa-plane {
|
|
@include transform(rotate(45deg));
|
|
}
|
|
}
|
|
|
|
#admin-user-details {
|
|
img {
|
|
width: 47px;
|
|
height: 47px;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
#admin-user-details, .admin-user-details {
|
|
padding: 15px 10px;
|
|
min-height: 80px;
|
|
overflow: hidden;
|
|
text-align: left;
|
|
|
|
@include breakpoint(mini-nav-range) {
|
|
padding: 1rem 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
img {
|
|
@include transition(all 0.5s ease);
|
|
border-radius: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.admin-user-names {
|
|
margin-left: 60px;
|
|
margin-top: 5px;
|
|
display: block;
|
|
|
|
@include breakpoint(mini-nav-range) {
|
|
display: none;
|
|
}
|
|
|
|
h4, h5 {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.badge {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
h5 {
|
|
opacity: 0.7;
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
#admin-nav-quick-tray {
|
|
margin: 0;
|
|
list-style: none;
|
|
padding-left: 26px;
|
|
padding-right: 10px;
|
|
|
|
|
|
li {
|
|
cursor: pointer;
|
|
width: 24px;
|
|
margin: 3px 0 5px;
|
|
}
|
|
|
|
i {
|
|
transition: all .2s ease-in-out;
|
|
|
|
&:hover {
|
|
transform: scale(1.2);
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-padding {
|
|
#messages.default-box-shadow {
|
|
margin-bottom: $content-padding;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.admin-menu-wrapper {
|
|
height: calc(100vh - 180px);
|
|
//overflow: hidden;
|
|
|
|
@include breakpoint(mini-nav-range) {
|
|
height: calc(100vh - 136px);
|
|
}
|
|
}
|
|
|
|
#admin-menu {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
em {
|
|
font-style: normal;
|
|
|
|
@include breakpoint(mini-nav-range) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
li {
|
|
.badges {
|
|
float: right;
|
|
margin-right: 1rem;
|
|
|
|
.badge {
|
|
display: inline-block;
|
|
margin-right: -5px;
|
|
}
|
|
|
|
.updates {
|
|
display: none;
|
|
}
|
|
|
|
.count {
|
|
@include breakpoint(mini-nav-range) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.with-updates {
|
|
.count {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
.updates {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0;
|
|
display: inline-block;
|
|
|
|
@include breakpoint(mini-nav-range) {
|
|
border-radius: 100%;
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 10px;
|
|
font-size: 9px;
|
|
line-height: 12px;
|
|
padding: 1px 3px;
|
|
min-width: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
@include transition(all 0.2s ease);
|
|
display: block;
|
|
padding-left: 25px;
|
|
padding-top: 0.7rem;
|
|
padding-bottom: 0.7rem;
|
|
position: relative;
|
|
|
|
.fa {
|
|
@include transition(all 0.2s ease);
|
|
margin-right: 8px;
|
|
}
|
|
|
|
}
|
|
|
|
&.selected {
|
|
a {
|
|
padding-left: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
body.sidebar-quickopen #admin-main {
|
|
@include breakpoint(large-desktop-plus) {
|
|
margin-left: $sidebar-width-small;
|
|
}
|
|
}
|
|
|
|
#admin-main {
|
|
@include breakpoint(tablet-plus) {
|
|
margin-left: $sidebar-width-small;
|
|
}
|
|
|
|
@include breakpoint(large-desktop-plus) {
|
|
margin-left: $sidebar-width-large;
|
|
}
|
|
|
|
.form-label label {
|
|
.hint:after, [data-hint]:after {
|
|
max-width: 300px;
|
|
min-width: 150px;
|
|
display: inline-table;
|
|
white-space: initial;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 1.3rem;
|
|
text-align: left;
|
|
letter-spacing: -1px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.padding {
|
|
padding: $padding-default;
|
|
}
|
|
|
|
.lines-button {
|
|
display: none;
|
|
margin-left: $padding-default / 4;
|
|
&:focus {
|
|
outline:none;
|
|
}
|
|
|
|
@include breakpoint(mobile-only) {
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.button {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.titlebar {
|
|
position: relative;
|
|
height: $topbar-height;
|
|
padding: 0 $padding-default;
|
|
z-index: 4;
|
|
|
|
box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
|
|
|
|
@include breakpoint(mobile-only) {
|
|
padding: 0 ($padding-default / 4) 0 ($padding-default + 2.5);
|
|
}
|
|
|
|
h1 {
|
|
@extend %vertical-align;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
-ms-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
font-size: 18px;
|
|
i {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button-bar {
|
|
@extend %vertical-align;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
z-index: 4;
|
|
}
|
|
|
|
.preview {
|
|
font-size: 90%;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.5rem 0.4rem;
|
|
vertical-align: top;
|
|
margin-right: -2px;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
font-size: 0;
|
|
padding: 0.5rem 0.5rem;
|
|
min-height: 36px;
|
|
i {
|
|
font-size: 20px;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
@media only all and (max-width: 20.875em) {
|
|
padding: 0.5rem 0.2rem;
|
|
}
|
|
}
|
|
|
|
span.button {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint(mobile-only) {
|
|
.dropdown-menu .button {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-block .alert {
|
|
margin-top: -2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.alert {
|
|
&:before {
|
|
font-family: FontAwesome;
|
|
margin-right: 5px;
|
|
}
|
|
&.info:before {
|
|
content: "\f0a1";
|
|
}
|
|
&.warning:before {
|
|
content: "\f071";
|
|
}
|
|
&.note:before {
|
|
content: "\f24a";
|
|
}
|
|
|
|
&.grav:before {
|
|
font-family: FontAwesome, sans-serif;
|
|
content: "\f2d6";
|
|
vertical-align: bottom;
|
|
}
|
|
&.grav {
|
|
#grav-update-button {
|
|
margin-top: -3px;
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.grav-update {
|
|
@include clearfix;
|
|
padding: 0 $padding-default;
|
|
margin-top: -2rem;
|
|
margin-bottom: 1rem;
|
|
display: none;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.button {
|
|
float: right;
|
|
margin-top: 0.6rem;
|
|
margin-left: 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
p {
|
|
line-height: $update-height;
|
|
margin: 0;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
-ms-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
span[class="hint--left"]::after {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
i {
|
|
padding-right: 0.5rem;
|
|
}
|
|
|
|
}
|
|
|
|
.grav-update.grav + .content-wrapper {
|
|
height: calc(100vh - #{$topbar-height} - #{$update-height});
|
|
}
|
|
|
|
.safe-upgrade-modal {
|
|
text-align: left;
|
|
|
|
.safe-upgrade-form {
|
|
padding: 1.5rem 1.75rem 1.5rem;
|
|
}
|
|
|
|
.safe-upgrade-header {
|
|
margin-bottom: 1.25rem;
|
|
|
|
h2 {
|
|
font-size: 1.6rem;
|
|
margin: 0 0 0.5rem;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-body {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
[data-safe-upgrade-footer] {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.75rem;
|
|
|
|
.button {
|
|
min-width: 9rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.35rem;
|
|
|
|
&.is-loading {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.button-spinner {
|
|
margin-right: 0.35rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 0.75rem 1.25rem;
|
|
background: rgba(20, 42, 68, 0.05);
|
|
border: 1px solid rgba(20, 42, 68, 0.12);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem;
|
|
margin-bottom: 1.35rem;
|
|
|
|
p {
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-weight: 500;
|
|
color: #2f3b48;
|
|
|
|
strong {
|
|
font-size: 1.05rem;
|
|
margin-top: 0.2rem;
|
|
font-weight: 600;
|
|
color: #0e355a;
|
|
}
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-error {
|
|
background: rgba(192, 57, 43, 0.1);
|
|
border: 1px solid rgba(192, 57, 43, 0.35);
|
|
border-radius: 10px;
|
|
padding: 1.25rem 1.5rem;
|
|
margin-bottom: 1.25rem;
|
|
box-shadow: 0 8px 24px rgba(192, 57, 43, 0.08);
|
|
|
|
p {
|
|
margin: 0 0 0.85rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #922b21;
|
|
}
|
|
|
|
.button {
|
|
min-width: 10rem;
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-panel {
|
|
--safe-upgrade-accent: #3f83d1;
|
|
background: #ffffff;
|
|
border: 1px solid rgba(20, 42, 68, 0.14);
|
|
border-left: 6px solid var(--safe-upgrade-accent);
|
|
border-radius: 8px;
|
|
padding: 1rem 1.25rem 1.15rem;
|
|
margin-bottom: 1.15rem;
|
|
box-shadow: 0 4px 14px rgba(15, 24, 44, 0.08);
|
|
|
|
&__header {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 1rem;
|
|
}
|
|
|
|
&__title-wrap {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.85rem;
|
|
}
|
|
|
|
&__icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
border-radius: 50%;
|
|
background: var(--safe-upgrade-accent);
|
|
color: #ffffff;
|
|
font-size: 1.2rem;
|
|
box-shadow: 0 2px 6px rgba(15, 24, 44, 0.16);
|
|
}
|
|
|
|
&__title {
|
|
display: block;
|
|
font-size: 1.05rem;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
&__subtitle {
|
|
display: block;
|
|
margin-top: 0.15rem;
|
|
font-size: 0.9rem;
|
|
color: rgba(47, 59, 72, 0.8);
|
|
}
|
|
|
|
&__body {
|
|
margin-top: 0.85rem;
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0 0 0 1.25rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
color: #2f3b48;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: 0.9rem;
|
|
color: rgba(47, 59, 72, 0.85);
|
|
}
|
|
}
|
|
|
|
&__action {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
min-width: 100%;
|
|
flex: 1 1 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-left: 0;
|
|
padding-top: 0.25rem;
|
|
}
|
|
|
|
&--alert {
|
|
--safe-upgrade-accent: #e67e22;
|
|
background: rgba(230, 126, 34, 0.08);
|
|
}
|
|
|
|
&--info {
|
|
--safe-upgrade-accent: #17a2b8;
|
|
background: rgba(23, 162, 184, 0.08);
|
|
}
|
|
|
|
&--conflict {
|
|
--safe-upgrade-accent: #8e44ad;
|
|
background: rgba(142, 68, 173, 0.08);
|
|
}
|
|
|
|
&--blocker {
|
|
--safe-upgrade-accent: #c0392b;
|
|
background: rgba(192, 57, 43, 0.08);
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-decision {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.65rem;
|
|
width: 100%;
|
|
|
|
.safe-upgrade-decision-option {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.65rem;
|
|
padding: 0.65rem 0.75rem;
|
|
border: 1px solid rgba(20, 42, 68, 0.2);
|
|
border-radius: 6px;
|
|
background: rgba(255, 255, 255, 0.92);
|
|
transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
|
|
cursor: pointer;
|
|
|
|
&:hover,
|
|
&:focus-within {
|
|
border-color: var(--safe-upgrade-accent);
|
|
background: #ffffff;
|
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
input {
|
|
margin-top: 0.2rem;
|
|
flex-shrink: 0;
|
|
accent-color: var(--safe-upgrade-accent);
|
|
}
|
|
|
|
.safe-upgrade-decision-option__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.safe-upgrade-decision-option__title {
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
color: #13243b;
|
|
}
|
|
|
|
.safe-upgrade-decision-option__description {
|
|
font-size: 0.85rem;
|
|
color: rgba(47, 59, 72, 0.75);
|
|
}
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-loading {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
font-size: 1.05rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
.safe-upgrade-progress {
|
|
text-align: center;
|
|
|
|
h3 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.safe-upgrade-progress-bar {
|
|
width: 100%;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
border-radius: 4px;
|
|
height: 10px;
|
|
overflow: hidden;
|
|
margin-top: 0.75rem;
|
|
|
|
span {
|
|
display: block;
|
|
height: 100%;
|
|
background: #4dbc8b;
|
|
transition: width 0.3s ease;
|
|
}
|
|
}
|
|
|
|
.progress-value {
|
|
font-weight: 600;
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.safe-upgrade-result {
|
|
h3 {
|
|
margin-bottom: 0.25rem;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&.success h3 {
|
|
color: #45b854;
|
|
}
|
|
|
|
&.error h3 {
|
|
color: #922b21;
|
|
}
|
|
|
|
&.neutral h3 {
|
|
color: #6c7a89;
|
|
}
|
|
|
|
&.error {
|
|
background: rgba(192, 57, 43, 0.08);
|
|
border: 1px solid rgba(192, 57, 43, 0.22);
|
|
border-radius: 10px;
|
|
padding: 1.2rem 1.4rem;
|
|
box-shadow: 0 12px 32px rgba(192, 57, 43, 0.12);
|
|
margin-bottom: 1rem;
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: 0.95rem;
|
|
color: rgba(47, 59, 72, 0.85);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-wrapper {
|
|
position: relative;
|
|
//overflow-y: hidden;
|
|
height: calc(100vh - #{$topbar-height});
|
|
//z-index: 0;
|
|
}
|
|
|
|
.content-padding {
|
|
padding: $content-padding;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.admin-block {
|
|
padding: 1rem 0;
|
|
|
|
&:empty {
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
padding: 0 $padding-default 0.5rem;
|
|
margin: 0 0 1rem;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
padding: 0 1rem 0.5rem;
|
|
}
|
|
|
|
&.no_underline {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.button-bar {
|
|
margin: 0 $padding-default;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
margin: -1rem 0 1rem 0;
|
|
padding: 0 1rem;
|
|
text-align: center;
|
|
|
|
.button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.flush-bottom {
|
|
&.button-bar {
|
|
margin: 1rem (-$padding-default) -1rem;
|
|
padding: 1rem;
|
|
float: none;
|
|
display: flex;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
&.stats-bar {
|
|
font-size: 90%;
|
|
b {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button {
|
|
margin: 0;
|
|
height: 37px;
|
|
|
|
&.dropdown-toggle {
|
|
margin-left: -4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.danger, .success {
|
|
position: relative;
|
|
|
|
&.button-bar {
|
|
margin: 2rem 0 -1rem;
|
|
height: 70px;
|
|
padding: 1rem;
|
|
float: none;
|
|
.button {
|
|
@extend %vertical-align;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-padding {
|
|
#admin-dashboard {
|
|
|
|
.dashboard-item-flex {
|
|
&:nth-of-type(2n) .dashboard-item {
|
|
margin-right: 0;
|
|
margin-left: $content-padding / 2;
|
|
}
|
|
|
|
&:nth-of-type(2n+1) .dashboard-item {
|
|
margin-left: 0;
|
|
margin-right: $content-padding / 2;
|
|
}
|
|
}
|
|
|
|
.dashboard-item {
|
|
margin-bottom: $content-padding;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#admin-dashboard {
|
|
|
|
@include display(flex);
|
|
@include flex-flow(row wrap);
|
|
|
|
.dashboard-item-flex {
|
|
@include display(flex);
|
|
@include flex-flow(column nowrap);
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
@include breakpoint(mobile-only) {
|
|
width: 100%;
|
|
.dashboard-item {
|
|
margin-right: 0px !important;
|
|
margin-left: 0px !important;
|
|
margin-bottom: 10px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.dashboard-item {
|
|
|
|
> div:not(.widget-content) {
|
|
padding: 1rem $padding-default;
|
|
}
|
|
|
|
h1 .right {
|
|
float: right;
|
|
}
|
|
|
|
&.admin-block {
|
|
padding: 1rem 0;
|
|
|
|
ul {
|
|
margin: 0 0 1rem 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
li {
|
|
margin: 0;
|
|
padding: 0.425rem $padding-default 0.2rem $padding-default;
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.chart-loader {
|
|
position: relative;
|
|
|
|
.fa {
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 4rem;
|
|
margin-top: -2rem;
|
|
@extend %vertical-align;
|
|
}
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.widget-content {
|
|
position: relative;
|
|
min-height: 335px;
|
|
padding: 0;
|
|
}
|
|
|
|
.widget-loader {
|
|
position: absolute;
|
|
text-align: center;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
.fa {
|
|
font-size: 4rem;
|
|
}
|
|
}
|
|
|
|
#updates {
|
|
|
|
p {
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.updates-chart {
|
|
width: 50%;
|
|
float: left;
|
|
|
|
}
|
|
|
|
.flush-bottom {
|
|
&.button-bar {
|
|
height: 70px;
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
.chart-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.backups-chart {
|
|
position: relative;
|
|
width: 50%;
|
|
float: left;
|
|
}
|
|
|
|
.ct-chart {
|
|
min-height: 157px;
|
|
}
|
|
|
|
.numeric {
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 1.5rem;
|
|
line-height: 1;
|
|
@extend %vertical-align;
|
|
|
|
em {
|
|
display: block;
|
|
font-style: normal;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
}
|
|
|
|
.admin-update-charts {
|
|
@include clearfix;
|
|
min-height: 191px;
|
|
}
|
|
|
|
.button-bar > .button:not(.dropdown-toggle) {
|
|
margin-left: 4px;
|
|
height: 37px;
|
|
}
|
|
}
|
|
|
|
#popularity {
|
|
.ct-chart {
|
|
min-height: 171px;
|
|
}
|
|
|
|
.button-bar {
|
|
height: 100px;
|
|
padding: 0 1rem;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.dashboard-item {
|
|
|
|
.admin-statistics-chart {
|
|
position: relative;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.stat {
|
|
width: 33%;
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
b {
|
|
display: block;
|
|
font-size: 2.5rem;
|
|
line-height: 1;
|
|
font-weight: 300;
|
|
}
|
|
i {
|
|
display: block;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
}
|
|
|
|
#news-feed {
|
|
.date {
|
|
float: right;
|
|
z-index: 1;
|
|
}
|
|
li {
|
|
|
|
|
|
a {
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
-ms-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
z-index: 0;
|
|
|
|
&:before {
|
|
font-family: FontAwesome;
|
|
margin-right: 10px;
|
|
content: "\f1ea";
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.no-flick {
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.card-row {
|
|
@include justify-content(space-between);
|
|
}
|
|
|
|
.card-item {
|
|
@extend .no-flick;
|
|
overflow: hidden;
|
|
padding: 1rem;
|
|
margin: 0;
|
|
position: relative;
|
|
width: 31%;
|
|
max-width: 21rem;
|
|
|
|
@include breakpoint(tablet-range) {
|
|
width: 48%;
|
|
}
|
|
@include breakpoint(mobile-only) {
|
|
width: 100%;
|
|
}
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
h4 {
|
|
font-size: 1.2rem;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
.user-details {
|
|
text-align: left;
|
|
img {
|
|
border-radius: 100%;
|
|
|
|
}
|
|
h2 {
|
|
margin: 0;
|
|
font-size: 2.1rem !important;
|
|
margin: 1rem 0 0 !important;
|
|
line-height: 1.5;
|
|
|
|
span {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
h5 {
|
|
font-size: 1.1rem;
|
|
margin: 0;
|
|
linep-height: 1.2;
|
|
}
|
|
|
|
.avatar {
|
|
font-size: 0.9rem;
|
|
padding: 0;
|
|
}
|
|
|
|
@include breakpoint(mobile-only) {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#footer {
|
|
text-align: center;
|
|
padding: 3rem 0 1rem;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
// Chart overrides
|
|
.ct-chart {
|
|
.ct-series {
|
|
.ct-bar {
|
|
stroke-width: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#popularity .ct-chart {
|
|
margin: 0 -10px -10px;
|
|
.ct-chart-bar {
|
|
padding: 4px 6px 1px 10px;
|
|
}
|
|
}
|
|
|
|
#latest {
|
|
.page-title, .page-route {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
|
|
#overlay {
|
|
position: fixed;
|
|
width: 25%;
|
|
height: 100%;
|
|
z-index: 999999;
|
|
left: 75%;
|
|
top: 0;
|
|
display: none;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
display: none!important;
|
|
}
|
|
}
|
|
|
|
// Fix tabs spacing in plugin / theme options
|
|
.gpm-item-info + #blueprints .block-tabs {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.plugins-notifications-container,
|
|
.themes-notifications-container {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.package-dependencies-container {
|
|
li {
|
|
height: 35px;
|
|
|
|
.button {
|
|
height: 30px;
|
|
float: right;
|
|
margin-right: 10px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pointer-events-disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
// Reinstall packages
|
|
.updates-checked {
|
|
.button-reinstall-package {
|
|
display: inline-block!important;
|
|
}
|
|
|
|
&.has-updates {
|
|
.button-reinstall-package {
|
|
display: none!important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Preview
|
|
.preview-wrapper {
|
|
.content-padding {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
// Gumroad
|
|
.gumroad {
|
|
.cart-button {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
// Config Side Tabs
|
|
@include breakpoint(mobile-only) {
|
|
#admin-main .config-wrapper-system .form-tabs.side-tabs {
|
|
> .tabs-nav {
|
|
display: none;
|
|
width: 0;
|
|
}
|
|
> .tabs-content {
|
|
width: 100%;
|
|
.tab__content {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Log Viewer
|
|
.logs-output {
|
|
|
|
form {
|
|
|
|
.form-data {
|
|
display: flex;
|
|
margin: 0 -0.5rem;
|
|
|
|
@include breakpoint(small-mobile-range) {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.forms-select-wrapper {
|
|
display: block;
|
|
flex: 1;
|
|
margin: 0.5rem 0.5rem;
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 2rem !important;
|
|
}
|
|
|
|
h3 {
|
|
padding: 0.5rem 1.5rem;
|
|
font-size: 1.1rem;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
}
|
|
table.noflex {
|
|
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
|
|
td.date, td.level {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
td.date {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
th.level, td.level {
|
|
padding: 0.375rem 30px;
|
|
}
|
|
|
|
td.level {
|
|
font-weight: bold;
|
|
|
|
span.badge {
|
|
font-size: 0.7rem;
|
|
}
|
|
}
|
|
|
|
td.message {
|
|
width: 100%;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.trace {
|
|
ol {
|
|
margin: 10px 0;
|
|
padding: 0;
|
|
font-size: 0.7rem;
|
|
|
|
code {
|
|
font-size: 0.7rem;
|
|
display: block;
|
|
white-space: pre-wrap
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// New 1.7 Permissions
|
|
.permissions-container {
|
|
max-width: 800px;
|
|
|
|
.badge .icon-super {
|
|
display: block;
|
|
height: 20px;
|
|
width: 14px;
|
|
line-height: 1.5;
|
|
|
|
&:before {
|
|
content: url('../images/icons/crown.svg');
|
|
}
|
|
}
|
|
|
|
.switch-toggle {
|
|
input+label:before {
|
|
font-family: FontAwesome;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
input.label0+label:before{
|
|
content: "\f05e";
|
|
}
|
|
input.label1+label:before {
|
|
content: "\f00c";
|
|
|
|
}
|
|
}
|
|
fieldset {
|
|
margin: 0 0 1rem 0;
|
|
padding: 1rem;
|
|
border-radius: $border-radius;
|
|
|
|
legend {
|
|
padding: 0 0.5rem;
|
|
margin-left: -0.5rem;
|
|
font-size: 120%;
|
|
}
|
|
|
|
fieldset {
|
|
margin: 0;
|
|
border: 0;
|
|
padding: 0.5rem 0 0 2rem;
|
|
|
|
legend {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.permission-container {
|
|
display: flex;
|
|
|
|
|
|
.permission-name {
|
|
flex-grow: 1;
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin-right: 8px;
|
|
padding-top: 9px;
|
|
|
|
span:not(.badge) {
|
|
position: relative;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
span.badge {
|
|
position: relative;
|
|
float: right;
|
|
font-size: 100%;
|
|
border-radius: 20px;
|
|
margin-right: -2px;
|
|
}
|
|
|
|
&:before {
|
|
content: "........................................................................................................................................";
|
|
height: 1px;
|
|
position: absolute;
|
|
right: 100%;
|
|
left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Reports
|
|
.reports-content {
|
|
.report-output {
|
|
table, tbody, thead {
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
table {
|
|
thead {
|
|
tr {
|
|
th {
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
tbody {
|
|
tr {
|
|
td {
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.simplebar-content-wrapper { overflow: auto; }
|
|
/* Session expired blur + overlay */
|
|
html.session-expired-active .remodal-bg { filter: blur(4px); pointer-events: none; user-select: none; }
|
|
html.session-expired-active #admin-login { filter: blur(4px); pointer-events: none; user-select: none; }
|
|
.remodal-overlay.session-expired { background: rgba(0,0,0,0.55); backdrop-filter: blur(3px); }
|
|
[data-remodal-id="session-expired"] .button-bar .button { min-width: 120px;text-align: center; }
|
|
/* Lightweight modal used on login page when vendor JS is not loaded */
|
|
.grav-expired-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(3px); z-index: 9999; display: flex; align-items: center; justify-content: center; }
|
|
.grav-expired-modal { background: #fff; border-radius: 6px; width: min(640px, 90%); box-shadow: 0 10px 30px rgba(0,0,0,.25); overflow: hidden; font-family: inherit; }
|
|
.grav-expired-modal h1 { margin: 0; padding: 24px 28px; font-size: 28px; color: #3D424E; border-bottom: 1px solid #f0f0f0; }
|
|
.grav-expired-modal p { margin: 0; padding: 20px 28px; font-size: 16px; color: #6f7b8a; }
|
|
.grav-expired-actions { padding: 18px 24px; display: flex; justify-content: flex-end; background: #f7f7f7; }
|
|
.grav-expired-actions .button { min-width: 120px;text-align: center; }
|