modmapper-web/styles/FetchedPluginsList.module.css

61 lines
847 B
CSS
Raw Normal View History

2022-02-27 06:17:52 +00:00
.plugin-list {
list-style-type: none;
padding: 0;
2022-03-17 05:11:59 +00:00
margin: 0;
2022-02-27 06:17:52 +00:00
}
.plugin-list li {
white-space: nowrap;
text-overflow: ellipsis;
overflow-x: hidden;
}
2022-03-17 05:11:59 +00:00
.bottom-spacing {
margin-bottom: 12px;
}
2022-08-19 23:00:10 +00:00
.plugin-row {
display: flex;
align-items: center;
2022-02-27 06:17:52 +00:00
}
.plugin-label {
margin-left: 8px;
2022-08-19 23:00:10 +00:00
margin-right: 4px;
overflow: hidden;
text-overflow: ellipsis;
}
.plugin-remove {
margin-left: auto;
padding: 2px 8px;
background: none;
border: none;
display: flex;
align-items: center;
cursor: pointer;
2022-08-19 23:00:10 +00:00
}
2022-08-20 02:35:00 +00:00
.plugin-remove:hover img {
filter: invert(40%);
2022-02-27 06:17:52 +00:00
}
2022-03-15 05:03:51 +00:00
.loading {
margin-bottom: 12px;
}
.buttons {
display: flex;
flex-direction: row;
padding-right: 12px;
padding-left: 12px;
justify-content: space-evenly;
2022-03-15 23:59:16 +00:00
margin-bottom: 12px;
2022-03-15 05:03:51 +00:00
}
.buttons button {
flex: 1;
margin-right: 12px;
margin-right: 12px;
}