mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
27 lines
509 B
CSS
27 lines
509 B
CSS
|
|
||
|
.dialogButtons {
|
||
|
position: relative;
|
||
|
padding: 0 !important;
|
||
|
margin: 1em;
|
||
|
display: -ms-flexbox;
|
||
|
display: -webkit-flex;
|
||
|
display: flex;
|
||
|
-ms-flex-direction: row;
|
||
|
-webkit-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
-ms-flex-pack: end;
|
||
|
-webkit-justify-content: flex-end;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.dialogButton {
|
||
|
color: #52B54B;
|
||
|
padding: 0.35em 1em;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.dialogButton:focus {
|
||
|
color: #fff;
|
||
|
background-color: #52B54B;
|
||
|
}
|