Controls improve

This commit is contained in:
Jose Gonzalez 2023-03-07 11:15:01 +01:00
parent 1f45ee33b2
commit b68fe38102
2 changed files with 26 additions and 2 deletions

View File

@ -11006,14 +11006,14 @@ pre.external_tools_output {
.tag-editor .tag-editor-tag { .tag-editor .tag-editor-tag {
padding: 5px !important; padding: 5px !important;
color: #fff !important; color: #fff !important;
background: #82b92e !important; background: var(--primary-color) !important;
border-radius: 0 2px 2px 0 !important; border-radius: 0 2px 2px 0 !important;
} }
.tag-editor .tag-editor-delete { .tag-editor .tag-editor-delete {
padding: 5px !important; padding: 5px !important;
line-height: 16px !important; line-height: 16px !important;
background: #82b92e !important; background: var(--primary-color) !important;
border-radius: 2px 0 0 2px !important; border-radius: 2px 0 0 2px !important;
} }
@ -11187,6 +11187,10 @@ table.table_modal_alternate
height: 20px; height: 20px;
} }
.header_help_icon {
width: 16px;
height: 16px;
}
.main_menu_icon.arrow_up { .main_menu_icon.arrow_up {
transform: rotate(90deg); transform: rotate(90deg);
} }
@ -11536,3 +11540,17 @@ table.alert-template-fields > tbody > tr > td > div > textarea {
table.alert-template-fields > tbody > tr > td[id^="template-label_fields"] { table.alert-template-fields > tbody > tr > td[id^="template-label_fields"] {
text-align: center; text-align: center;
} }
ul.tag-editor {
list-style-type: none;
padding: 0.5em !important;
margin: 0;
overflow: hidden;
border: 2px solid #c0ccdc;
border-radius: 6px;
cursor: text;
font: normal 14px sans-serif;
color: #333333;
background: #f6f7fb;
line-height: 20px;
}

View File

@ -130,6 +130,12 @@ ul.wizard li > textarea {
background: #e63c52; background: #e63c52;
} }
.wizard .tag-editor li,
.wizard .tag-editor li:focus,
.wizard .tag-editor li:hover {
border: 0;
padding: 0;
}
.wizard .time_selection_container { .wizard .time_selection_container {
display: flex; display: flex;
align-items: baseline; align-items: baseline;