| 1 |
/* edit-items.css |
| 2 |
-------------------------------------------------------------- */ |
| 3 |
|
| 4 |
.widefat .menu-label-row td { |
| 5 |
border-bottom-width: 1px; |
| 6 |
} |
| 7 |
|
| 8 |
.widefat .menu-label-row td h3 { |
| 9 |
padding-left: 30px; |
| 10 |
} |
| 11 |
|
| 12 |
.widefat .menu-label-row td h3 .edit-nova-section { |
| 13 |
font-size: 0.8em; |
| 14 |
font-weight: 400; |
| 15 |
margin-left: 5px; |
| 16 |
} |
| 17 |
|
| 18 |
.widefat .menu-order-value { |
| 19 |
width: 2.5em; |
| 20 |
text-align: center; |
| 21 |
} |
| 22 |
|
| 23 |
.widefat .menu-label-row, |
| 24 |
.widefat .menu-label-row td { |
| 25 |
background-color: #f0f0f1; |
| 26 |
color: #111; |
| 27 |
border: 0 none; |
| 28 |
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05); |
| 29 |
} |
| 30 |
|
| 31 |
.ui-sortable .type-nova_menu_item { |
| 32 |
cursor: move; |
| 33 |
background-color: #fff; |
| 34 |
} |
| 35 |
|
| 36 |
.ui-sortable .type-nova_menu_item:nth-child(even) { |
| 37 |
background-color: #f6f7f7; |
| 38 |
} |
| 39 |
|
| 40 |
.ui-sortable .type-nova_menu_item.ui-sortable-helper { |
| 41 |
box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); |
| 42 |
} |
| 43 |
|
| 44 |
.tablenav .button-reorder { |
| 45 |
margin-top: 4px; |
| 46 |
} |
| 47 |
|
| 48 |
.tablenav .view-switch a, |
| 49 |
.tablenav div.tablenav-pages { |
| 50 |
display: none; |
| 51 |
} |
| 52 |
|
| 53 |
|
| 54 |
/* many-items.css |
| 55 |
-------------------------------------------------------------- */ |
| 56 |
|
| 57 |
.many-items-table th, |
| 58 |
.many-items-table td { |
| 59 |
width: 30%; |
| 60 |
} |
| 61 |
|
| 62 |
.many-items-table th.nova-price, |
| 63 |
.many-items-table td.nova-price { |
| 64 |
width: 10%; |
| 65 |
} |
| 66 |
|
| 67 |
.many-items-table input, |
| 68 |
.many-items-table textarea { |
| 69 |
width: 100%; |
| 70 |
} |
| 71 |
|
| 72 |
.many-items-table input[type="file"] { |
| 73 |
box-sizing: border-box; |
| 74 |
} |
| 75 |
|
| 76 |
|
| 77 |
/* new |
| 78 |
-------------------------------------------------------------- */ |
| 79 |
|
| 80 |
#the-list tr td:nth-of-type(2) { |
| 81 |
padding-top: 15px; |
| 82 |
} |
| 83 |
|
| 84 |
.nova-move-menu-up::before, |
| 85 |
.nova-move-menu-down::before { |
| 86 |
margin-right: 5px; |
| 87 |
font: 400 10px/1 dashicons !important; |
| 88 |
speak: none; |
| 89 |
} |
| 90 |
|
| 91 |
.nova-move-menu-up::before { |
| 92 |
content: "\f342"; |
| 93 |
} |
| 94 |
|
| 95 |
.nova-move-menu-down::before { |
| 96 |
content: "\f346"; |
| 97 |
} |
| 98 |
|
| 99 |
.dashicon::before { |
| 100 |
font: 400 20px/1 dashicons; |
| 101 |
speak: none; |
| 102 |
top: 5px; |
| 103 |
display: inline-block; |
| 104 |
position: relative; |
| 105 |
-webkit-font-smoothing: antialiased; |
| 106 |
-moz-osx-font-smoothing: grayscale; |
| 107 |
text-decoration: none !important; |
| 108 |
vertical-align: top; |
| 109 |
} |
| 110 |
|
| 111 |
.dashicon-plus::before { |
| 112 |
content: "\f132"; |
| 113 |
} |
| 114 |
|
| 115 |
.dashicon-edit::before { |
| 116 |
margin: 2px 5px 0 10px; |
| 117 |
content: "\f327"; |
| 118 |
font-size: 10px; |
| 119 |
} |
| 120 |
|