mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-07-07 17:43:29 +02:00
various theming improvements
This commit is contained in:
2
themes/grav/css-compiled/preset.css
vendored
2
themes/grav/css-compiled/preset.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
themes/grav/css-compiled/template.css
vendored
2
themes/grav/css-compiled/template.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1659,7 +1659,7 @@ body .bootstrap-datetimepicker-widget {
|
||||
}
|
||||
table {
|
||||
td span:hover, th:hover, td.day:hover {
|
||||
background: darken($content-bg, 5%) !important;
|
||||
background: darken($content-bg, 2%) !important;
|
||||
}
|
||||
.active {
|
||||
color: $content-link !important;
|
||||
@@ -1670,6 +1670,15 @@ body .bootstrap-datetimepicker-widget {
|
||||
}
|
||||
}
|
||||
|
||||
.scheduler-content {
|
||||
pre {
|
||||
background: darken($content-bg, 2%);
|
||||
border-color: $form-border;
|
||||
code {
|
||||
color: $content-header;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#phpinfo {
|
||||
th {
|
||||
@@ -1760,7 +1769,20 @@ $scrollbar-color: #f00;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.reports-content {
|
||||
.report-output {
|
||||
table {
|
||||
thead {
|
||||
tr {
|
||||
th {
|
||||
background-color: darken($content-bg, 2%);
|
||||
color: $content-header;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.preview-wrapper {
|
||||
iframe {
|
||||
@@ -2289,7 +2311,44 @@ $scrollbar-color: #f00;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Cron field
|
||||
.jqCron-cross,
|
||||
.jqCron-selector-title {
|
||||
border: 1px solid $form-border;
|
||||
}
|
||||
.jqCron-container.disable .jqCron-cross:hover,
|
||||
.jqCron-container.disable .jqCron-selector-title:hover,
|
||||
.jqCron-cross,
|
||||
.jqCron-selector-title {
|
||||
background: $form-field-bg;
|
||||
border-color: $form-border;
|
||||
}
|
||||
.jqCron-cross:hover,
|
||||
.jqCron-selector-title:hover {
|
||||
background-color: darken($form-field-bg,10%);
|
||||
}
|
||||
.jqCron-selector-list {
|
||||
background-color: darken($form-field-bg,10%);
|
||||
border: 1px solid $form-border;
|
||||
}
|
||||
.jqCron-selector-list li.selected {
|
||||
background: $primary-accent-bg;
|
||||
color: $primary-accent-fg;
|
||||
}
|
||||
.jqCron-selector-list li:hover {
|
||||
background: $form-field-bg;
|
||||
}
|
||||
.jqCron-error .jqCron-selector-title {
|
||||
background: $critical-bg;
|
||||
border: 1px solid darken($critical-bg, 10%);
|
||||
color: $critical-text;
|
||||
}
|
||||
.jqCron-container.disable * {
|
||||
color: darken($form-field-text, 20%);
|
||||
}
|
||||
.jqCron-container.disable .jqCron-selector-title {
|
||||
background: $content-bg !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1411,4 +1411,30 @@ body.sidebar-quickopen #admin-main {
|
||||
}
|
||||
}
|
||||
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
/*
|
||||
* This file is part of the Arnapou jqCron package.
|
||||
*
|
||||
@@ -15,32 +14,16 @@
|
||||
.jqCron-selector-title {
|
||||
cursor: pointer;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #ddd;
|
||||
margin: 0 0.2em;
|
||||
padding: 0 0.5em;
|
||||
}
|
||||
.jqCron-container.disable .jqCron-cross:hover,
|
||||
.jqCron-container.disable .jqCron-selector-title:hover,
|
||||
.jqCron-cross,
|
||||
.jqCron-selector-title {
|
||||
background: #eee;
|
||||
border-color: #ddd;
|
||||
}
|
||||
.jqCron-cross:hover,
|
||||
.jqCron-selector-title:hover {
|
||||
background-color: #ddd;
|
||||
border-color: #aaa;
|
||||
}
|
||||
|
||||
.jqCron-cross {
|
||||
border-radius: 1em;
|
||||
font-size: 80%;
|
||||
padding: 0 0.3em;
|
||||
}
|
||||
.jqCron-selector-list {
|
||||
background: #eee;
|
||||
border: 1px solid #aaa;
|
||||
-webkit-box-shadow: 2px 2px 3px #ccc;
|
||||
box-shadow: 2px 2px 3px #ccc;
|
||||
left: 0.2em;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
@@ -60,14 +43,6 @@
|
||||
padding: 0.1em 0.4em;
|
||||
width: 100%;
|
||||
}
|
||||
.jqCron-selector-list li.selected {
|
||||
background: #0088cc;
|
||||
color: white;
|
||||
}
|
||||
.jqCron-selector-list li:hover {
|
||||
background: #5fb9e7;
|
||||
color: white;
|
||||
}
|
||||
.jqCron-selector-list.cols2 {
|
||||
width: 4em;
|
||||
}
|
||||
@@ -92,14 +67,4 @@
|
||||
.jqCron-selector-list.cols5 li {
|
||||
width: 20%;
|
||||
}
|
||||
.jqCron-error .jqCron-selector-title {
|
||||
background: #fee;
|
||||
border: 1px solid #fdd;
|
||||
color: red;
|
||||
}
|
||||
.jqCron-container.disable * {
|
||||
color: #888;
|
||||
}
|
||||
.jqCron-container.disable .jqCron-selector-title {
|
||||
background: #eee !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -83,10 +83,6 @@
|
||||
.key {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.value {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="sort-actions" data-grav-selectize="true">
|
||||
<form class="sort-actions" data-grav-selectize="true">
|
||||
<select>
|
||||
<option value="name" selected>{{ "PLUGIN_ADMIN.NAME"|tu }}</option>
|
||||
<option value="author">{{ "PLUGIN_ADMIN.AUTHOR"|tu }}</option>
|
||||
@@ -9,4 +9,4 @@
|
||||
{% if config.system.gpm.releases == 'testing' %}<option value="testing">{{ "PLUGIN_ADMIN.TESTING"|tu }}</option>{% endif %}
|
||||
</select>
|
||||
<div class="sort-icon"><i class="fa fa-fw fa-sort-amount-asc"></i></div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user