mirror of
https://github.com/ansible/awx.git
synced 2026-01-24 16:01:20 -03:30
the survey portion of the job launch modal needed to be made to look more like the prompt for passwords and prompt for variables
93 lines
1.3 KiB
Plaintext
93 lines
1.3 KiB
Plaintext
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* survey-maker.css
|
|
*
|
|
* custom styles for the survey maker
|
|
*
|
|
*/
|
|
|
|
|
|
/**
|
|
* #survey_maker_question_area{
|
|
* border: 1px solid;
|
|
* border-color: rgb(204,204,204);
|
|
* border-radius: 4px;
|
|
* padding: 15px;
|
|
* }
|
|
*/
|
|
|
|
.question_form{
|
|
border: 1px solid;
|
|
border-color: rgb(204,204,204);
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
margin-bottom: 15px;
|
|
height: 500px;
|
|
}
|
|
|
|
.survey_maker_question{
|
|
border: 1px solid;
|
|
border-color: rgb(204,204,204);
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.question_final{
|
|
border-top: 1px dashed;
|
|
border-color: rgb(204,204,204);
|
|
border-radius: 4px;
|
|
opacity: 0.7;
|
|
padding: 5px;
|
|
position: relative;
|
|
.final{
|
|
margin-left: 15px;
|
|
margin-top: 5px;
|
|
}
|
|
.description{
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
|
|
#new_question{
|
|
margin-top: 5px;
|
|
}
|
|
|
|
#add_question_btn{
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.survey_taker_question{
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.survey_taker_input{
|
|
margin-top: 5px;
|
|
margin-left: 15px;
|
|
|
|
input{
|
|
margin-left: 18px;
|
|
margin-right: 7px;
|
|
}
|
|
}
|
|
|
|
.survey_taker_description{
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.survey_error{
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.survey_taker_choices{
|
|
margin-left: 15px;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|