mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-01 07:04:16 +01:00
76 lines
1.2 KiB
CSS
76 lines
1.2 KiB
CSS
/**
|
|
* Widgets Factory.
|
|
*
|
|
* @package FormSDK
|
|
* @since 3.2.0
|
|
*/
|
|
|
|
/* debug purpose */
|
|
.form-type-pictograms{
|
|
display: inline-block;
|
|
float: right;
|
|
margin-left: 5px;
|
|
color: grey;
|
|
cursor: pointer;
|
|
padding: 0px 5px;
|
|
border-radius: 8px;
|
|
font-size: 0.9rem;
|
|
}
|
|
.form-type-pictograms i{
|
|
width: 15px;
|
|
}
|
|
.complete .form-type-pictograms .pattern:after{
|
|
content: '\f00c';
|
|
font-family: "Font Awesome 6 Free";
|
|
font-weight: 900;
|
|
background-color: #20b220;
|
|
border-radius: 50%;
|
|
font-size: 7px;
|
|
color: white;
|
|
position: relative;
|
|
top: -10px;
|
|
padding: 2px;
|
|
}
|
|
|
|
/* form label */
|
|
.form-label.required:after{
|
|
content: '*';
|
|
color: #e63535;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.cke_focus .cke_contents{
|
|
border: 1px #86b7fe solid;
|
|
outline: 0;
|
|
border-radius: 6px;
|
|
box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
|
|
}
|
|
|
|
.form_interval_horizontal{
|
|
display: flex;
|
|
}
|
|
.form_interval_horizontal > div{
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.form-compound-fieldset{
|
|
padding: 8px;
|
|
border-radius: 10px;
|
|
border: 1px dashed lightgrey;
|
|
}
|
|
|
|
.form-layout-row{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.form-layout-column{
|
|
margin: 10px;
|
|
}
|
|
.form-layout-column:first-child{
|
|
margin-left: 0px;
|
|
}
|
|
.form-layout-column:last-child{
|
|
margin-right: 0px;
|
|
}
|
|
|