更改oracle apex中区域显示选择器的样式

Change the style of the region display selector in oracle apex

我想在显示选择器中更改所选区域的样式。因此,我需要它具有像按钮一样的背景颜色,而不是在所选区域下方显示一条水平线。以及未选择区域的悬停颜色

只需给该区域一个 class。对于此示例,我使用 .processed 表示 已处理订单 。要删除下划线,您可以使用 text-decoration: none; 并将其与这些样式交换以获得悬停效果。

.processed {
  padding: 10px;
  background-color: white;
  color: black;
}

.processed:hover {
  background-color: darkblue;
  color: white;
  cursor: pointer;
}
<button class="processed" type="button">
Order Processed
</button>