pandorafms/pandora_console/include/styles/wizard.css

176 lines
2.7 KiB
CSS
Raw Normal View History

/*
* Discovery > Wizard css global style
*/
2020-03-30 19:44:44 +02:00
#main > form.discovery.wizard > .white_box {
min-width: 1024px;
}
ul.wizard {
2020-03-30 19:44:44 +02:00
list-style-type: none;
}
ul.wizard li {
2021-03-25 14:42:34 +01:00
padding-bottom: 10px;
padding-top: 10px;
}
ul.wizard.inline li {
2020-10-27 15:02:05 +01:00
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
.list .edit_discovery_input {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.list .label_select {
margin-bottom: 0;
}
ul.wizard li > label:not(.p-switch) {
width: 250px;
vertical-align: top;
display: inline-block;
}
ul.wizard li > textarea {
width: 600px;
height: 15em;
display: inline-block;
font-family: monospace;
}
2020-03-13 14:03:50 +01:00
.wizard .hidden {
2020-04-01 16:43:04 +02:00
display: none;
}
2020-03-13 14:03:50 +01:00
.indented {
margin-left: 1em;
}
2020-03-13 14:03:50 +01:00
.wizard .indented {
2020-04-07 18:50:56 +02:00
margin-left: 1em;
2020-03-13 14:03:50 +01:00
}
2020-03-30 19:44:44 +02:00
.wizard .std_input {
display: flex;
margin-bottom: 25px;
flex-wrap: wrap;
justify-content: space-between;
}
2020-04-15 11:53:10 +02:00
.std_input.hidden {
display: none;
}
2020-03-30 19:44:44 +02:00
.wizard .std_input > .label_select {
flex: 1 1 100%;
}
.wizard .std_input > * {
flex: 1 1 auto;
align-self: baseline;
}
.wizard .inline_input.no-margin {
margin-bottom: 0px;
}
.wizard .inline_input {
display: flex;
margin-bottom: 25px;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
}
.wizard .inline_input * {
flex: 1 1 auto;
}
.wizard .discovery_inline_input {
2020-05-26 11:26:49 +02:00
display: inline;
2020-03-30 19:44:44 +02:00
align-content: end;
align-self: flex-start;
}
2020-03-13 14:03:50 +01:00
/* override tag-editor styles */
.wizard .tag-editor.ui-sortable {
width: 450px;
display: inline-block;
}
.wizard .tag-editor .tag-editor-tag {
padding: 5px;
color: #fff;
background: #82b92e;
}
.wizard .tag-editor .tag-editor-delete i {
line-height: inherit;
}
.wizard .tag-editor .tag-editor-delete i:before {
color: #ccc;
}
.wizard .tag-editor .tag-editor-delete:hover i:before {
color: #fff;
}
.wizard .tag-editor .tag-editor-delete {
padding: 5px;
background: #e63c52;
}
2020-03-30 19:44:44 +02:00
.wizard .time_selection_container {
display: flex;
align-items: baseline;
justify-items: center;
align-content: space-between;
margin-top: 1em;
}
.wizard #interval_manual_container #interval_manual > * {
flex: 1 1 auto;
}
2020-04-07 17:46:12 +02:00
.wizard-column-levels {
float: left;
width: 33%;
text-align: center;
}
2020-04-08 16:52:34 +02:00
.action_button_list {
height: 60px;
}
.action_button_list li {
display: inline;
}
2021-02-05 12:37:27 +01:00
.searchbox ul {
justify-content: space-between;
}
.searchbox ul li:not(.textbox) {
flex-direction: row-reverse !important;
justify-content: flex-end !important;
}
.searchbox ul li.textbox label {
width: auto;
}
.searchbox ul li.textbox {
justify-content: space-evenly !important;
flex: 1 1 auto;
}
2021-03-25 14:42:34 +01:00
ul.wizard li.mrgn_0px {
margin: 0;
}
ul.wizard li.pdd_0px {
padding: 0;
}