diff --git a/core-web/libs/dotcms-scss/angular/dotcms-theme/components/buttons/_button.scss b/core-web/libs/dotcms-scss/angular/dotcms-theme/components/buttons/_button.scss index 69ff804b13a0..cf8164cecc3b 100644 --- a/core-web/libs/dotcms-scss/angular/dotcms-theme/components/buttons/_button.scss +++ b/core-web/libs/dotcms-scss/angular/dotcms-theme/components/buttons/_button.scss @@ -157,3 +157,32 @@ a.p-button.p-button-text { .p-button-rounded { border-radius: 50%; } + +.p-buttonset { + .p-button { + margin: 0; + + &:not(:last-child) { + border-right: 0 none; + } + + &:not(:first-of-type):not(:last-of-type) { + border-radius: 0; + } + + &:first-of-type { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + &:last-of-type { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + &:focus { + position: relative; + z-index: 1; + } + } +}