123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- InfoBar {
- border: 1px solid rgb(229, 229, 229);
- border-radius: 6px;
- background-color: rgb(244, 244, 244);
- }
- #titleLabel {
- font: 14px 'Segoe UI', 'Microsoft YaHei';
- font-weight: bold;
- color: black;
- }
- #contentLabel {
- font: 14px 'Segoe UI', 'Microsoft YaHei';
- color: black;
- }
- InfoBar[type="Info"] {
- background-color: rgb(244, 244, 244);
- }
- InfoBar[type="Success"] {
- background-color: rgb(223, 246, 221);
- }
- InfoBar[type="Warning"] {
- background-color: rgb(255, 244, 206);
- }
- InfoBar[type="Error"] {
- background-color: rgb(253, 231, 233);
- }
- InfoBarCloseButton {
- background-color: transparent;
- border-radius: 5px;
- }
- InfoBarCloseButton:hover {
- background-color: rgba(0, 0, 0, 9);
- }
- InfoBarCloseButton:pressed {
- background-color: rgba(0, 0, 0, 6);
- }
|