Update repo
This commit is contained in:
+101
-60
@@ -1,60 +1,101 @@
|
||||
/* Styles for WordPress Activity Stats Plugin - Admin Area */
|
||||
|
||||
/* Infografika */
|
||||
.statpress-infographic-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
.statpress-infographic-card {
|
||||
background: #fff;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 5px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
||||
}
|
||||
.statpress-infographic-card h3 {
|
||||
margin-top: 0;
|
||||
color: #555;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.statpress-infographic-card p {
|
||||
font-size: 1.8em;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Kontener dla szczegółów aktywności */
|
||||
#statpress-details-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 2%;
|
||||
}
|
||||
/* Szczegóły aktywności */
|
||||
.statpress-details-col {
|
||||
flex: 1 1 48%; /* Pozwala na elastyczne dopasowanie, z bazową szerokością 48% */
|
||||
min-width: 300px; /* Zapobiega zbytniemu ściskaniu kolumn na mniejszych ekranach */
|
||||
}
|
||||
|
||||
/* Chart Controls */
|
||||
.statpress-chart-controls {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 15px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.statpress-chart-tabs.nav-tab-wrapper {
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.statpress-xaxis-switcher {
|
||||
padding-top: 5px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
/* Styles for WordPress Activity Stats Plugin - Admin Area */
|
||||
|
||||
/* Infografika */
|
||||
.statpress-infographic-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
.statpress-infographic-card {
|
||||
background: #fff;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 5px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
||||
}
|
||||
.statpress-infographic-card h3 {
|
||||
margin-top: 0;
|
||||
color: #555;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.statpress-infographic-card p {
|
||||
font-size: 1.8em;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Kontener dla szczegółów aktywności */
|
||||
#statpress-details-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 2%;
|
||||
}
|
||||
/* Szczegóły aktywności */
|
||||
.statpress-details-col {
|
||||
flex: 1 1 48%; /* Pozwala na elastyczne dopasowanie, z bazową szerokością 48% */
|
||||
min-width: 300px; /* Zapobiega zbytniemu ściskaniu kolumn na mniejszych ekranach */
|
||||
}
|
||||
|
||||
/* Chart Controls */
|
||||
.statpress-chart-controls {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 15px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.statpress-chart-tabs.nav-tab-wrapper {
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.statpress-xaxis-switcher {
|
||||
padding-top: 5px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Form layout improvements */
|
||||
.statpress-form-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 20px;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.statpress-form-group {
|
||||
background: #fdfdfd;
|
||||
border: 1px solid #e5e5e5;
|
||||
padding: 15px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.statpress-form-group h3 {
|
||||
margin-top: 0;
|
||||
font-size: 1em;
|
||||
border-bottom: 1px solid #eee;
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.statpress-form-group p {
|
||||
margin: 0 0 1em;
|
||||
}
|
||||
|
||||
.statpress-form-group label {
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* GPX Parser Status */
|
||||
#gpx_parse_status {
|
||||
vertical-align: middle;
|
||||
color: #50575e;
|
||||
}
|
||||
#gpx_parse_status .spinner {
|
||||
margin-top: -2px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user