-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/backend
# Conflicts: # orp/orp_search/templates/orp.html
- Loading branch information
Showing
10 changed files
with
282 additions
and
223 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.orp-applied-filters-container { | ||
background-color: govuk-colour("light-grey"); | ||
@include govuk-responsive-padding(2); | ||
|
||
.orp-applied-filter-tag { | ||
display: inline-flex; | ||
line-height: 1; | ||
|
||
a { | ||
background-image: url("../images/icon-cross.svg"); | ||
background-repeat: no-repeat; | ||
background-position: center left 7px; | ||
background-size: 10px 10px; | ||
border: 1px solid govuk-colour("dark-grey"); | ||
border-radius: 5px; | ||
margin: govuk-spacing(1) govuk-spacing(1) govuk-spacing(1) 0; | ||
// display: flex; | ||
padding: govuk-spacing(1); | ||
padding-left: govuk-spacing(5); | ||
text-decoration: none; | ||
|
||
} | ||
} | ||
} | ||
|
||
.orp-publisher-search { | ||
.orp-publisher-search__input { | ||
position: relative; | ||
background-image: url("../images/icon-search-black.svg"); | ||
background-repeat: no-repeat; | ||
background-position: center right -2px; | ||
padding-right: 35px; | ||
// background-size: $icon-size $icon-size; | ||
|
||
&::placeholder { | ||
color: govuk-colour("dark-grey"); | ||
} | ||
|
||
// If the user is in a dark forced colours mode, switch the search icon out | ||
// for a light variant. | ||
// @media (forced-colors: active) and (prefers-color-scheme: dark) { | ||
// background-image: _search-icon($colour: govuk-colour("white")); | ||
// } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.orp-\!-no-text-wrap { | ||
white-space: nowrap; | ||
} | ||
|
||
.orp-max-height-250 { | ||
max-height: 250px; | ||
overflow: scroll; | ||
} | ||
|
||
.orp-flex { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.orp-flex--space-between { | ||
justify-content: space-between; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -231,7 +231,7 @@ | |
# Service | ||
|
||
SERVICE_NAME: str = "Open Regulation Platform" | ||
SERVICE_NAME_SEARCH: str = "Search for regulatory provisions" | ||
SERVICE_NAME_SEARCH: str = "Open Regulation Platform" | ||
CONTACT_EMAIL: str = "[email protected]" | ||
|
||
# Cookies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.