Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2018-08-02 00:13:15 +0300
committerStefan Giehl <stefan@piwik.org>2018-08-02 00:13:15 +0300
commit3e6356d717d9dd59a9b73a39db3f08f4c721e255 (patch)
tree537dadde8aee0cf3ae16b5bf68deb9034499b00b /plugins/PrivacyManager/stylesheets
parent1aa34c3c73d367b586682d3f778967cd6b21cc70 (diff)
Add privacy policy/terms and conditions settings and display in bottom of certain pages. (#13219)
* Add privacy policy/terms and conditions settings and display in bottom of certain pages. * tweak * simplify PrivacyManager::shouldRenderFooterLinks(). * Update system test files * removes typo * do not render view if no links available * Remove footer margin in embedded widget. * ensure footer margin doesn't change (for UI tests) * update ui files
Diffstat (limited to 'plugins/PrivacyManager/stylesheets')
-rw-r--r--plugins/PrivacyManager/stylesheets/footerLinks.less13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/PrivacyManager/stylesheets/footerLinks.less b/plugins/PrivacyManager/stylesheets/footerLinks.less
new file mode 100644
index 0000000000..c7d27b7d97
--- /dev/null
+++ b/plugins/PrivacyManager/stylesheets/footerLinks.less
@@ -0,0 +1,13 @@
+#footerLinks {
+ text-align: center;
+ font-size: .7rem;
+ color: @color-silver;
+
+ a {
+ color: @color-silver;
+ text-decoration: none;
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+} \ No newline at end of file