primevue-mirror/src/components/button/Button.css

52 lines
825 B
CSS
Raw Normal View History

2018-12-07 21:18:52 +00:00
.p-button {
2020-04-28 09:34:12 +00:00
margin: 0;
2020-04-24 10:43:27 +00:00
display: inline-flex;
2018-12-07 21:18:52 +00:00
cursor: pointer;
user-select: none;
2020-04-24 10:43:27 +00:00
align-items: center;
2020-04-28 09:34:12 +00:00
vertical-align: bottom;
}
.p-button-text {
flex: 1 1 auto;
}
.p-button-icon-right {
order: 1;
2018-12-07 21:18:52 +00:00
}
.p-button:disabled {
cursor: default;
}
2020-04-24 10:43:27 +00:00
.p-button-icon-only {
justify-content: center;
2018-12-07 21:18:52 +00:00
}
2020-04-28 09:34:12 +00:00
.p-button-icon-only .p-button-text {
visibility: hidden;
width: 0;
flex: 0 0 auto;
2020-04-29 16:27:08 +00:00
}
.p-buttonset .p-button {
margin: 0;
}
.p-buttonset .p-button:not(:first-child):not(:last-child) {
border-radius: 0;
}
.p-buttonset .p-button:first-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.p-buttonset .p-button:last-child {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.p-buttonset .p-button:focus {
2020-04-29 17:38:47 +00:00
position: relative;
2018-12-07 21:18:52 +00:00
}