From cf9070c396e237fc14bd559a601486a45c8fe236 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 5 Feb 2020 16:30:35 +0000 Subject: [PATCH] Removed unneeded CSS and JS stuff --- doc/AddonStorageBackend.md | 2 +- view/js/main.js | 17 --------------- view/theme/duepuntozero/style.css | 30 ------------------------- view/theme/frio/css/style.css | 9 -------- view/theme/frio/js/theme.js | 18 --------------- view/theme/quattro/dark/style.css | 29 ------------------------- view/theme/quattro/green/style.css | 29 ------------------------- view/theme/quattro/lilac/style.css | 29 ------------------------- view/theme/quattro/quattro.less | 30 ------------------------- view/theme/smoothly/style.css | 35 ------------------------------ view/theme/vier/mobile.css | 2 -- view/theme/vier/style.css | 34 ----------------------------- 12 files changed, 1 insertion(+), 263 deletions(-) diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index 17c3f04140..3e3a2aabae 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -52,7 +52,7 @@ The info array for each option is defined as: 'type', define the field used in form, and the type of data. -one of 'checkbox', 'combobox', 'custom', 'datetime', 'input', 'intcheckbox', 'password', 'radio', 'richtext', 'select', 'select_raw', 'textarea', 'yesno' +one of 'checkbox', 'combobox', 'custom', 'datetime', 'input', 'intcheckbox', 'password', 'radio', 'richtext', 'select', 'select_raw', 'textarea' 'label', diff --git a/view/js/main.js b/view/js/main.js index 95ee4b8ed9..41bae7cf23 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -160,23 +160,6 @@ $(function() { $(textarea).trigger('change'); }); - /* setup onoff widgets */ - $(".onoff input").each(function() { - val = $(this).val(); - id = $(this).attr("id"); - $("#"+id+"_onoff ." + (val == 0 ? "on":"off")).addClass("hidden"); - }); - - $(".onoff > a").click(function(event) { - event.preventDefault(); - var input = $(this).siblings("input"); - var val = 1-input.val(); - var id = input.attr("id"); - $("#"+id+"_onoff ." + (val == 0 ? "on":"off")).addClass("hidden"); - $("#"+id+"_onoff ." + (val == 1 ? "on":"off")).removeClass("hidden"); - input.val(val); - }); - /* popup menus */ function close_last_popup_menu() { if (last_popup_menu) { diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index f7b2d7ea18..c312d30d1f 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2802,36 +2802,6 @@ aside input[type='text'] { } - -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border:1px solid #666666; - background-image:url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color:#666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color:#204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} .hidden { display: none!important; } .field.radio .field_help { margin-left: 0px; } diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index b65c7d6e38..295c065bb0 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -312,15 +312,6 @@ a.btn:hover { border: 1px solid transparent; border-color: #ccc; } -.field.yesno:hover .toggle { - border-color: $link_hover_color; - transition: all 0.25s ease-in-out; -} -.field.yesno:hover .toggle-handle { - background-color: #fff; - transition: all 0.25s ease-in-out; -} - .form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { padding: .275rem .75rem; /*font-size: .875rem;*/ diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index f1bef07f20..8fc0d53012 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -230,24 +230,6 @@ $(document).ready(function(){ toggleDropdownText(this); }); - /* setup onoff widgets */ - // Add the correct class to the switcher according to the input - // value (On/Off) - $(".toggle input").each(function(){ - // Get the value of the input element - val = $(this).val(); - id = $(this).attr("id"); - - // The css classes for "on" and "off" - onstyle = "btn-primary"; - offstyle = "btn-default off"; - - // Add the correct class in dependence of input value (On/Off) - toggleclass = (val == 0 ? offstyle : onstyle); - $("#"+id+"_onoff").addClass(toggleclass); - - }); - // Change the css class while clicking on the switcher elements $(".toggle label, .toggle .toggle-handle").click(function(event){ event.preventDefault(); diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 5f9e233c98..158a79bb9e 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1925,35 +1925,6 @@ ul.tabs li .active { margin-left: 200px; color: #999999; } -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} .field .hidden { display: none!important; } diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 81a30cf088..516742378b 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1925,35 +1925,6 @@ ul.tabs li .active { margin-left: 200px; color: #999999; } -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} .field .hidden { display: none!important; } diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 7585877ae2..8577e62591 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1925,35 +1925,6 @@ ul.tabs li .active { margin-left: 200px; color: #999999; } -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} -.field .onoff .on { - border-color: #204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; -} .field .hidden { display: none!important; } diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 5f435241c9..b7269f649b 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1216,36 +1216,6 @@ ul.tabs { color: @FieldHelpColor; } - - .onoff { - float: left; - width: 80px; - } - .onoff a { - display: block; - border:1px solid #666666; - background-image:url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; - } - .onoff .off { - border-color:#666666; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; - } - .onoff .on { - border-color:#204A87; - padding-right: 40px; - background-position: right center; - background-color: #D7E3F1; - color: #204A87; - text-align: left; - } .hidden { display: none!important; } &.radio .field_help { margin-left: 0; } diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index cc541fb87b..235bc39626 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -3919,37 +3919,6 @@ margin-left: 0px; color: #666666; } -.field .onoff { - float: left; - width: 80px; -} -.field .onoff a { - display: block; - border: 1px solid #c1c1c1; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - height: 16px; - text-decoration: none; -} -.field .onoff .off { - border-color: #c1c1c1; - padding-left: 40px; - background-position: left center; - background-color: #cccccc; - color: #666666; - text-align: right; -} - -.field .onoff .on { - border-color: #c1c1c1; - padding-right: 40px; - background-position: right center; - background-color: #1873a2; - color: #FFFFFF; - text-align: left; -} - .field .radio .field_help { margin-left: 0px; } @@ -4653,10 +4622,6 @@ div #datebrowse-sidebar.widget { margin-bottom: 5px !important; } -.onoff { - margin-right: 10px; -} - .settings-heading { margin: 25px 0 25px 0; } diff --git a/view/theme/vier/mobile.css b/view/theme/vier/mobile.css index caadf66ba1..6a70d55b14 100644 --- a/view/theme/vier/mobile.css +++ b/view/theme/vier/mobile.css @@ -266,9 +266,7 @@ select:focus { .field, .field > * { box-sizing: border-box; } .field label { width: 100%; float: none; display: block; } .field input, .field textarea, .field select { max-width: 100%; width: 100%; } -.field.yesno .onoff, .field.checkbox input { width: auto; float: right; } -.field.yesno label, .field.checkbox label { width: 70%; float: left; } .field .field_help { margin: 0; } diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index f28f8b556f..0ef69f2caa 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2272,40 +2272,6 @@ ul.tabs li .active, span.pager_current a { margin-left: 200px; color: #666666; } -.field .onoff { - float: left; - width: 80px; - margin-right:1em; -} -.field .onoff a { - display: block; - border: 1px solid #666666; - background-image: url("../../../images/onoff.jpg"); - background-repeat: no-repeat; - padding: 4px 2px 2px 2px; - font-size:14px; - height: 16px; - line-height:16px; - text-decoration: none; - text-align: center; - text-transform: uppercase; - border-radius:4px; -} -.field .onoff .off { - border-color: #B0B0B0; - padding-left: 36px; - background-position: left center; - background-color: #cccccc; - color: #9C9C9C; -} -.field .onoff .on { - font-weight:bold; - border-color: #8EB8EE; - padding-right: 36px; - background-position: right center; - background-color: #D7E3F1; - color: #36c; -} .field .hidden { display: none!important; }