Skip to content

Commit

Permalink
Refs #133599 - Fix header fullwidth size (by using a selector with a …
Browse files Browse the repository at this point in the history
…higher specificity to override the !important).
  • Loading branch information
GhitaB committed Nov 25, 2021
1 parent d7ebad9 commit 5a10f45
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/SearchBlock/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,35 @@
div#page-document {
width: calc(100vw - 100px) !important;
}

div.header-wrapper[role='banner'] {
div.ui.container:first-of-type {
width: calc(100vw - 100px) !important;
}
}
}

&.has-toolbar-collapsed {
div#page-document {
width: calc(100vw - 50px) !important;
}

div.header-wrapper[role='banner'] {
div.ui.container:first-of-type {
width: calc(100vw - 50px) !important;
}
}
}
}
}

body.searchlib-page {
div.header-wrapper[role='banner'] {
div.ui.container:first-of-type {
width: 100vw !important;
}
}

div#main > div.ui.breadcrumbs {
display: none;
}
Expand Down

0 comments on commit 5a10f45

Please sign in to comment.