Skip to content

Commit

Permalink
fix: smalls changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagner3UB committed Mar 6, 2024
1 parent da80c23 commit 713a262
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
}
}
}
.search-section-title {
color: #fff;
}
@if $subsite-light-theme {
button.rounded-right svg {
fill: $body-color !important;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@use '../../all_variables' as *;

@mixin block($subsite-secondary) {
.table-of-contents {
.ui.bulleted.list {
.item {
&.headline-2 {
&::before {
border-left: 0.5rem solid $subsite-secondary;
}
}
&:not(.headline-2)::before {
border-color: $subsite-secondary;
}
}
}
}
}
2 changes: 2 additions & 0 deletions theme/ItaliaTheme/Subsites/_mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
@use 'ItaliaTheme/Blocks/ribbonCardTemplate' as it-ribbon-card;
@use 'ItaliaTheme/Blocks/highlitedContent' as it-highlight;
@use 'ItaliaTheme/Blocks/argumentsInEvidence' as it-args-evidence;
@use 'ItaliaTheme/Blocks/tableOfContents' as it-table-contents;
@use 'ItaliaTheme/Blocks/searchSections' as it-search-sections;
@use 'ItaliaTheme/Blocks/info' as it-info;
@use 'ItaliaTheme/Views/common' as it-views;
Expand Down Expand Up @@ -108,6 +109,7 @@
@include it-ribbon-card.card($subsite-link-color);
@include it-highlight.block($subsite-link-color);
@include it-args-evidence.block($subsite-primary, $subsite-primary-text);
@include it-table-contents.block($subsite-secondary);
@include it-search-sections.block(
$subsite-primary,
$subsite-secondary,
Expand Down

0 comments on commit 713a262

Please sign in to comment.