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 {
|
2025-04-13 09:12:30 +00:00
|
|
|
padding: 0.75em 0;
|
|
|
|
|
border-top: 1px solid var(--background-modifier-border);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule {
|
2025-04-13 09:12:30 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
gap: 0.5em;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_header {
|
2025-04-13 09:12:30 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_title {
|
2025-04-13 09:12:30 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-weight: bold;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_input {
|
2025-04-13 09:12:30 +00:00
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 0.25em;
|
2024-10-17 15:26:18 +00:00
|
|
|
}
|
2024-10-27 10:40:23 +00:00
|
|
|
|
|
|
|
|
.rule_button {
|
2025-04-13 09:12:30 +00:00
|
|
|
cursor: pointer;
|
2024-10-27 10:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button:hover {
|
2025-04-13 09:12:30 +00:00
|
|
|
background-color: var(--color-green);
|
2024-10-27 10:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button:active {
|
2025-04-13 09:12:30 +00:00
|
|
|
background-color: var(--background-modifier-active);
|
2024-10-27 10:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rule_button_remove:hover {
|
2025-04-13 09:12:30 +00:00
|
|
|
background-color: var(--color-red) !important;
|
2024-10-27 10:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
2025-02-12 09:43:46 +00:00
|
|
|
.rule_button_duplicate:hover {
|
2025-04-13 09:12:30 +00:00
|
|
|
background-color: var(--color-blue) !important;
|
2025-02-12 09:43:46 +00:00
|
|
|
}
|
2025-04-17 16:16:09 +00:00
|
|
|
|
|
|
|
|
/* Style for timer-setting input field */
|
|
|
|
|
.setting-item.timer-setting input[type="text"] {
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 8ch;
|
|
|
|
|
/* Minimum for hh:mm:ss */
|
|
|
|
|
max-width: 16ch;
|
|
|
|
|
/* Allows up to ~9999:59:59 */
|
|
|
|
|
/* padding: 2px 6px; */
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
text-align: center;
|
|
|
|
|
/* box-sizing: content-box; */
|
|
|
|
|
}
|