style.scss
171 lines
| 1 | @use 'components/scroll-hint/styles/table' as scroll-hint; |
| 2 | |
| 3 | /* mixin |
| 4 | /*-------------------------------------------*/ |
| 5 | // 縦積み |
| 6 | @mixin cell-vertical-table { |
| 7 | |
| 8 | table { |
| 9 | |
| 10 | :is(th, td) { |
| 11 | width: 100%; |
| 12 | display: block; |
| 13 | border-top-color: transparent; |
| 14 | box-sizing: border-box; |
| 15 | /* 最後のセルには border-bottom: none を適用 */ |
| 16 | &:last-of-type:not(:last-child) { |
| 17 | border-bottom: none; |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | /* 最初の行を除外するためのスタイル */ |
| 23 | &:not(.is-style-stripes) tr:first-of-type :is(th, td):first-of-type{ |
| 24 | border-top: 1px solid; |
| 25 | border-top-color:inherit; |
| 26 | } |
| 27 | /* 最初の行の最初の th, td に適用されるスタイル */ |
| 28 | &:not(.is-style-stripes) table:where(:not(.has-border-color)) tr:first-of-type :is(th, td):first-of-type { |
| 29 | border-top-color: inherit; |
| 30 | } |
| 31 | /* 枠線の色が設定してある場合の th, td のスタイル */ |
| 32 | .has-border-color tr :is(th, td){ |
| 33 | border-left:none; |
| 34 | border-right:none; |
| 35 | } |
| 36 | /* 枠線の色が設定してある場合の最初の行の最初の th, td に適用されるスタイル */ |
| 37 | .has-border-color tr:first-of-type :is(th, td):first-of-type{ |
| 38 | border-top:none; |
| 39 | } |
| 40 | /* 枠線の色が設定してある場合の行の最後の th, td に適用されるスタイル */ |
| 41 | .has-border-color tr :is(th, td):last-of-type{ |
| 42 | border-bottom: none; |
| 43 | } |
| 44 | |
| 45 | &.is-style-vk-table { |
| 46 | &-border-top-bottom, |
| 47 | &-border, |
| 48 | &-border-stripes { |
| 49 | // theme.json のあるファイルでテーブルの線の色指定がない場合のみ適用 |
| 50 | table:not(.has-border-color) { |
| 51 | tr:first-of-type :is(th, td):first-of-type { |
| 52 | border-top: 1px solid; |
| 53 | border-top-color:inherit; |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /* フロントエンド |
| 61 | /*-------------------------------------------*/ |
| 62 | .wp-block-table { |
| 63 | thead th, tfoot td { |
| 64 | font-weight: bold; |
| 65 | } |
| 66 | |
| 67 | &.is-style-vk-table { |
| 68 | &-border-top-bottom, |
| 69 | &-border, |
| 70 | &-border-stripes { |
| 71 | // theme.json のあるファイルでテーブルの線の色指定がない場合のみ適用 |
| 72 | table:where(:not(.has-border-color)) { |
| 73 | :where(th, td) { |
| 74 | border: 1px solid; |
| 75 | border-color:inherit; |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | &-border-top-bottom { |
| 81 | table, |
| 82 | th, |
| 83 | td { |
| 84 | border-left: none; |
| 85 | border-right: none; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | &-border { |
| 90 | // theme.json のあるファイルでテーブルの線の色指定がない場合のみ適用 |
| 91 | table:where(:not(.has-border-color)) { |
| 92 | th, td { |
| 93 | border: 1px solid; |
| 94 | border-color: inherit; |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | &-border-stripes { |
| 100 | tbody tr:nth-child(2n+1) { |
| 101 | background-color: #f0f0f0; |
| 102 | } |
| 103 | // theme.json のあるファイルでテーブルの線の色指定がない場合のみ適用 |
| 104 | table:where(:not(.has-border-color)) { |
| 105 | th, td { |
| 106 | border: 1px solid; |
| 107 | border-color: inherit; |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | &.is-style-vk-table-cell-vertical { |
| 114 | |
| 115 | &[data-cell-vertical-breakpoint="table-cell-vertical-mobile"]="table-cell-vertical-mobile""] { |
| 116 | @media (max-width: 575.98px) { |
| 117 | @include cell-vertical-table; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | &[data-cell-vertical-breakpoint="table-cell-vertical-tablet"]="table-cell-vertical-tablet""] { |
| 122 | @media (max-width: 991.98px) { |
| 123 | @include cell-vertical-table; |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | &[data-cell-vertical-breakpoint="table-cell-vertical-pc"]="table-cell-vertical-pc""] { |
| 128 | @include cell-vertical-table; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | /* 編集画面 |
| 134 | /*-------------------------------------------*/ |
| 135 | .editor-styles-wrapper { |
| 136 | .wp-block-table { |
| 137 | &.is-style-regular { //デフォルトのボーダーカラー |
| 138 | th, td { |
| 139 | border-color: var(--vk-color-border-hr); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | &.is-style-vk-table-cell-vertical { |
| 144 | |
| 145 | /* 最初の行を除外するためのスタイル */ |
| 146 | &:not(.is-style-stripes) table:not(.has-border-color) { |
| 147 | tr:first-of-type :is(th, td):first-of-type { |
| 148 | border-top: 1px solid; |
| 149 | border-top-color:inherit; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | &[data-cell-vertical-breakpoint="table-cell-vertical-mobile"]="table-cell-vertical-mobile""] { |
| 154 | @media (max-width: 575.98px) { |
| 155 | @include cell-vertical-table; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | &[data-cell-vertical-breakpoint="table-cell-vertical-tablet"]="table-cell-vertical-tablet""] { |
| 160 | @media (max-width: 991.98px) { |
| 161 | @include cell-vertical-table; |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | &[data-cell-vertical-breakpoint="table-cell-vertical-pc"]="table-cell-vertical-pc""] { |
| 166 | @include cell-vertical-table; |
| 167 | } |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 |