mirror of
https://github.com/searxng/searxng
synced 2024-11-05 06:01:05 +00:00
Merge pull request #168 from return42/stylelint
Lint the less files of the simple theme
This commit is contained in:
commit
c91603dae9
@ -88,6 +88,15 @@
|
|||||||
(setq-local js-indent-level 2)
|
(setq-local js-indent-level 2)
|
||||||
(flycheck-checker . json-python-json)))))
|
(flycheck-checker . json-python-json)))))
|
||||||
|
|
||||||
|
(js-mode
|
||||||
|
. ((eval . (progn
|
||||||
|
(setq-local js-indent-level 2)
|
||||||
|
;; flycheck should use the jshint checker from simple theme
|
||||||
|
(setq-local flycheck-javascript-jshint-executable
|
||||||
|
(expand-file-name "searx/static/themes/simple/node_modules/.bin/jshint" prj-root))
|
||||||
|
(flycheck-mode)
|
||||||
|
))))
|
||||||
|
|
||||||
(python-mode
|
(python-mode
|
||||||
. ((eval . (progn
|
. ((eval . (progn
|
||||||
|
|
||||||
|
8
searx/static/themes/simple/.jshintrc
Normal file
8
searx/static/themes/simple/.jshintrc
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"proto": true,
|
||||||
|
"globals": {
|
||||||
|
"browser": true,
|
||||||
|
"jQuery": false,
|
||||||
|
"devel": true
|
||||||
|
}
|
||||||
|
}
|
3
searx/static/themes/simple/.stylelintrc.json
Normal file
3
searx/static/themes/simple/.stylelintrc.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"extends": "stylelint-config-standard"
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
/*jshint esversion: 6 */
|
||||||
|
|
||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
@ -12,16 +14,14 @@ module.exports = function(grunt) {
|
|||||||
},
|
},
|
||||||
jshint: {
|
jshint: {
|
||||||
files: ['src/js/main/*.js', 'src/js/head/*.js', '../__common__/js/*.js'],
|
files: ['src/js/main/*.js', 'src/js/head/*.js', '../__common__/js/*.js'],
|
||||||
|
},
|
||||||
|
stylelint: {
|
||||||
options: {
|
options: {
|
||||||
reporterOutput: "",
|
formatter: 'unix',
|
||||||
proto: true,
|
},
|
||||||
// options here to override JSHint defaults
|
src: [
|
||||||
globals: {
|
'src/less/**/*.less',
|
||||||
browser: true,
|
]
|
||||||
jQuery: false,
|
|
||||||
devel: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
copy: {
|
copy: {
|
||||||
js: {
|
js: {
|
||||||
@ -191,8 +191,17 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-contrib-less');
|
grunt.loadNpmTasks('grunt-contrib-less');
|
||||||
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
||||||
grunt.loadNpmTasks('grunt-webfont');
|
grunt.loadNpmTasks('grunt-webfont');
|
||||||
|
grunt.loadNpmTasks('grunt-stylelint');
|
||||||
|
|
||||||
grunt.registerTask('test', ['jshint']);
|
grunt.registerTask('test', ['jshint']);
|
||||||
|
|
||||||
grunt.registerTask('default', ['jshint', 'copy', 'concat', 'uglify', 'less:development', 'less:production']);
|
grunt.registerTask('default', [
|
||||||
|
'jshint',
|
||||||
|
'stylelint',
|
||||||
|
'copy',
|
||||||
|
'concat',
|
||||||
|
'uglify',
|
||||||
|
'less:development',
|
||||||
|
'less:production'
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
|
@ -9,11 +9,14 @@
|
|||||||
"grunt-contrib-less": "~3.0.0",
|
"grunt-contrib-less": "~3.0.0",
|
||||||
"grunt-contrib-uglify": "~5.0.1",
|
"grunt-contrib-uglify": "~5.0.1",
|
||||||
"grunt-contrib-watch": "~1.1.0",
|
"grunt-contrib-watch": "~1.1.0",
|
||||||
|
"grunt-stylelint": "^0.16.0",
|
||||||
"grunt-webfont": "^1.7.2",
|
"grunt-webfont": "^1.7.2",
|
||||||
"ionicons-npm": "^2.0.1",
|
"ionicons-npm": "^2.0.1",
|
||||||
"jslint": "^0.12.1",
|
"jslint": "^0.12.1",
|
||||||
"less": "^4.1.1",
|
"less": "^4.1.1",
|
||||||
"less-plugin-clean-css": "^1.5.1"
|
"less-plugin-clean-css": "^1.5.1",
|
||||||
|
"stylelint": "^13.13.1",
|
||||||
|
"stylelint-config-standard": "^22.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"autocomplete-js": "2.7.1",
|
"autocomplete-js": "2.7.1",
|
||||||
@ -25,6 +28,8 @@
|
|||||||
"build": "grunt",
|
"build": "grunt",
|
||||||
"watch": "grunt watch",
|
"watch": "grunt watch",
|
||||||
"webfont": "grunt webfont",
|
"webfont": "grunt webfont",
|
||||||
"clean": "rm -Rf node_modules package-lock.json ion.less"
|
"clean": "rm -Rf node_modules package-lock.json ion.less",
|
||||||
|
"stylelint": "grunt stylelint",
|
||||||
|
"stylelint-fix": "grunt stylelint --fix"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
&:active, &:focus, &:hover {
|
&:active,
|
||||||
|
&:focus,
|
||||||
|
&:hover {
|
||||||
background-color: @background_color;
|
background-color: @background_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -25,10 +27,14 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 5px 0 5px 10px;
|
padding: 5px 0 5px 10px;
|
||||||
|
|
||||||
&.active, &:active, &:focus {
|
&.active,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
background-color: @color-base;
|
background-color: @color-base;
|
||||||
|
|
||||||
a:active, a:focus, a:hover {
|
a:active,
|
||||||
|
a:focus,
|
||||||
|
a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -53,9 +59,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: @results-width) {
|
@media screen and (max-width: @results-width) {
|
||||||
|
|
||||||
.autocomplete {
|
.autocomplete {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
@ -65,5 +69,4 @@
|
|||||||
border-bottom: 1px solid @color-result-top-border;
|
border-bottom: 1px solid @color-result-top-border;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,4 +5,5 @@
|
|||||||
border: inherit;
|
border: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// stylelint-disable no-invalid-position-at-import-rule
|
||||||
@import "../generated/pygments.less";
|
@import "../generated/pygments.less";
|
||||||
|
@ -38,11 +38,8 @@
|
|||||||
@color-a-font: @color-base;
|
@color-a-font: @color-base;
|
||||||
@color-a-font-hover: @color-base;
|
@color-a-font-hover: @color-base;
|
||||||
|
|
||||||
|
|
||||||
/// Start-Screen
|
/// Start-Screen
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// Search-Input
|
/// Search-Input
|
||||||
|
|
||||||
@color-search-border: @color-base;
|
@color-search-border: @color-base;
|
||||||
@ -75,7 +72,6 @@
|
|||||||
@color-categories-item-border-unselected: #E8E7E6;
|
@color-categories-item-border-unselected: #E8E7E6;
|
||||||
@color-categories-item-border-unselected-hover: @color-base;
|
@color-categories-item-border-unselected-hover: @color-base;
|
||||||
|
|
||||||
|
|
||||||
/// Results
|
/// Results
|
||||||
|
|
||||||
@color-suggestions-button-background: @color-base;
|
@color-suggestions-button-background: @color-base;
|
||||||
@ -108,7 +104,6 @@
|
|||||||
@color-result-search-url-border: #888;
|
@color-result-search-url-border: #888;
|
||||||
@color-result-search-url-font: #444;
|
@color-result-search-url-font: #444;
|
||||||
|
|
||||||
|
|
||||||
/// Settings
|
/// Settings
|
||||||
|
|
||||||
@color-settings-fieldset: @color-base;
|
@color-settings-fieldset: @color-base;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
.index {
|
.index {
|
||||||
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@ -29,15 +28,12 @@
|
|||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
border-bottom: initial !important;
|
border-bottom: initial !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 75em) {
|
@media screen and (max-width: 75em) {
|
||||||
|
|
||||||
div.title {
|
div.title {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -48,12 +48,14 @@
|
|||||||
table.cookies {
|
table.cookies {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
th, td {
|
th,
|
||||||
|
td {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0.25em;
|
padding: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
th:first-child, td:first-child {
|
th:first-child,
|
||||||
|
td:first-child {
|
||||||
padding-right: 4em;
|
padding-right: 4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,7 +65,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.name, .shortcut {
|
.name,
|
||||||
|
.shortcut {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,6 +75,7 @@
|
|||||||
color: white;
|
color: white;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
.rounded-corners;
|
.rounded-corners;
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 2px 4px;
|
margin: 2px 4px;
|
||||||
@ -87,13 +91,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
div.selectable_url {
|
div.selectable_url {
|
||||||
pre {
|
pre {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 75em) {
|
@media screen and (max-width: 75em) {
|
||||||
|
@ -17,8 +17,8 @@
|
|||||||
margin: 0 12px 0 0;
|
margin: 0 12px 0 0;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
&:has(q:focus) {
|
&:has(q:focus) {
|
||||||
box-shadow: 0px 0px 5px #CCC;
|
box-shadow: 0px 0px 5px #CCC;
|
||||||
@ -31,7 +31,6 @@
|
|||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 1.8em;
|
width: 1.8em;
|
||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
height: 2.2em;
|
height: 2.2em;
|
||||||
@ -40,7 +39,7 @@
|
|||||||
border-bottom: 1px solid @color-search-border;
|
border-bottom: 1px solid @color-search-border;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
border-radius: 0px;
|
border-radius: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
color: @color-search-font;
|
color: @color-search-font;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -55,21 +54,17 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#q::-ms-clear, #q::-webkit-search-cancel-button {
|
#q,
|
||||||
display: none;
|
#send_search {
|
||||||
}
|
|
||||||
|
|
||||||
#q, #send_search {
|
|
||||||
display: block !important;
|
display: block !important;
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
height: 2.2em;
|
height: 2.2em;
|
||||||
background: none repeat scroll 0 0 @color-search-background;
|
background: none repeat scroll 0 0 @color-search-background;
|
||||||
border: 1px solid @color-search-border;
|
border: 1px solid @color-search-border;
|
||||||
border-radius: 0px;
|
border-radius: 0;
|
||||||
outline: none;
|
outline: none;
|
||||||
color: @color-search-font;
|
color: @color-search-font;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@ -79,11 +74,16 @@
|
|||||||
#q {
|
#q {
|
||||||
outline: medium none;
|
outline: medium none;
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
padding-right: 0px !important;
|
padding-right: 0 !important;
|
||||||
border-right: none;
|
border-right: none;
|
||||||
width: @search-width;
|
width: @search-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#q::-ms-clear,
|
||||||
|
#q::-webkit-search-cancel-button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
#send_search {
|
#send_search {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
width: 2.2em;
|
width: 2.2em;
|
||||||
@ -105,20 +105,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 75em) {
|
@media screen and (max-width: 75em) {
|
||||||
|
|
||||||
#categories {
|
#categories {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
||||||
.checkbox_container {
|
.checkbox_container {
|
||||||
margin-top: 2px;
|
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
html.touch {
|
html.touch {
|
||||||
#main_index, #main_results {
|
#main_index,
|
||||||
|
#main_results {
|
||||||
#categories_container {
|
#categories_container {
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
width: -moz-max-content;
|
width: -moz-max-content;
|
||||||
@ -141,11 +140,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: @results-width) {
|
@media screen and (max-width: @results-width) {
|
||||||
|
|
||||||
#search {
|
#search {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -177,7 +174,8 @@
|
|||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.language, .time_range {
|
.language,
|
||||||
|
.time_range {
|
||||||
width: 45%;
|
width: 45%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -189,7 +187,6 @@
|
|||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#categories {
|
#categories {
|
||||||
@ -206,7 +203,7 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0 3px;
|
margin: 0 3px;
|
||||||
padding: 0px;
|
padding: 0;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
display: none;
|
display: none;
|
||||||
@ -224,7 +221,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"]:focus + label {
|
input[type="checkbox"]:focus + label {
|
||||||
box-shadow: 0px 0px 8px #3498DB;
|
box-shadow: 0 0 8px #3498db;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* label:hover {
|
/* label:hover {
|
||||||
@ -239,7 +236,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#categories_container {
|
#categories_container {
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.help {
|
.help {
|
||||||
@ -247,12 +243,10 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: -20px;
|
bottom: -20px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 1s ease;
|
transition: opacity 1s ease;
|
||||||
|
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
text-position: center;
|
text-align: center;
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,5 +254,4 @@
|
|||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
transition: opacity 1s ease;
|
transition: opacity 1s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,31 +4,20 @@
|
|||||||
* To convert "style.less" to "style.css" run: $make styles
|
* To convert "style.less" to "style.css" run: $make styles
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// stylelint-disable no-descending-specificity
|
||||||
|
|
||||||
@stacked-bar-chart: rgb(0, 0, 0);
|
@stacked-bar-chart: rgb(0, 0, 0);
|
||||||
|
|
||||||
@import "../../__common__/less/new_issue.less";
|
@import "../../__common__/less/new_issue.less";
|
||||||
@import "../../__common__/less/stats.less";
|
@import "../../__common__/less/stats.less";
|
||||||
|
|
||||||
@import (inline) "../../node_modules/normalize.css/normalize.css";
|
@import (inline) "../../node_modules/normalize.css/normalize.css";
|
||||||
|
|
||||||
@import "../generated/ion.less";
|
@import "../generated/ion.less";
|
||||||
|
|
||||||
@import "definitions.less";
|
@import "definitions.less";
|
||||||
|
|
||||||
@import "mixins.less";
|
@import "mixins.less";
|
||||||
|
|
||||||
@import "code.less";
|
@import "code.less";
|
||||||
|
|
||||||
@import "toolkit.less";
|
@import "toolkit.less";
|
||||||
|
|
||||||
@import "autocomplete.less";
|
@import "autocomplete.less";
|
||||||
|
|
||||||
// ion-icon
|
|
||||||
.ion-icon-big {
|
|
||||||
.ion-icon;
|
|
||||||
font-size: 149%;
|
|
||||||
}
|
|
||||||
|
|
||||||
// for index.html template
|
// for index.html template
|
||||||
@import "index.less";
|
@import "index.less";
|
||||||
|
|
||||||
@ -38,17 +27,26 @@
|
|||||||
// Search-Field
|
// Search-Field
|
||||||
@import "search.less";
|
@import "search.less";
|
||||||
|
|
||||||
|
// ion-icon
|
||||||
|
.ion-icon-big {
|
||||||
|
.ion-icon;
|
||||||
|
|
||||||
|
font-size: 149%;
|
||||||
|
}
|
||||||
|
|
||||||
// Main LESS-Code
|
// Main LESS-Code
|
||||||
html {
|
html {
|
||||||
font-family: arial, sans-serif;
|
font-family: arial, sans-serif;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
.text-size-adjust;
|
.text-size-adjust;
|
||||||
|
|
||||||
color: @color-font;
|
color: @color-font;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, main {
|
body,
|
||||||
|
main {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@ -58,14 +56,9 @@ main {
|
|||||||
// position: absolute;
|
// position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
#main_preferences,
|
||||||
// position:absolute;
|
#main_about,
|
||||||
bottom:0;
|
#main_stats {
|
||||||
width:100%;
|
|
||||||
height:50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main_preferences, #main_about, #main_stats {
|
|
||||||
margin: 3em;
|
margin: 3em;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
@ -84,7 +77,8 @@ footer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#main_preferences h1, #main_stats h1 {
|
#main_preferences h1,
|
||||||
|
#main_stats h1 {
|
||||||
background: url('../img/searx.png') no-repeat;
|
background: url('../img/searx.png') no-repeat;
|
||||||
background-size: auto 75%;
|
background-size: auto 75%;
|
||||||
min-height: 40px;
|
min-height: 40px;
|
||||||
@ -95,13 +89,15 @@ footer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"], #results button[type="submit"] {
|
input[type="submit"],
|
||||||
|
#results button[type="submit"] {
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
margin: 2px 4px;
|
margin: 2px 4px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: @color-download-button-background;
|
background: @color-download-button-background;
|
||||||
color: @color-download-button-font;
|
color: @color-download-button-font;
|
||||||
.rounded-corners;
|
.rounded-corners;
|
||||||
|
|
||||||
border: 0;
|
border: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@ -161,7 +157,8 @@ article.result-images[data-vim-selected]::before {
|
|||||||
color: @color-result-link-visited-font;
|
color: @color-result-link-visited-font;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus, &:hover {
|
&:focus,
|
||||||
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
border: none;
|
border: none;
|
||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
@ -171,11 +168,14 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cache_link, .proxyfied_link {
|
.cache_link,
|
||||||
|
.proxyfied_link {
|
||||||
font-size: 0.9em !important;
|
font-size: 0.9em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content, .stat, .altlink {
|
.content,
|
||||||
|
.stat,
|
||||||
|
.altlink {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -213,7 +213,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
|
||||||
&.thumbnail {
|
&.thumbnail {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 0 5px 10px 0;
|
padding: 0 5px 10px 0;
|
||||||
@ -231,13 +230,11 @@ article.result-images[data-vim-selected]::before {
|
|||||||
object-fit: scale-down;
|
object-fit: scale-down;
|
||||||
object-position: right top;
|
object-position: right top;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.break {
|
.break {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-social .image {
|
.category-social .image {
|
||||||
@ -305,7 +302,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.result-map {
|
.result-map {
|
||||||
|
|
||||||
img.image {
|
img.image {
|
||||||
float: right !important;
|
float: right !important;
|
||||||
height: 100px !important;
|
height: 100px !important;
|
||||||
@ -313,7 +309,7 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
font-size: .9em;
|
font-size: 0.9em;
|
||||||
width: auto;
|
width: auto;
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
border-spacing: 0 0.35rem;
|
border-spacing: 0 0.35rem;
|
||||||
@ -365,7 +361,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#suggestions {
|
#suggestions {
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row wrap;
|
flex-flow: row wrap;
|
||||||
@ -378,12 +373,16 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#suggestions, #answers, #corrections {
|
#suggestions,
|
||||||
|
#answers,
|
||||||
|
#corrections {
|
||||||
max-width: @results-width;
|
max-width: @results-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
#suggestions, #answers, #infoboxes, #corrections {
|
#suggestions,
|
||||||
|
#answers,
|
||||||
|
#infoboxes,
|
||||||
|
#corrections {
|
||||||
input {
|
input {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
@ -394,7 +393,8 @@ article.result-images[data-vim-selected]::before {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"], .infobox .url a {
|
input[type="submit"],
|
||||||
|
.infobox .url a {
|
||||||
color: @color-result-link-font;
|
color: @color-result-link-font;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
@ -403,7 +403,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#corrections {
|
#corrections {
|
||||||
@ -411,18 +410,20 @@ article.result-images[data-vim-selected]::before {
|
|||||||
flex-flow: row wrap;
|
flex-flow: row wrap;
|
||||||
margin: 1em 0;
|
margin: 1em 0;
|
||||||
|
|
||||||
h4, input[type="submit"] {
|
h4,
|
||||||
|
input[type="submit"] {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0 0.5em 0 0;
|
margin: 0 0.5em 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"]::after {
|
input[type="submit"]::after {
|
||||||
content: ", "
|
content: ", ";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
#suggestions .title,
|
||||||
|
#search_url .title,
|
||||||
#suggestions .title, #search_url .title, #apis .title {
|
#apis .title {
|
||||||
margin: 2em 0 0.5em 0;
|
margin: 2em 0 0.5em 0;
|
||||||
color: @color-font;
|
color: @color-font;
|
||||||
}
|
}
|
||||||
@ -431,7 +432,7 @@ article.result-images[data-vim-selected]::before {
|
|||||||
margin: 10px 8px 10px 8px;
|
margin: 10px 8px 10px 8px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
padding: 0.9em;
|
padding: 0.9em;
|
||||||
box-shadow: 0px 0px 5px #CCC;
|
box-shadow: 0 0 5px #ccc;
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
display: none;
|
display: none;
|
||||||
@ -444,7 +445,8 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#answers, #infoboxes {
|
#answers,
|
||||||
|
#infoboxes {
|
||||||
form {
|
form {
|
||||||
min-width: 210px;
|
min-width: 210px;
|
||||||
}
|
}
|
||||||
@ -454,9 +456,8 @@ article.result-images[data-vim-selected]::before {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 100px;
|
top: 100px;
|
||||||
left: 57em;
|
left: 57em;
|
||||||
|
margin: 0 2px 5px 5px;
|
||||||
margin: 0px 2px 5px 5px;
|
padding: 0 2px 2px;
|
||||||
padding: 0px 2px 2px;
|
|
||||||
max-width: 25em;
|
max-width: 25em;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
@ -465,10 +466,10 @@ article.result-images[data-vim-selected]::before {
|
|||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
padding: 0.9em;
|
padding: 0.9em;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
box-shadow: 0px 0px 5px #CCC;
|
box-shadow: 0 0 5px #ccc;
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin: 0 0 .5em 0;
|
margin: 0 0 0.5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@ -504,10 +505,10 @@ article.result-images[data-vim-selected]::before {
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attributes, .urls {
|
.attributes,
|
||||||
|
.urls {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -528,11 +529,13 @@ article.result-images[data-vim-selected]::before {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
color: @color-search-font;
|
color: @color-search-font;
|
||||||
|
|
||||||
a:link *, a:hover *, a:visited *, a:active * {
|
a:link *,
|
||||||
|
a:hover *,
|
||||||
|
a:visited *,
|
||||||
|
a:active * {
|
||||||
color: @color-search-font;
|
color: @color-search-font;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -555,7 +558,7 @@ article.result-images[data-vim-selected]::before {
|
|||||||
margin: 0 0 0 2em;
|
margin: 0 0 0 2em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
box-shadow: 0px 0px 5px #CCC;
|
box-shadow: 0 0 5px #ccc;
|
||||||
background: white;
|
background: white;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 85px;
|
bottom: 85px;
|
||||||
@ -571,13 +574,15 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 75em) {
|
@media screen and (max-width: 75em) {
|
||||||
|
#main_preferences,
|
||||||
#main_preferences, #main_about, #main_stats {
|
#main_about,
|
||||||
|
#main_stats {
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#suggestions, #answers {
|
#suggestions,
|
||||||
|
#answers {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -594,7 +599,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
margin: 0.5em 0.5em 0.5em 0;
|
margin: 0.5em 0.5em 0.5em 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
@ -634,7 +638,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.url {
|
.url {
|
||||||
|
|
||||||
span.url {
|
span.url {
|
||||||
display: block;
|
display: block;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -647,7 +650,6 @@ article.result-images[data-vim-selected]::before {
|
|||||||
float: right;
|
float: right;
|
||||||
padding: 0 0.5em;
|
padding: 0 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.engines {
|
.engines {
|
||||||
@ -662,13 +664,13 @@ article.result-images[data-vim-selected]::before {
|
|||||||
|
|
||||||
.image_result {
|
.image_result {
|
||||||
max-width: 98%;
|
max-width: 98%;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 98%;
|
max-width: 98%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#main_results div#results.only_template_images {
|
#main_results div#results.only_template_images {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: auto;
|
width: auto;
|
||||||
@ -696,9 +698,7 @@ article.result-images[data-vim-selected]::before {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: @results-width) {
|
@media screen and (max-width: @results-width) {
|
||||||
|
|
||||||
article[data-vim-selected]::before {
|
article[data-vim-selected]::before {
|
||||||
display: none;
|
display: none;
|
||||||
content: "";
|
content: "";
|
||||||
@ -706,9 +706,9 @@ article.result-images[data-vim-selected]::before {
|
|||||||
|
|
||||||
#linkto_preferences {
|
#linkto_preferences {
|
||||||
display: none;
|
display: none;
|
||||||
postion: fixed !important;
|
position: fixed !important;
|
||||||
top: 100px;
|
top: 100px;
|
||||||
right: 0px;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
@ -739,22 +739,18 @@ article.result-images[data-vim-selected]::before {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 35em) {
|
@media screen and (max-width: 35em) {
|
||||||
|
|
||||||
.result-videos {
|
.result-videos {
|
||||||
|
|
||||||
img.thumbnail {
|
img.thumbnail {
|
||||||
float: none !important;
|
float: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
overflow: inherit;
|
overflow: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783
|
// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783
|
||||||
|
|
||||||
|
// stylelint-disable no-descending-specificity
|
||||||
|
|
||||||
html.no-js .hide_if_nojs {
|
html.no-js .hide_if_nojs {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -67,7 +70,6 @@ kbd {
|
|||||||
|
|
||||||
// table
|
// table
|
||||||
table {
|
table {
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.striped {
|
&.striped {
|
||||||
@ -106,7 +108,6 @@ div.selectable_url {
|
|||||||
padding: 4px;
|
padding: 4px;
|
||||||
color: @color-result-search-url-font;
|
color: @color-result-search-url-font;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
|
||||||
margin: 0.1em;
|
margin: 0.1em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 1.2em;
|
height: 1.2em;
|
||||||
@ -122,16 +123,16 @@ div.selectable_url {
|
|||||||
position: relative;
|
position: relative;
|
||||||
width: 70%;
|
width: 70%;
|
||||||
padding: 1em 1em 1em 2.7em;
|
padding: 1em 1em 1em 2.7em;
|
||||||
margin: 0em 8% 1em 8%;
|
margin: 0 8% 1em 8%;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
&:before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0.5em;
|
top: 0.5em;
|
||||||
left: 0.5em;
|
left: 0.5em;
|
||||||
font-family:"ion";
|
font-family: "ion"; // stylelint-disable font-family-no-missing-generic-family-keyword
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,7 +144,9 @@ div.selectable_url {
|
|||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul, ol, p {
|
ul,
|
||||||
|
ol,
|
||||||
|
p {
|
||||||
margin: 1px 0 0 0;
|
margin: 1px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -163,16 +166,15 @@ div.selectable_url {
|
|||||||
padding: 0 1em 0 0;
|
padding: 0 1em 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
margin-top: 0.3em;
|
margin-top: 0.3em;
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog-error {
|
.dialog-error {
|
||||||
.dialog();
|
.dialog();
|
||||||
|
|
||||||
color: @color-error;
|
color: @color-error;
|
||||||
background: @color-error-background;
|
background: @color-error-background;
|
||||||
border-color: @color-error;
|
border-color: @color-error;
|
||||||
@ -181,6 +183,7 @@ div.selectable_url {
|
|||||||
|
|
||||||
.dialog-warning {
|
.dialog-warning {
|
||||||
.dialog();
|
.dialog();
|
||||||
|
|
||||||
color: @color-warning;
|
color: @color-warning;
|
||||||
background: @color-warning-background;
|
background: @color-warning-background;
|
||||||
border-color: @color-warning;
|
border-color: @color-warning;
|
||||||
@ -189,10 +192,12 @@ div.selectable_url {
|
|||||||
|
|
||||||
.dialog-modal {
|
.dialog-modal {
|
||||||
.dialog();
|
.dialog();
|
||||||
|
|
||||||
background: white;
|
background: white;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
|
||||||
/* bring your own prefixes */
|
/* bring your own prefixes */
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
z-index: 100000;
|
z-index: 100000;
|
||||||
@ -222,6 +227,7 @@ div.selectable_url {
|
|||||||
|
|
||||||
.tabs {
|
.tabs {
|
||||||
.flexbox();
|
.flexbox();
|
||||||
|
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
@ -240,11 +246,11 @@ div.selectable_url {
|
|||||||
margin: 0 0.7em;
|
margin: 0 0.7em;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
border: solid white;
|
border: solid white;
|
||||||
border-width: 0px 0px 2px 0;
|
border-width: 0 0 2px 0;
|
||||||
|
|
||||||
.disable-user-select();
|
.disable-user-select();
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -272,13 +278,13 @@ div.selectable_url {
|
|||||||
& > section:last-of-type {
|
& > section:last-of-type {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html body .tabs > input:checked {
|
html body .tabs > input:checked {
|
||||||
~ section {
|
~ section {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
~ label {
|
~ label {
|
||||||
position: inherited;
|
position: inherited;
|
||||||
background: inherit;
|
background: inherit;
|
||||||
@ -290,6 +296,7 @@ html body .tabs > input:checked {
|
|||||||
border-bottom: 2px solid @color-categories-item-border-selected;
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
+ label {
|
+ label {
|
||||||
border-bottom: 2px solid @color-categories-item-border-selected;
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
||||||
background: @color-categories-item-selected;
|
background: @color-categories-item-selected;
|
||||||
@ -297,6 +304,7 @@ html body .tabs > input:checked {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
letter-spacing: -0.1px;
|
letter-spacing: -0.1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ label + section {
|
+ label + section {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
@ -311,13 +319,13 @@ select {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover,
|
||||||
|
&:focus {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
|
@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
appearance: none;
|
appearance: none;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
@ -330,12 +338,11 @@ select {
|
|||||||
background-origin: content-box;
|
background-origin: content-box;
|
||||||
outline: medium none;
|
outline: medium none;
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover,
|
||||||
|
&:focus {
|
||||||
border-bottom: 1px solid @color-search-border;
|
border-bottom: 1px solid @color-search-border;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -- checkbox-onoff -- */
|
/* -- checkbox-onoff -- */
|
||||||
@ -348,6 +355,7 @@ select {
|
|||||||
margin: 8px auto;
|
margin: 8px auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
display: block;
|
display: block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
@ -356,14 +364,15 @@ select {
|
|||||||
top: -5px;
|
top: -5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
|
||||||
transition: all 0.4s ease;
|
transition: all 0.4s ease;
|
||||||
|
|
||||||
left: 27px;
|
left: 27px;
|
||||||
background-color: #3498DB;
|
background-color: #3498db;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=checkbox] {
|
input[type=checkbox] {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|
||||||
&:checked + label {
|
&:checked + label {
|
||||||
left: -5px;
|
left: -5px;
|
||||||
background: #dcdcdc;
|
background: #dcdcdc;
|
||||||
@ -378,6 +387,7 @@ select {
|
|||||||
width: 20px;
|
width: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
@ -387,8 +397,9 @@ select {
|
|||||||
left: 0;
|
left: 0;
|
||||||
background: white;
|
background: white;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: inset 0px 1px 1px white, 0px 1px 4px rgba(0,0,0,0.5);
|
box-shadow: inset 0 1px 1px white, 0 1px 4px rgba(0, 0, 0, 0.5);
|
||||||
&:after {
|
|
||||||
|
&::after {
|
||||||
content: '';
|
content: '';
|
||||||
width: 9px;
|
width: 9px;
|
||||||
height: 5px;
|
height: 5px;
|
||||||
@ -406,8 +417,9 @@ select {
|
|||||||
|
|
||||||
input[type=checkbox] {
|
input[type=checkbox] {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
&:checked + label:after {
|
|
||||||
border-color: #3498DB;
|
&:checked + label::after {
|
||||||
|
border-color: #3498db;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -416,7 +428,7 @@ select {
|
|||||||
input[disabled] + label {
|
input[disabled] + label {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
cursor: inherit;;
|
cursor: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if not checked and possible to checked then display a "light" check mark on hover
|
// if not checked and possible to checked then display a "light" check mark on hover
|
||||||
@ -434,11 +446,12 @@ select {
|
|||||||
|
|
||||||
/* -- loader -- */
|
/* -- loader -- */
|
||||||
.loader,
|
.loader,
|
||||||
.loader:after {
|
.loader::after {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 2em;
|
width: 2em;
|
||||||
height: 2em;
|
height: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
margin: 1em auto;
|
margin: 1em auto;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
@ -454,21 +467,25 @@ select {
|
|||||||
-webkit-animation: load8 1.2s infinite linear;
|
-webkit-animation: load8 1.2s infinite linear;
|
||||||
animation: load8 1.2s infinite linear;
|
animation: load8 1.2s infinite linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes load8 {
|
@-webkit-keyframes load8 {
|
||||||
0% {
|
0% {
|
||||||
-webkit-transform: rotate(0deg);
|
-webkit-transform: rotate(0deg);
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
-webkit-transform: rotate(360deg);
|
-webkit-transform: rotate(360deg);
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes load8 {
|
@keyframes load8 {
|
||||||
0% {
|
0% {
|
||||||
-webkit-transform: rotate(0deg);
|
-webkit-transform: rotate(0deg);
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
-webkit-transform: rotate(360deg);
|
-webkit-transform: rotate(360deg);
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
@ -480,9 +497,9 @@ select {
|
|||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
margin: 0rem 0 0 2rem;
|
margin: 0 0 0 2rem;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
|
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
|
||||||
background: white;
|
background: white;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@ -490,7 +507,9 @@ select {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover {
|
th:hover .engine-tooltip,
|
||||||
|
td:hover .engine-tooltip,
|
||||||
|
.engine-tooltip:hover {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -525,6 +544,7 @@ th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover {
|
|||||||
|
|
||||||
.stacked-bar-chart-median {
|
.stacked-bar-chart-median {
|
||||||
.stacked-bar-chart-base();
|
.stacked-bar-chart-base();
|
||||||
|
|
||||||
background: @stacked-bar-chart;
|
background: @stacked-bar-chart;
|
||||||
border: 1px solid fade(@stacked-bar-chart, 90%);
|
border: 1px solid fade(@stacked-bar-chart, 90%);
|
||||||
padding: 0.3rem 0;
|
padding: 0.3rem 0;
|
||||||
@ -532,6 +552,7 @@ th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover {
|
|||||||
|
|
||||||
.stacked-bar-chart-rate80 {
|
.stacked-bar-chart-rate80 {
|
||||||
.stacked-bar-chart-base();
|
.stacked-bar-chart-base();
|
||||||
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 1px solid fade(@stacked-bar-chart, 30%);
|
border: 1px solid fade(@stacked-bar-chart, 30%);
|
||||||
padding: 0.3rem 0;
|
padding: 0.3rem 0;
|
||||||
@ -539,6 +560,7 @@ th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover {
|
|||||||
|
|
||||||
.stacked-bar-chart-rate95 {
|
.stacked-bar-chart-rate95 {
|
||||||
.stacked-bar-chart-base();
|
.stacked-bar-chart-base();
|
||||||
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-bottom: 1px dotted fade(@stacked-bar-chart, 50%);
|
border-bottom: 1px dotted fade(@stacked-bar-chart, 50%);
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -546,6 +568,7 @@ th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover {
|
|||||||
|
|
||||||
.stacked-bar-chart-rate100 {
|
.stacked-bar-chart-rate100 {
|
||||||
.stacked-bar-chart-base();
|
.stacked-bar-chart-base();
|
||||||
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-left: 1px solid fade(@stacked-bar-chart, 90%);
|
border-left: 1px solid fade(@stacked-bar-chart, 90%);
|
||||||
padding: 0.4rem 0;
|
padding: 0.4rem 0;
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
.loader,
|
.loader,
|
||||||
.loader:after {
|
.loader::after {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 10em;
|
width: 10em;
|
||||||
height: 10em;
|
height: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
margin: 60px auto;
|
margin: 60px auto;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
@ -12,28 +13,32 @@
|
|||||||
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
|
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
|
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
|
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
border-left: 1.1em solid #ffffff;
|
border-left: 1.1em solid #fff;
|
||||||
-webkit-transform: translateZ(0);
|
-webkit-transform: translateZ(0);
|
||||||
-ms-transform: translateZ(0);
|
-ms-transform: translateZ(0);
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
-webkit-animation: load8 1.1s infinite linear;
|
-webkit-animation: load8 1.1s infinite linear;
|
||||||
animation: load8 1.1s infinite linear;
|
animation: load8 1.1s infinite linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@-webkit-keyframes load8 {
|
@-webkit-keyframes load8 {
|
||||||
0% {
|
0% {
|
||||||
-webkit-transform: rotate(0deg);
|
-webkit-transform: rotate(0deg);
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
-webkit-transform: rotate(360deg);
|
-webkit-transform: rotate(360deg);
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes load8 {
|
@keyframes load8 {
|
||||||
0% {
|
0% {
|
||||||
-webkit-transform: rotate(0deg);
|
-webkit-transform: rotate(0deg);
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
-webkit-transform: rotate(360deg);
|
-webkit-transform: rotate(360deg);
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
|
Loading…
Reference in New Issue
Block a user