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