2020-11-25 01:44:40 +08:00
|
|
|
.ExtensionsWidget {
|
2021-11-05 05:34:18 +08:00
|
|
|
background-color: var(--body-bg);
|
2020-11-25 01:44:40 +08:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ExtensionsWidget-list {
|
2020-12-08 04:14:22 +08:00
|
|
|
padding: 0;
|
2021-11-05 05:34:18 +08:00
|
|
|
background-color: var(--body-bg);
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
.ExtensionGroup {
|
|
|
|
margin-bottom: 20px;
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
h3 {
|
2021-11-05 05:34:18 +08:00
|
|
|
color: var(--muted-color);
|
2020-12-08 04:14:22 +08:00
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 0 0 10px;
|
2020-11-25 01:44:40 +08:00
|
|
|
}
|
2020-12-08 04:14:22 +08:00
|
|
|
}
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
.ExtensionList {
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 10px;
|
|
|
|
grid-template-columns: repeat(auto-fit, 90px);
|
|
|
|
margin-bottom: 0;
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
> li {
|
|
|
|
text-align: left;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
2020-11-25 01:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
2020-12-08 04:14:22 +08:00
|
|
|
}
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2021-02-19 07:45:43 +08:00
|
|
|
.ExtensionList-Category {
|
2021-11-05 05:34:18 +08:00
|
|
|
background: var(--control-bg);
|
2021-02-19 07:45:43 +08:00
|
|
|
padding: 20px 0 20px 20px;
|
|
|
|
margin-bottom: 20px;
|
2021-11-05 05:34:18 +08:00
|
|
|
border-radius: var(--border-radius);
|
2021-02-19 07:45:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.ExtensionList-Label {
|
|
|
|
margin-top: 0;
|
2021-11-05 05:34:18 +08:00
|
|
|
color: var(--muted-color);
|
2021-02-19 07:45:43 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
.ExtensionListItem.disabled {
|
|
|
|
.ExtensionListItem-title {
|
|
|
|
opacity: 0.5;
|
2021-11-05 05:34:18 +08:00
|
|
|
color: var(--muted-color);
|
2020-12-08 04:14:22 +08:00
|
|
|
}
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
.ExtensionListItem-icon {
|
|
|
|
opacity: 0.5;
|
2020-11-25 01:44:40 +08:00
|
|
|
}
|
2020-12-08 04:14:22 +08:00
|
|
|
}
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
.ExtensionListItem {
|
|
|
|
transition: .15s ease-in-out;
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
&:hover {
|
|
|
|
transform: scale(1.05);
|
|
|
|
}
|
2020-11-25 01:44:40 +08:00
|
|
|
|
2020-12-08 04:14:22 +08:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
2020-11-25 01:44:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-19 07:45:43 +08:00
|
|
|
.ExtensionListItem-title {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 5px;
|
2021-11-05 05:34:18 +08:00
|
|
|
color: var(--text-color);
|
2021-02-19 07:45:43 +08:00
|
|
|
}
|
|
|
|
|
2020-11-25 01:44:40 +08:00
|
|
|
.ExtensionIcon {
|
2021-08-22 02:34:07 +08:00
|
|
|
--size: 90px;
|
|
|
|
width: var(--size);
|
|
|
|
height: var(--size);
|
2021-11-05 05:34:18 +08:00
|
|
|
background: var(--control-bg);
|
|
|
|
color: var(--control-color);
|
2020-11-25 01:44:40 +08:00
|
|
|
border-radius: 6px;
|
|
|
|
display: inline-flex;
|
2021-08-22 02:34:07 +08:00
|
|
|
font-size: calc(~"var(--size) / 2");
|
2020-11-25 01:44:40 +08:00
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|