mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
implementation of blur effect for list of thirdparties
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
.confidential{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.toggle{
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.blur {
|
||||
-webkit-filter: blur(5px);
|
||||
-moz-filter: blur(5px);
|
||||
filter: blur(5px);
|
||||
}
|
@@ -1,3 +1,5 @@
|
||||
require('./blur.scss');
|
||||
|
||||
var toggleBlur = function(e){
|
||||
|
||||
var btn = e.target;
|
||||
|
@@ -12,23 +12,7 @@
|
||||
{{ encore_entry_link_tags('mod_forkawesome') }}
|
||||
{{ encore_entry_link_tags('mod_ckeditor5') }}
|
||||
{{ encore_entry_link_tags('chill') }}
|
||||
{% block css%}<!-- nothing added to css -->
|
||||
<style>
|
||||
.confidential{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.toggle{
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.blur {
|
||||
-webkit-filter: blur(5px);
|
||||
-moz-filter: blur(5px);
|
||||
filter: blur(5px);
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
{% block css %}<!-- nothing added to css -->{% endblock %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
Reference in New Issue
Block a user