summaryrefslogtreecommitdiff
path: root/public/stylesheets/admin.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/stylesheets/admin.css')
-rw-r--r--public/stylesheets/admin.css59
1 files changed, 54 insertions, 5 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index 0aa22f8..05e47e7 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -37,10 +37,13 @@ td {
37 depend on this rule for vertical padding. table.node_table td resets 37 depend on this rule for vertical padding. table.node_table td resets
38 padding-top/bottom to 0 explicitly and does not depend on it. */ 38 padding-top/bottom to 0 explicitly and does not depend on it. */
39 39
40input[type=text], textarea { 40input[type=text],
41input[type=password],
42textarea {
41 font-size: 1rem; 43 font-size: 1rem;
42 font-family: Helvetica; 44 font-family: Helvetica;
43 border: 1px solid #989898; 45 border: 1px solid #989898;
46 border-radius: 2px;
44} 47}
45 48
46select { 49select {
@@ -881,6 +884,10 @@ form.button_to button[type="submit"] {
881 margin-top: -5px; 884 margin-top: -5px;
882} 885}
883 886
887.aligned_action_row .action_button.action_button_no_margin_top {
888 margin-top: 0;
889}
890
884/* ============================================================ 891/* ============================================================
885 Page editor / metadata forms 892 Page editor / metadata forms
886 ============================================================ */ 893 ============================================================ */
@@ -1499,14 +1506,14 @@ div#image_browser ul li {
1499 Action log 1506 Action log
1500 ============================================================ */ 1507 ============================================================ */
1501 1508
1502#dashboard_widget td.node_action_time {
1503 white-space: wrap;
1504}
1505
1506#node_action_list td.node_action_body { 1509#node_action_list td.node_action_body {
1507 border-bottom: 1px solid #f1f1f1; 1510 border-bottom: 1px solid #f1f1f1;
1508} 1511}
1509 1512
1513.dashboard_widget .node_action_time span {
1514 display: block;
1515}
1516
1510#node_action_list td.node_action_time { 1517#node_action_list td.node_action_time {
1511 white-space: nowrap; 1518 white-space: nowrap;
1512 vertical-align: top; 1519 vertical-align: top;
@@ -1536,3 +1543,45 @@ div#image_browser ul li {
1536 font-size: smaller; 1543 font-size: smaller;
1537 color: #777; 1544 color: #777;
1538} 1545}
1546
1547.node_action_icon {
1548 color: #777;
1549 margin-right: 0.35em;
1550 vertical-align: text-bottom;
1551}
1552
1553.revision_lifecycle {
1554 font-size: 0.85rem;
1555 color: #777;
1556}
1557
1558/* ============================================================
1559 Trash section
1560 ============================================================ */
1561
1562.restore_form {
1563 display: flex;
1564 align-items: center;
1565 gap: 8px;
1566}
1567
1568.restore_picker {
1569 position: relative;
1570}
1571
1572.restore_picker input[type=text] {
1573 width: 22em;
1574}
1575
1576.restore_picker .search_results {
1577 position: absolute;
1578 top: 100%;
1579 left: 0;
1580 right: 0;
1581 z-index: 10;
1582 background: #fff;
1583 border: 1px solid #989898;
1584 border-top: none;
1585 max-height: 20em;
1586 overflow-y: auto;
1587}