| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | */ |
| 7 | |
| 8 | .single-column-selection-table.selected-column-0 td:not([data-column='0']) { |
| 9 | user-select: none; |
| 10 | } |
| 11 | .single-column-selection-table.selected-column-1 td:not([data-column='1']) { |
| 12 | user-select: none; |
| 13 | } |
| 14 | .single-column-selection-table.selected-column-2 td:not([data-column='2']) { |
| 15 | user-select: none; |
| 16 | } |
| 17 | .single-column-selection-table.selected-column-3 td:not([data-column='3']) { |
| 18 | user-select: none; |
| 19 | } |
| 20 | /* ...you could keep going if you have more columns... */ |
| 21 | |