df9c7deef1
・タクソノミーのソート順登録/未登録両方取得するようget_postsのパラメータを修正 ・タクソノミーのソート順登録/未登録両方取得に伴いテンプレートを修正 ・通常と検索のソート順登録/未登録両方取得するようget_postsのパラメータを修正 ・「表示設定に従う」メニューへposts_per_pageの設定件数を表示 ・バグ修正:検索設定のnema属性修正と検索ページのメソッド引数修正
218 lines
3.4 KiB
CSS
218 lines
3.4 KiB
CSS
@charset "UTF-8";
|
||
|
||
h3 {
|
||
font-weight: normal;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.post-order-nav {
|
||
width: 95%;
|
||
}
|
||
|
||
.post-order-nav ul {
|
||
display: flex;
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.post-order-nav li {
|
||
width: 20em;
|
||
margin-right: .5em;
|
||
margin-bottom: 0;
|
||
padding: .5em;
|
||
text-align: center;
|
||
background: #ababab;
|
||
border: 1px solid #999;
|
||
cursor: pointer;
|
||
}
|
||
|
||
.post-order-nav li.en {
|
||
background: #fff;
|
||
border-bottom: 1px solid #fff;
|
||
opacity: 1;
|
||
}
|
||
|
||
.post-order-nav li:last-child {
|
||
margin-right: 0;
|
||
}
|
||
|
||
.post-setting-box {
|
||
margin: 5px 15px;
|
||
}
|
||
|
||
.post-order-box-outer {
|
||
width: 100%;
|
||
margin: -1px 0 2em;
|
||
border-top: 1px solid #999;
|
||
}
|
||
|
||
.post-order-box:not(:first-child) {
|
||
display: none;
|
||
}
|
||
|
||
.list-orders-outer {
|
||
width: 100%;
|
||
margin-bottom: 1em;
|
||
display: flex;
|
||
justify-content: flex-start;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.list-orders-inner {
|
||
width: calc((100% - 10px) / 2);
|
||
margin: 1.5em 1em 0 0;
|
||
padding: .5em;
|
||
border: 1px solid #999;
|
||
position: relative;
|
||
}
|
||
|
||
.list-orders-inner.search_inner {
|
||
width: calc((100% - 10px) / 2);
|
||
}
|
||
|
||
.apop_normal_order_target,
|
||
.apop_search_order_target {
|
||
display: flex;
|
||
}
|
||
|
||
.apop_normal_order_target li:first-child,
|
||
.apop_search_order_target li:first-child {
|
||
margin-right: 2em;
|
||
}
|
||
|
||
p.submit.post-order .button-primary {
|
||
position: absolute;
|
||
bottom: 1em;
|
||
right: 1.5em;
|
||
}
|
||
|
||
dl.apop_setting_list {
|
||
width: 100%;
|
||
margin-top: .5em;
|
||
}
|
||
|
||
dl.apop_setting_list dt {
|
||
float: left;
|
||
}
|
||
|
||
dl.apop_setting_list dd {
|
||
margin-left: 200px;
|
||
}
|
||
|
||
dl.apop_setting_list dd:first-of-type {
|
||
margin-bottom: 2em;
|
||
}
|
||
|
||
.form-table tr {
|
||
border-bottom: 1px solid #ccc;
|
||
}
|
||
|
||
.post-order-list {
|
||
margin: .5em 1em 1em 0;
|
||
}
|
||
|
||
.product-list {
|
||
padding: 1em .5em;
|
||
background: #fff;
|
||
cursor: move;
|
||
color: #4b4b4b;
|
||
border: 1px solid #ababab;
|
||
}
|
||
|
||
.search_normal_sort .product-list {
|
||
display: flex;
|
||
}
|
||
|
||
.search_normal_sort .product-list-type-label {
|
||
width: calc(100% / 2);
|
||
display: flex;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.search_normal_sort .product-list-sort-type {
|
||
width: 100%;
|
||
display: flex;
|
||
}
|
||
|
||
.search_normal_sort .product-list-sort-type label {
|
||
width: calc((100% / 4) - 5px);
|
||
}
|
||
|
||
.product-list.no_order {
|
||
background: #ababab;
|
||
}
|
||
|
||
.list_order {
|
||
width: 2em;
|
||
}
|
||
|
||
.sort-num-label::before {
|
||
content: "[";
|
||
}
|
||
|
||
.sort-num-label::after {
|
||
content: "]";
|
||
}
|
||
|
||
.hide_list {
|
||
display: none;
|
||
}
|
||
|
||
.no_registered_exp {
|
||
width: 100%;
|
||
margin-top: 1em;
|
||
}
|
||
|
||
@media only screen and (max-width: 1264px) {
|
||
.search_normal_sort .product-list {
|
||
display: block;
|
||
}
|
||
|
||
.search_normal_sort .product-list-type-label {
|
||
width: 100%;
|
||
margin-bottom: 1em;
|
||
display: block;
|
||
}
|
||
|
||
.search_normal_sort .product-list-sort-type {
|
||
width: 100%;
|
||
}
|
||
|
||
.search_normal_sort .product-list-sort-type label {
|
||
width: calc((100% / 3) - 5px);
|
||
}
|
||
}
|
||
|
||
@media only screen and (max-width: 964px) {
|
||
|
||
.post-order-nav {
|
||
width: 98%;
|
||
}
|
||
|
||
.list-orders-outer {
|
||
display: block;;
|
||
}
|
||
|
||
.list-orders-inner.search_inner {
|
||
width: auto;
|
||
}
|
||
|
||
.list-orders-inner {
|
||
width: auto;
|
||
margin: 1.5em 0 0 0;
|
||
}
|
||
|
||
dl.apop_setting_list dt {
|
||
float: none;
|
||
width: 100%;
|
||
margin-bottom: 1em;
|
||
}
|
||
|
||
dl.apop_setting_list dd {
|
||
margin-left: 0;
|
||
}
|
||
|
||
dl.apop_setting_list li label input[type="text"] {
|
||
width: 95%;
|
||
margin-top: .5em;
|
||
}
|
||
} |