如何将 primeng spltbutton 样式设置为 bootstrap 按钮

How to style primeng spiltbutton look like bootstrap button

HI 在下面的 stackblitz link 中,我有两个控件, 一个是 primeng splitbutton,另一个是 bootstrap button .

https://stackblitz.com/edit/angular6-primeng-hlxeod?file=src/app/app.component.html

我无法自定义拆分按钮的宽度和颜色以使其看起来像 bootstrap 按钮。 请分享任何建议

我尝试了 styleClass 和内联样式,但没有得到反映。

在我的实际应用程序中,我有许多其他控件,因此 class 无法仅控制特定的拆分按钮

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
<button class='btn btn-primary'>here</button>

Bootstrap 应用了 :focus 和 :hover 等

所以我想通了,当我将 css 放在全局 styles.scss 中时,它能够实现和更改 css。您可以使用 styleClass 或 class 使其具体化,因为在 dependenices.json 中,样式应该在 primeng 之后 css class 这就是为什么它可以覆盖