mirror of
https://github.com/WPMultisite/wp-multisite-dashboard.git
synced 2025-08-07 23:09:12 +08:00
修正图标显示
This commit is contained in:
parent
a8c3a0b96d
commit
7c31978a96
2 changed files with 14 additions and 9 deletions
|
@ -21,7 +21,8 @@ div#network_dashboard_right_now .inside {
|
||||||
padding: 28px;
|
padding: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#search-sites, #search-users {
|
#search-sites,
|
||||||
|
#search-users {
|
||||||
border: 1px solid #e7e7e7;
|
border: 1px solid #e7e7e7;
|
||||||
background-color: #f6f7f7;
|
background-color: #f6f7f7;
|
||||||
color: #2c3338;
|
color: #2c3338;
|
||||||
|
@ -95,8 +96,12 @@ div#network_dashboard_right_now .inside {
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes msd-spin {
|
@keyframes msd-spin {
|
||||||
0% { transform: rotate(0deg); }
|
0% {
|
||||||
100% { transform: rotate(360deg); }
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.msd-overview-simple {
|
.msd-overview-simple {
|
||||||
|
@ -324,8 +329,8 @@ div#network_dashboard_right_now .inside {
|
||||||
}
|
}
|
||||||
|
|
||||||
.msd-qr-image {
|
.msd-qr-image {
|
||||||
max-width: 100px;
|
max-width: 260px;
|
||||||
max-height: 100px;
|
max-height: 260px;
|
||||||
border-radius: var(--msd-radius-small);
|
border-radius: var(--msd-radius-small);
|
||||||
border: 1px solid var(--msd-border);
|
border: 1px solid var(--msd-border);
|
||||||
}
|
}
|
||||||
|
@ -355,7 +360,9 @@ div#network_dashboard_right_now .inside {
|
||||||
border: 1px solid var(--msd-border);
|
border: 1px solid var(--msd-border);
|
||||||
border-radius: var(--msd-radius-small);
|
border-radius: var(--msd-radius-small);
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
transition:
|
||||||
|
border-color 0.2s ease,
|
||||||
|
box-shadow 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.msd-form-field input:focus,
|
.msd-form-field input:focus,
|
||||||
|
@ -1646,7 +1653,7 @@ div#network_dashboard_right_now .inside {
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -281,11 +281,9 @@ $widget_options = [
|
||||||
<?php _e("Clear All Caches", "wp-multisite-dashboard"); ?>
|
<?php _e("Clear All Caches", "wp-multisite-dashboard"); ?>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="button" onclick="MSD.clearCache('network')">
|
<button type="button" class="button" onclick="MSD.clearCache('network')">
|
||||||
<span class="dashicons dashicons-admin-multisite"></span>
|
|
||||||
<?php _e("Clear Network Data", "wp-multisite-dashboard"); ?>
|
<?php _e("Clear Network Data", "wp-multisite-dashboard"); ?>
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="button" onclick="MSD.clearWidgetCache()">
|
<button type="button" class="button" onclick="MSD.clearWidgetCache()">
|
||||||
<span class="dashicons dashicons-dashboard"></span>
|
|
||||||
<?php _e("Clear Widget Cache", "wp-multisite-dashboard"); ?>
|
<?php _e("Clear Widget Cache", "wp-multisite-dashboard"); ?>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue