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

67 lines
1.0 KiB
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-06-20 10:56:36 +00:00
vertical-align: bottom;
2020-05-14 10:13:08 +00:00
text-align: center;
2020-06-25 08:26:13 +00:00
overflow: hidden;
position: relative;
2020-04-28 09:34:12 +00:00
}
.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-button-vertical {
flex-direction: column;
}
.p-button-icon-bottom {
order: 2;
}
2020-04-29 16:27:08 +00:00
.p-buttonset .p-button {
margin: 0;
}
2020-05-13 13:30:02 +00:00
.p-buttonset .p-button:not(:last-child) {
border-right: 0 none;
}
2020-05-12 21:53:37 +00:00
.p-buttonset .p-button:not(:first-of-type):not(:last-of-type) {
2020-04-29 16:27:08 +00:00
border-radius: 0;
}
2020-05-12 21:53:37 +00:00
.p-buttonset .p-button:first-of-type {
2020-04-29 16:27:08 +00:00
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
2020-05-12 21:53:37 +00:00
.p-buttonset .p-button:last-of-type {
2020-04-29 16:27:08 +00:00
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
}