kollapsminoriteten/wp-content/plugins/wp-maximum-upload-file-size/assets/css/wmufs.scss

226 lines
3.9 KiB
SCSS
Raw Normal View History

2023-06-22 08:23:43 +02:00
.wmufs_mb_50 {
margin-bottom: 50px;
}
.wmufs_mb_20 {
margin-bottom: 20px;
}
.wmufs_row {
display: flex;
width: 100%;
overflow: hidden;
justify-content: space-between;
}
.wmufs_card {
2025-06-09 09:58:01 +02:00
background: #f8f8f8;
border: 1px solid #e4e4e4;
2023-06-22 08:23:43 +02:00
box-shadow: 1px 3px 9px 1px #eee;
padding: 10px 20px
}
.wmufs-col-8 {
width: 100%;
margin-right: 20px;
}
.wmufs-col-4 {
width: 21.3333333333%;
flex: 0 0 auto;
}
.wmufs_card_mini {
border: 1px solid #eee;
padding: 10px;
2025-06-09 09:58:01 +02:00
background: #f0f0f1;
.support-ticket {
text-align: center;
padding: 20px;
h2 {
font-size: 25px;
}
a {
display: flex;
text-decoration: none;
margin-bottom: 10px;
align-items: center;
justify-content: center;
}
}
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
body.post-type-attachment.media_page_max_uploader .notice:not(.wmufs-notice) {
display: none !important;
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
/** Form Styles **/
.wmufs_form_centered {
display: flex;
justify-content: center;
.wmufs_inner_form_box {
width: 100%;
max-width: 600px;
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
form {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
table.form-table {
width: 100%;
th {
text-align: left;
vertical-align: top;
padding: 10px 0;
width: 40%;
}
td {
padding: 10px 0;
}
select, input[type="number"] {
width: 100%;
max-width: 300px;
}
small {
display: block;
margin-top: 5px;
color: #777;
}
}
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
@media (max-width: 768px) {
.wmufs_form_centered {
flex-direction: column;
align-items: center;
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
.wmufs_inner_form_box {
width: 100%;
padding: 0 10px;
}
}
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
.wmufs_faq_section {
margin-top: 40px;
background: #fff;
padding: 20px;
border: 1px solid #ccd0d4;
border-radius: 4px;
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
.wmufs_faq_section h2 {
margin-top: 0;
margin-bottom: 20px;
font-size: 18px;
color: #23282d;
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
.wmufs_faq_item {
margin-bottom: 15px;
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
.wmufs_faq_item strong {
display: block;
color: #0073aa;
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
.wmufs_faq_item p {
margin: 5px 0 0 0;
color: #444;
}
2023-06-22 08:23:43 +02:00
/******** System Status ******************/
.wmufs-system-status {
width: 100%;
2025-06-09 09:58:01 +02:00
table-layout: fixed;
border-collapse: collapse;
2023-06-22 08:23:43 +02:00
.dashicons-warning {
color: #cd5c5c;
font-size: 20px;
}
.dashicons-yes {
color: green;
font-size: 20px;
}
2025-06-09 09:58:01 +02:00
th, td {
2023-06-22 08:23:43 +02:00
border: 1px solid #ccc;
padding: 10px;
2025-06-09 09:58:01 +02:00
text-align: left;
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
&:nth-child(2) {
text-align: center;
width: 100px;
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
&:last-child {
border-left: none;
}
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
th {
background-color: #f9f9f9;
font-weight: 600;
2023-06-22 08:23:43 +02:00
border-bottom: none;
2025-06-09 09:58:01 +02:00
&:last-child {
border-left: none;
}
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
tr td:first-child {
text-align: left;
2023-06-22 08:23:43 +02:00
}
tr:last-child td {
border-bottom: 1px solid #ccc;
}
}
.wpifw_status_message {
margin: 0;
2025-06-09 09:58:01 +02:00
font-size: 13px;
line-height: 1.5;
color: #555d66;
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
// Icon next to "System Status" heading
.system-status-icon {
font-size: inherit;
line-height: unset;
}
2023-06-22 08:23:43 +02:00
2025-06-09 09:58:01 +02:00
// Responsive adjustments
2023-06-22 08:23:43 +02:00
@media(max-width: 786px) {
.wmufs_row {
2025-06-09 09:58:01 +02:00
display: block;
2023-06-22 08:23:43 +02:00
}
2025-06-09 09:58:01 +02:00
.wmufs-col-8,
2023-06-22 08:23:43 +02:00
.wmufs-col-4 {
width: 100%;
}
}
2025-06-09 09:58:01 +02:00
@import "./promotion";