43 lines
550 B
CSS
43 lines
550 B
CSS
.plugin-list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.plugin-list li {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.bottom-spacing {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.plugin-error {
|
|
color: #ff0000;
|
|
}
|
|
|
|
.plugin-label {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.loading {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding-right: 12px;
|
|
padding-left: 12px;
|
|
justify-content: space-evenly;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.buttons button {
|
|
flex: 1;
|
|
margin-right: 12px;
|
|
margin-right: 12px;
|
|
}
|