mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
29 lines
726 B
SCSS
29 lines
726 B
SCSS
/*
|
||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||
* @license http://opensource.org/licenses/AGPL-3.0
|
||
*/
|
||
|
||
//==========================================================================
|
||
// Here are the rules that make standard HTML tags fallback to the theme
|
||
// styles so then can be displayed correctly even if they don't have any
|
||
// CSS classes
|
||
//
|
||
// Be very specific about what each piece of code is doing
|
||
// ==========================================================================
|
||
|
||
// Rules:
|
||
// ---------------
|
||
// 1. If it’s a hack, it goes in _shame.scss not here.
|
||
// 2. See rule #1
|
||
|
||
fieldset {
|
||
@extend .ibo-fieldset;
|
||
}
|
||
|
||
legend {
|
||
@extend .ibo-fieldset-legend;
|
||
}
|
||
|
||
textarea {
|
||
@extend .ibo-input-text;
|
||
} |