From 4096cf25411cadf0727523db1106bf380e8f94a3 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 22 Aug 2019 17:57:22 +0200 Subject: [PATCH] Change label for errors Add toggles Add translation --- public/css/bootstrap4-toggle.min.css | 42 +++++++++++++++++++++++++++ public/css/style.css | 3 ++ public/js/bootstrap4-toggle.min.js | 11 +++++++ templates/fediplan/schedule.html.twig | 22 +++++++------- translations/fediplan.en.yaml | 2 ++ 5 files changed, 69 insertions(+), 11 deletions(-) create mode 100644 public/css/bootstrap4-toggle.min.css create mode 100644 public/js/bootstrap4-toggle.min.js diff --git a/public/css/bootstrap4-toggle.min.css b/public/css/bootstrap4-toggle.min.css new file mode 100644 index 0000000..f72e955 --- /dev/null +++ b/public/css/bootstrap4-toggle.min.css @@ -0,0 +1,42 @@ +/*\ +|*| ======================================================================== +|*| Bootstrap Toggle: bootstrap4-toggle.css v3.5.0 +|*| https://gitbrent.github.io/bootstrap-toggle/ +|*| ======================================================================== +|*| Copyright 2018-2019 Brent Ely +|*| Licensed under MIT +|*| ======================================================================== +\*/ +.btn-group-xs>.btn,.btn-xs{padding:.35rem .4rem .25rem;font-size:.875rem;line-height:.5;border-radius:.2rem} +.checkbox label .toggle,.checkbox-inline .toggle{margin-left:-1.25rem;margin-right:.35rem} +.toggle{position:relative;overflow:hidden} +.toggle.btn.btn-light,.toggle.btn.btn-outline-light{border-color:rgba(0,0,0,.15)} +.toggle input[type=checkbox]{display:none} +.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none} +.toggle-group label,.toggle-group span{cursor:pointer} +.toggle.off .toggle-group{left:-100%} +.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0} +.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0;box-shadow:none} +.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px;background-color:#fff} +.toggle.btn-outline-primary .toggle-handle{background-color:var(--primary);border-color:var(--primary)} +.toggle.btn-outline-secondary .toggle-handle{background-color:var(--secondary);border-color:var(--secondary)} +.toggle.btn-outline-success .toggle-handle{background-color:var(--success);border-color:var(--success)} +.toggle.btn-outline-danger .toggle-handle{background-color:var(--danger);border-color:var(--danger)} +.toggle.btn-outline-warning .toggle-handle{background-color:var(--warning);border-color:var(--warning)} +.toggle.btn-outline-info .toggle-handle{background-color:var(--info);border-color:var(--info)} +.toggle.btn-outline-light .toggle-handle{background-color:var(--light);border-color:var(--light)} +.toggle.btn-outline-dark .toggle-handle{background-color:var(--dark);border-color:var(--dark)} +.toggle[class*=btn-outline]:hover .toggle-handle{background-color:var(--light);opacity:.5} +.toggle.btn{min-width:3.7rem;min-height:2.15rem} +.toggle-on.btn{padding-right:1.5rem} +.toggle-off.btn{padding-left:1.5rem} +.toggle.btn-lg{min-width:5rem;min-height:2.815rem} +.toggle-on.btn-lg{padding-right:2rem} +.toggle-off.btn-lg{padding-left:2rem} +.toggle-handle.btn-lg{width:2.5rem} +.toggle.btn-sm{min-width:3.125rem;min-height:1.938rem} +.toggle-on.btn-sm{padding-right:1rem} +.toggle-off.btn-sm{padding-left:1rem} +.toggle.btn-xs{min-width:2.19rem;min-height:1.375rem} +.toggle-on.btn-xs{padding-right:.8rem} +.toggle-off.btn-xs{padding-left:.8rem} \ No newline at end of file diff --git a/public/css/style.css b/public/css/style.css index b5d048c..7f32ebc 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -19,3 +19,6 @@ html, body { background-color: #f5f5f5; } +input[type=checkbox] { + transform: scale(1.5); +} \ No newline at end of file diff --git a/public/js/bootstrap4-toggle.min.js b/public/js/bootstrap4-toggle.min.js new file mode 100644 index 0000000..7c0e0ee --- /dev/null +++ b/public/js/bootstrap4-toggle.min.js @@ -0,0 +1,11 @@ +/*\ +|*| ======================================================================== +|*| Bootstrap Toggle: bootstrap4-toggle.js v3.5.0 +|*| https://gitbrent.github.io/bootstrap-toggle/ +|*| ======================================================================== +|*| Copyright 2018-2019 Brent Ely +|*| Licensed under MIT +|*| ======================================================================== +\*/ ++function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.toggle"),f="object"==typeof b&&b;e||d.data("bs.toggle",e=new c(this,f)),"string"==typeof b&&e[b]&&e[b]()})}var c=function(b,c){this.$element=a(b),this.options=a.extend({},this.defaults(),c),this.render()};c.VERSION="3.5.0",c.DEFAULTS={on:"On",off:"Off",onstyle:"primary",offstyle:"light",size:"normal",style:"",width:null,height:null},c.prototype.defaults=function(){return{on:this.$element.attr("data-on")||c.DEFAULTS.on,off:this.$element.attr("data-off")||c.DEFAULTS.off,onstyle:this.$element.attr("data-onstyle")||c.DEFAULTS.onstyle,offstyle:this.$element.attr("data-offstyle")||c.DEFAULTS.offstyle,size:this.$element.attr("data-size")||c.DEFAULTS.size,style:this.$element.attr("data-style")||c.DEFAULTS.style,width:this.$element.attr("data-width")||c.DEFAULTS.width,height:this.$element.attr("data-height")||c.DEFAULTS.height}},c.prototype.render=function(){this._onstyle="btn-"+this.options.onstyle,this._offstyle="btn-"+this.options.offstyle;var b="large"===this.options.size||"lg"===this.options.size?"btn-lg":"small"===this.options.size||"sm"===this.options.size?"btn-sm":"mini"===this.options.size||"xs"===this.options.size?"btn-xs":"",c=a('