summaryrefslogtreecommitdiff
path: root/searx/static/themes/oscar/src/less/logicodev/onoff.less
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-03-10 15:03:18 +0100
committerAlexandre Flament <alex@al-f.net>2021-03-10 19:28:51 +0100
commitc7133efb12641c55395e5b249cbc3cf44d8c8dff (patch)
tree081789575e0d287107f68087da209133286fa725 /searx/static/themes/oscar/src/less/logicodev/onoff.less
parenteda3b513acd2106da44e8cddae3d54a90e241958 (diff)
downloadsearxng-c7133efb12641c55395e5b249cbc3cf44d8c8dff.tar.gz
searxng-c7133efb12641c55395e5b249cbc3cf44d8c8dff.zip
[mod] oscar: move compiled files to the src directory
Diffstat (limited to 'searx/static/themes/oscar/src/less/logicodev/onoff.less')
-rw-r--r--searx/static/themes/oscar/src/less/logicodev/onoff.less74
1 files changed, 74 insertions, 0 deletions
diff --git a/searx/static/themes/oscar/src/less/logicodev/onoff.less b/searx/static/themes/oscar/src/less/logicodev/onoff.less
new file mode 100644
index 000000000..fbd2983eb
--- /dev/null
+++ b/searx/static/themes/oscar/src/less/logicodev/onoff.less
@@ -0,0 +1,74 @@
+.onoff-checkbox {
+ width:15%;
+}
+.onoffswitch {
+ position: relative;
+ width: 110px;
+ -webkit-user-select:none;
+ -moz-user-select:none;
+ -ms-user-select: none;
+}
+.onoffswitch-checkbox {
+ opacity: 0;
+ position: absolute;
+}
+.onoffswitch-checkbox:before {
+ content: "";
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ margin-right: 10px;
+ position: absolute;
+ left: 0;
+ bottom: 1px;
+ background-color: #fff;
+ border: 1px solid #ccc;
+ border-radius: 0px;
+}
+.onoffswitch-label {
+ display: block;
+ overflow: hidden;
+ cursor: pointer;
+ border: 2px solid #FFFFFF !important;
+ border-radius: 50px !important;
+}
+.onoffswitch-inner {
+ display: block;
+ transition: margin 0.3s ease-in 0s;
+}
+
+.onoffswitch-inner:before, .onoffswitch-inner:after {
+ display: block;
+ float: left;
+ width: 50%;
+ height: 30px;
+ padding: 0;
+ line-height: 40px;
+ font-size: 20px;
+ box-sizing: border-box;
+ content: "";
+ background-color: #EEEEEE;
+}
+
+.onoffswitch-switch {
+ display: block;
+ width: 37px;
+ background-color: @light-green;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0px;
+ border: 2px solid #FFFFFF;
+ border-radius: 50px !important;
+ transition: all 0.3s ease-in 0s;
+}
+.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
+ margin-right: 0;
+}
+.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
+ right: 71px;
+ background-color: #A1A1A1;
+}
+.onoffswitch-checkbox:focus + .onoffswitch-label .onoffswitch-switch {
+ border: 3px solid #444444;
+}