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

30 lines
428 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;
2018-12-07 21:18:52 +00:00
}