pb vusjs + webpack + bootstrap-sass

css', 'postcss', 'sass'] }, { test: /\.css$/, loaders: ['css', 'postcss'] }, { test: /\.(png|jpe?g|gif|svg|woff2?|eot|ttf|otf|wav)(\?.*)?$/, loader: 'url', query: { limit: 10, name: '[name].[hash:7].[ext]' } } ] }, babel

3
Bootstrap & Symfony

css\app.scss dans et lorsque j'importe le @import '~bootstrap-sass/assets/stylesheets/bootstrap'; sa cree le fichier build\css\app.css que j'importe dans le fichier base.html.twig. Cependant jusqu'a present

2
Problème de @extend qui refuse de fonctioner

Css de sortie_** /* Syntax error: Invalid CSS after "};": expected "}", was "" on line 53 of C:/wamp/www/convert sass/sass/style_btn.scss Backtrace: C:/wamp/www/convert sass/sass/style_btn.scss:53 F:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/sass-3.2.19/lib/sass/scss/parser.rb:1147:in `expected' F:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/sass-3.2.19/lib/sass/scss/parser.rb:1085:in `expected

3
Aide pour formulation htaccess pour URL rewriting
7am,

css, .js, .jpg, .jpeg, .gif, .png, .svg et .ico # Fichier inconnu (ligne 20 et suivante) RewriteCond %{REQUEST_URI} !(\.css|\.js|\.jpg|\.jpeg|\.gif|\.png|\.svg|\.ico)$ RewriteRule ^(.+)$ 404.php?url=$1 [L] # Fichier

0
Gulp + Livereload

css', function() { return gulp.src([ 'www/**/*.css' ]) .pipe(livereload()); }); gulp.task('php', function() { return gulp.src([ 'www/**/*.php' ]) .pipe(livereload()); }); gulp.task('reload', function() { livereload.listen(); gulp.watch('www/**/*.html', ['html']).on('change', livereload.changed); gulp.watch('www/**/*.css

0
Formulaire générant le code html pour une image et inversement

css if(form.width) style += 'width:'+form.width+form.unitW+';'; if(form.height) style += 'height:'+form.height+form.unitH+';'; // Alignement css if(form.align == 'left' || form.align == 'right') style += 'float:'+form.align+';'; if(form.align == 'center') style += 'display:block;margin

2
ou inclure les plugins jquery et autre

css directement en utilisant le htmlHelper ($this->Html->css('fichier1 ..') ). Mon problème est le suivant: - J'ai pas mal de plugin jquery à inclure et la structure aujourd'hui est +/- la suivante

4
[Symfony] Intégrer des feuilles de style

css\bootstrap.css et F:\wamp\www\Symfony\src\Election\SecretBundle\Resources\public\css\bootstrap.css . Ensuite, dans mon layout de base (principal) j'ai intégré le css de la sorte (ligne

1
Erreur webpack bootstrap 5 / popper.js

CSS file (e.g. app.css) if your JavaScript imports CSS. */ .addEntry('app', './assets/app.js') // enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js) .enableStimulusBridge('./assets/controllers.json') // When enabled, Webpack "splits" your files into

2
Menu qui ne se ferme pas

css("width","80%"); }); }); $(function(){ $("#closebtn").click(function(){ $("#mySidenav").css("width","0"); }); }); if ($("#open1").html = "add") { $(function(){ $("#open1").click(function(){ $("#mobiles-menu-1").css("display","block"); $("#open1").html("clear"); }); }); } else { $(function

4