diff --git a/websiteFunctions/templates/websiteFunctions/WPsitesList.html b/websiteFunctions/templates/websiteFunctions/WPsitesList.html
index 8c63b0a4b..a20ad20e4 100644
--- a/websiteFunctions/templates/websiteFunctions/WPsitesList.html
+++ b/websiteFunctions/templates/websiteFunctions/WPsitesList.html
@@ -87,18 +87,33 @@
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
+ transition: all 0.3s ease;
+ }
+
+ .wp-site-card:hover {
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.wp-site-header {
- padding: 15px;
+ padding: 15px 20px;
border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: center;
justify-content: space-between;
+ background: #f8f9fa;
+ border-radius: 8px 8px 0 0;
+ }
+
+ .wp-site-header a {
+ color: #2196F3;
+ text-decoration: none;
+ font-weight: 500;
}
.wp-site-content {
padding: 20px;
+ display: flex;
+ gap: 20px;
}
.wp-site-preview {
@@ -107,34 +122,45 @@
object-fit: cover;
border-radius: 4px;
border: 1px solid #e0e0e0;
- float: left;
- margin-right: 20px;
}
.wp-site-info {
- margin-left: 220px;
+ flex: 1;
+ }
+
+ .wp-site-info h3 {
+ margin: 0 0 20px 0;
+ display: flex;
+ align-items: center;
+ gap: 10px;
}
.status-section {
display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 20px;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 15px;
margin-bottom: 20px;
}
.tools-section {
display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 20px;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 15px;
}
.status-item, .tool-item {
display: flex;
align-items: center;
justify-content: space-between;
- padding: 8px;
+ padding: 10px 15px;
background: #f8f9fa;
- border-radius: 4px;
+ border-radius: 6px;
+ border: 1px solid #e0e0e0;
+ }
+
+ .status-item span:first-child, .tool-item span:first-child {
+ font-weight: 500;
+ color: #555;
}
.toggle-switch {
@@ -188,39 +214,62 @@
}
.btn-tool {
- padding: 5px 10px;
+ padding: 6px 12px;
border: 1px solid #ddd;
border-radius: 4px;
background: white;
color: #333;
text-decoration: none;
- font-size: 12px;
+ font-size: 13px;
+ cursor: pointer;
+ display: inline-flex;
+ align-items: center;
+ gap: 5px;
+ transition: all 0.2s ease;
}
.btn-tool:hover {
- background: #f8f9fa;
+ background: #f0f0f0;
+ border-color: #ccc;
}
- .warning-badge {
- background: #ffc107;
- color: #000;
- padding: 2px 8px;
+ .btn-tool i {
+ font-size: 14px;
+ }
+
+ .badge {
+ padding: 4px 8px;
border-radius: 12px;
font-size: 12px;
+ font-weight: 500;
+ }
+
+ .bg-primary {
+ background-color: #2196F3;
+ color: white;
}
.top-actions {
- margin-bottom: 20px;
+ margin-bottom: 30px;
display: flex;
justify-content: space-between;
align-items: center;
+ padding: 20px;
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.search-box {
- padding: 8px;
+ padding: 8px 15px;
border: 1px solid #ddd;
border-radius: 4px;
width: 300px;
+ margin-right: 10px;
+ }
+
+ .site-selector {
+ margin-right: 10px;
}
@@ -247,7 +296,7 @@
Manage
-