-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor - Merge pull request #2098 from Garneauma/WET-219
Feedback: implementing Page Feedback Tool Minor - Feedback - Provisional - Add the change-set "Page Feedback Tool"
- Loading branch information
Showing
56 changed files
with
1,669 additions
and
1,525 deletions.
There are no files selected for viewing
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,33 @@ | ||
/* | ||
@title: Page feedback tool - Base | ||
*/ | ||
|
||
#gc-pft { | ||
details { | ||
margin-bottom: 15px; | ||
margin-top: 0; | ||
} | ||
|
||
.gc-pft-no { | ||
font-weight: $bold-weight; | ||
} | ||
|
||
/* In noscript/basic HTML mode... */ | ||
.no-js &, | ||
.wb-disable & { | ||
/* Disable row gutters (default selector isn't specific-enough) */ | ||
.row-no-gutters { | ||
@extend .row-no-gutters; | ||
} | ||
|
||
/* Make the legend full width */ | ||
.nojs-col-sm-12 { | ||
@extend .col-sm-12; | ||
} | ||
|
||
/* Left-align the legend and yes/no buttons */ | ||
.nojs-text-left { | ||
text-align: left; | ||
} | ||
} | ||
} |
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,7 @@ | ||
/* | ||
@title: Page feedback tool - Print view | ||
*/ | ||
|
||
#gc-pft { | ||
display: none !important; | ||
} |
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,16 @@ | ||
/* | ||
* Share/feedback-specific overrides (medium view and over) | ||
*/ | ||
|
||
/* Add a larger top margin on the share button (only if its plugin has initialized) if adjacent to the page feedback tool. */ | ||
.pagedetails { | ||
div { | ||
&:has( #gc-pft ) { | ||
+ { | ||
.wb-share-inited { | ||
margin-top: 16px; | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.