2024-09-17 08:23:12 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
This CSS file will be included with your plugin, and
|
|
|
|
|
available in the app when your plugin is enabled.
|
|
|
|
|
|
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
|
|
|
|
|
|
*/
|
2024-10-17 15:26:18 +00:00
|
|
|
|
|
|
|
|
.moving_rules_container {
|
|
|
|
|
padding: 0.75em 0;
|
|
|
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
justify-content: space-evenly;
|
2024-10-27 10:40:23 +00:00
|
|
|
gap: 0.5em;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_header {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_title {
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 0.25em;
|
|
|
|
|
}
|
2024-10-27 10:40:23 +00:00
|
|
|
|
|
|
|
|
.rule_button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button:hover {
|
|
|
|
|
background-color: var(--color-green);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button:active {
|
|
|
|
|
background-color: var(--background-modifier-active);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button_remove:hover {
|
|
|
|
|
background-color: var(--color-red)!important;
|
|
|
|
|
}
|
|
|
|
|
|