mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
- Form SDK implementation - Basic Forms - Dynamics Forms - Basic Blocks + Data Model Block - Form Compilation - Turbo integration
78 lines
1.1 KiB
SCSS
78 lines
1.1 KiB
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
.ibo-prop-header {
|
|
@extend %ibo-font-size-150;
|
|
padding-bottom: 14px;
|
|
}
|
|
|
|
.help-text{
|
|
padding: 1px 5px;
|
|
background-color: #d7e3f8;
|
|
border: 1px solid #c6e7f5;
|
|
border-radius: 5px;
|
|
margin: 5px 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.form-error ul{
|
|
padding: 1px 5px;
|
|
background-color: #f8d7da;
|
|
border: 1px solid #f5c6cb;
|
|
border-radius: 5px;
|
|
margin: 5px 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.subform{
|
|
background-color: #efefef;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.form-buttons{
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.form select{
|
|
padding: 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.form select option{
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.turbo-refreshing{
|
|
opacity: .5;
|
|
}
|
|
|
|
.ibo-field legend{
|
|
margin-top: 24px;
|
|
}
|
|
|
|
collection-entry-element {
|
|
margin-top: 8px;
|
|
display: block;
|
|
padding: 10px 10px;
|
|
background-color: #f5f5f5;
|
|
border-radius: 5px;
|
|
}
|
|
.ts-control{
|
|
height: auto;
|
|
min-height: 30px;
|
|
}
|
|
|
|
.ibo-form-actions > .ibo-button > span{
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.ibo-form textarea{
|
|
resize: vertical;
|
|
}
|
|
|