mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 00:58:48 +02:00
- Add JS widget to handle front-end logic and for better encapsulation - Move SCSS files to match convention - Update SCSS files - Remove unused SCSS file - Move HTML templates to match convention - Remove unused HTML template - Renamed codes and folders to match convention - Update PHPDoc - Reformat code - Remove usage of return type hinting when using "self"
28 lines
451 B
SCSS
28 lines
451 B
SCSS
/*!
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
.ibo-tab--header {
|
|
a {
|
|
@extend %ibo-font-ral-med-200;
|
|
color: $ibo-color-grey-700;
|
|
|
|
:hover {
|
|
color: $ibo-color-grey-900;
|
|
}
|
|
}
|
|
|
|
&.ui-state-active a {
|
|
color: $ibo-color-blue-800;
|
|
@extend %ibo-font-ral-bol-200;
|
|
|
|
:hover {
|
|
color: $ibo-color-blue-800;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ibo-tab--content {
|
|
background: $ibo-color-white-100;
|
|
} |