From 9a9e7f7b25e7711d314484690f084b75eaae64d3 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Sun, 27 May 2018 12:04:42 +0100 Subject: [PATCH] Restructure style folders --- package.json | 2 +- public/assets/styles/base.css | 40 ++- public/assets/styles/choices.css | 491 +++++++++++++++++++-------- public/assets/styles/choices.min.css | 2 +- src/styles/{scss => }/base.scss | 111 ++++-- src/styles/choices.scss | 352 +++++++++++++++++++ src/styles/css/base.css | 157 --------- src/styles/css/base.min.css | 1 - src/styles/css/choices.css | 365 -------------------- src/styles/css/choices.min.css | 1 - src/styles/scss/choices.scss | 156 --------- 11 files changed, 817 insertions(+), 861 deletions(-) rename src/styles/{scss => }/base.scss (63%) create mode 100644 src/styles/choices.scss delete mode 100644 src/styles/css/base.css delete mode 100644 src/styles/css/base.min.css delete mode 100644 src/styles/css/choices.css delete mode 100644 src/styles/css/choices.min.css delete mode 100644 src/styles/scss/choices.scss diff --git a/package.json b/package.json index 079f052..cb489e0 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "test:cypress": "npm run build && concurrently \"NODE_ENV=production node server.js\" \"cypress open\"", "css:watch": "nodemon -e scss -x \"npm run css:build\"", "css:build": "npm run css:sass -s && npm run css:prefix -s && npm run css:min -s", - "css:sass": "node-sass --output-style expanded --include-path scss src/styles/scss/*.scss public/assets/styles/base.css && node-sass --output-style expanded --include-path scss src/styles/scss/choices.scss public/assets/styles/choices.css", + "css:sass": "node-sass --output-style expanded --include-path scss src/styles/base.scss public/assets/styles/base.css && node-sass --output-style expanded --include-path scss src/styles/choices.scss public/assets/styles/choices.css", "css:prefix": "postcss --use autoprefixer -b 'last 2 versions' public/assets/styles/*.css -d public/assets/styles", "css:min": "csso public/assets/styles/base.css public/assets/styles/base.min.css && csso public/assets/styles/choices.css public/assets/styles/choices.min.css", "js:build": "concurrently --prefix-colors yellow,green \"webpack --env.minimize --config webpack.config.prod.js\" \"webpack --config webpack.config.prod.js\"", diff --git a/public/assets/styles/base.css b/public/assets/styles/base.css index 6c16404..ade27d9 100644 --- a/public/assets/styles/base.css +++ b/public/assets/styles/base.css @@ -6,11 +6,14 @@ -moz-osx-font-smoothing: grayscale; } -*, *:before, *:after { +*, +*:before, +*:after { box-sizing: border-box; } -html, body { +html, +body { position: relative; margin: 0; width: 100%; @@ -46,14 +49,21 @@ hr { height: 1px; } -h1, h2, h3, h4, h5, h6 { +h1, +h2, +h3, +h4, +h5, +h6 { margin-top: 0; margin-bottom: 12px; font-weight: 400; line-height: 1.2; } -a, a:visited, a:focus { +a, +a:visited, +a:focus { color: #FFFFFF; text-decoration: none; font-weight: 600; @@ -73,27 +83,33 @@ a, a:visited, a:focus { margin-bottom: 24px; } -h1, .h1 { +h1, +.h1 { font-size: 32px; } -h2, .h2 { +h2, +.h2 { font-size: 24px; } -h3, .h3 { +h3, +.h3 { font-size: 20px; } -h4, .h4 { +h4, +.h4 { font-size: 18px; } -h5, .h5 { +h5, +.h5 { font-size: 16px; } -h6, .h6 { +h6, +.h6 { font-size: 14px; } @@ -116,7 +132,9 @@ h6, .h6 { color: #333; } -.section a, .section a:visited, .section a:focus { +.section a, +.section a:visited, +.section a:focus { color: #00bcd4; } diff --git a/public/assets/styles/choices.css b/public/assets/styles/choices.css index 6c16404..855f509 100644 --- a/public/assets/styles/choices.css +++ b/public/assets/styles/choices.css @@ -1,157 +1,370 @@ -/*============================================= -= Generic styling = -=============================================*/ -* { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -*, *:before, *:after { - box-sizing: border-box; -} - -html, body { +/*=============================== += Choices = +===============================*/ +.choices { position: relative; - margin: 0; - width: 100%; - height: 100%; -} - -body { - font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - font-size: 16px; - line-height: 1.4; - color: #FFFFFF; - background-color: #333; - overflow-x: hidden; -} - -label { - display: block; - margin-bottom: 8px; - font-size: 14px; - font-weight: 500; - cursor: pointer; -} - -p { - margin-top: 0; -} - -hr { - display: block; - margin: 30px 0; - border: 0; - border-bottom: 1px solid #eaeaea; - height: 1px; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 12px; - font-weight: 400; - line-height: 1.2; -} - -a, a:visited, a:focus { - color: #FFFFFF; - text-decoration: none; - font-weight: 600; -} - -.form-control { - display: block; - width: 100%; - background-color: #f9f9f9; - padding: 12px; - border: 1px solid #ddd; - border-radius: 2.5px; - font-size: 14px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; margin-bottom: 24px; -} - -h1, .h1 { - font-size: 32px; -} - -h2, .h2 { - font-size: 24px; -} - -h3, .h3 { - font-size: 20px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { font-size: 16px; } -h6, .h6 { - font-size: 14px; +.choices:focus { + outline: none; } -.container { - display: block; - margin: auto; - max-width: 40em; - padding: 48px; -} - -@media (max-width: 620px) { - .container { - padding: 0; - } -} - -.section { - background-color: #FFFFFF; - padding: 24px; - color: #333; -} - -.section a, .section a:visited, .section a:focus { - color: #00bcd4; -} - -.logo { - display: block; - margin-bottom: 12px; -} - -.logo__img { - width: 100%; - height: auto; - display: inline-block; - max-width: 100%; - vertical-align: top; - padding: 6px 0; -} - -.visible-ie { - display: none; -} - -.zero-bottom { +.choices:last-child { margin-bottom: 0; } -.zero-top { +.choices.is-disabled .choices__inner, +.choices.is-disabled .choices__input { + background-color: #EAEAEA; + cursor: not-allowed; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.choices.is-disabled .choices__item { + cursor: not-allowed; +} + +.choices[data-type*="select-one"] { + cursor: pointer; +} + +.choices[data-type*="select-one"] .choices__inner { + padding-bottom: 7.5px; +} + +.choices[data-type*="select-one"] .choices__input { + display: block; + width: 100%; + padding: 10px; + border-bottom: 1px solid #DDDDDD; + background-color: #FFFFFF; + margin: 0; +} + +.choices[data-type*="select-one"] .choices__button { + background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); + padding: 0; + background-size: 8px; + position: absolute; + top: 50%; + right: 0; + margin-top: -10px; + margin-right: 25px; + height: 20px; + width: 20px; + border-radius: 10em; + opacity: .5; +} + +.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus { + opacity: 1; +} + +.choices[data-type*="select-one"] .choices__button:focus { + box-shadow: 0px 0px 0px 2px #00BCD4; +} + +.choices[data-type*="select-one"]:after { + content: ""; + height: 0; + width: 0; + border-style: solid; + border-color: #333333 transparent transparent transparent; + border-width: 5px; + position: absolute; + right: 11.5px; + top: 50%; + margin-top: -2.5px; + pointer-events: none; +} + +.choices[data-type*="select-one"].is-open:after { + border-color: transparent transparent #333333 transparent; + margin-top: -7.5px; +} + +.choices[data-type*="select-one"][dir="rtl"]:after { + left: 11.5px; + right: auto; +} + +.choices[data-type*="select-one"][dir="rtl"] .choices__button { + right: auto; + left: 0; + margin-left: 25px; + margin-right: 0; +} + +.choices[data-type*="select-multiple"] .choices__inner, +.choices[data-type*="text"] .choices__inner { + cursor: text; +} + +.choices[data-type*="select-multiple"] .choices__button, +.choices[data-type*="text"] .choices__button { + position: relative; + display: inline-block; margin-top: 0; + margin-right: -4px; + margin-bottom: 0; + margin-left: 8px; + padding-left: 16px; + border-left: 1px solid #008fa1; + background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); + background-size: 8px; + width: 8px; + line-height: 1; + opacity: .75; + border-radius: 0; } -.text-center { - text-align: center; +.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus, +.choices[data-type*="text"] .choices__button:hover, +.choices[data-type*="text"] .choices__button:focus { + opacity: 1; } -.is-hidden { +.choices__inner { + display: inline-block; + vertical-align: top; + width: 100%; + background-color: #f9f9f9; + padding: 7.5px 7.5px 3.75px; + border: 1px solid #DDDDDD; + border-radius: 2.5px; + font-size: 14px; + min-height: 44px; + overflow: hidden; +} + +.is-focused .choices__inner, +.is-open .choices__inner { + border-color: #b7b7b7; +} + +.is-open .choices__inner { + border-radius: 2.5px 2.5px 0 0; +} + +.is-flipped.is-open .choices__inner { + border-radius: 0 0 2.5px 2.5px; +} + +.choices__list { + margin: 0; + padding-left: 0; + list-style: none; +} + +.choices__list--single { + display: inline-block; + padding: 4px 16px 4px 4px; + width: 100%; +} + +[dir="rtl"] .choices__list--single { + padding-right: 4px; + padding-left: 16px; +} + +.choices__list--single .choices__item { + width: 100%; +} + +.choices__list--multiple { + display: inline; +} + +.choices__list--multiple .choices__item { + display: inline-block; + vertical-align: middle; + border-radius: 20px; + padding: 4px 10px; + font-size: 12px; + font-weight: 500; + margin-right: 3.75px; + margin-bottom: 3.75px; + background-color: #00BCD4; + border: 1px solid #00a5bb; + color: #FFFFFF; + word-break: break-all; +} + +.choices__list--multiple .choices__item[data-deletable] { + padding-right: 5px; +} + +[dir="rtl"] .choices__list--multiple .choices__item { + margin-right: 0; + margin-left: 3.75px; +} + +.choices__list--multiple .choices__item.is-highlighted { + background-color: #00a5bb; + border: 1px solid #008fa1; +} + +.is-disabled .choices__list--multiple .choices__item { + background-color: #aaaaaa; + border: 1px solid #919191; +} + +.choices__list--dropdown { + display: none; + z-index: 1; + position: absolute; + width: 100%; + background-color: #FFFFFF; + border: 1px solid #DDDDDD; + top: 100%; + margin-top: -1px; + border-bottom-left-radius: 2.5px; + border-bottom-right-radius: 2.5px; + overflow: hidden; + word-break: break-all; +} + +.choices__list--dropdown.is-active { + display: block; +} + +.is-open .choices__list--dropdown { + border-color: #b7b7b7; +} + +.is-flipped .choices__list--dropdown { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: -1px; + border-radius: .25rem .25rem 0 0; +} + +.choices__list--dropdown .choices__list { + position: relative; + max-height: 300px; + overflow: auto; + -webkit-overflow-scrolling: touch; + will-change: scroll-position; +} + +.choices__list--dropdown .choices__item { + position: relative; + padding: 10px; + font-size: 14px; +} + +[dir="rtl"] .choices__list--dropdown .choices__item { + text-align: right; +} + +@media (min-width: 640px) { + .choices__list--dropdown .choices__item--selectable { + padding-right: 100px; + } + .choices__list--dropdown .choices__item--selectable:after { + content: attr(data-select-text); + font-size: 12px; + opacity: 0; + position: absolute; + right: 10px; + top: 50%; + transform: translateY(-50%); + } + [dir="rtl"] .choices__list--dropdown .choices__item--selectable { + text-align: right; + padding-left: 100px; + padding-right: 10px; + } + [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after { + right: auto; + left: 10px; + } +} + +.choices__list--dropdown .choices__item--selectable.is-highlighted { + background-color: #f2f2f2; +} + +.choices__list--dropdown .choices__item--selectable.is-highlighted:after { + opacity: .5; +} + +.choices__item { + cursor: default; +} + +.choices__item--selectable { + cursor: pointer; +} + +.choices__item--disabled { + cursor: not-allowed; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + opacity: .5; +} + +.choices__heading { + font-weight: 600; + font-size: 12px; + padding: 10px; + border-bottom: 1px solid #f7f7f7; + color: gray; +} + +.choices__button { + text-indent: -9999px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border: 0; + background-color: transparent; + background-repeat: no-repeat; + background-position: center; + cursor: pointer; +} + +.choices__button:focus { + outline: none; +} + +.choices__input { + display: inline-block; + vertical-align: baseline; + background-color: #f9f9f9; + font-size: 14px; + margin-bottom: 5px; + border: 0; + border-radius: 0; + max-width: 100%; + padding: 4px 0 4px 2px; +} + +.choices__input:focus { + outline: 0; +} + +[dir="rtl"] .choices__input { + padding-right: 2px; + padding-left: 0; +} + +.choices__placeholder { + opacity: .5; +} + +.choices__input.is-hidden, +.choices[data-type*="select-one"] .choices__input.is-hidden, +.choices[data-type*="select-multiple"] .choices__input.is-hidden { display: none; } -/*===== End of Section comment block ======*/ +/*===== End of Choices ======*/ diff --git a/public/assets/styles/choices.min.css b/public/assets/styles/choices.min.css index 295b630..d4268fb 100644 --- a/public/assets/styles/choices.min.css +++ b/public/assets/styles/choices.min.css @@ -1 +1 @@ -*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-size:16px;line-height:1.4;color:#fff;background-color:#333;overflow-x:hidden}hr,label{display:block}label{margin-bottom:8px;font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0}hr{margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:12px;font-weight:400;line-height:1.2}a,a:focus,a:visited{color:#fff;text-decoration:none;font-weight:600}.form-control{display:block;width:100%;background-color:#f9f9f9;padding:12px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-bottom:24px}.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}.container{display:block;margin:auto;max-width:40em;padding:48px}@media (max-width:620px){.container{padding:0}}.section{background-color:#fff;padding:24px;color:#333}.section a,.section a:focus,.section a:visited{color:#00bcd4}.logo{display:block;margin-bottom:12px}.logo__img{width:100%;height:auto;display:inline-block;max-width:100%;vertical-align:top;padding:6px 0}.visible-ie{display:none}.zero-bottom{margin-bottom:0}.zero-top{margin-top:0}.text-center{text-align:center}.is-hidden{display:none} \ No newline at end of file +.choices{position:relative;margin-bottom:24px;font-size:16px}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:10px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;border-radius:10em;opacity:.5}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one]:after{content:"";height:0;width:0;border-style:solid;border-color:#333 transparent transparent transparent;border-width:5px;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333 transparent;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin:0 -4px 0 8px;padding-left:16px;border-left:1px solid #008fa1;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#00bcd4;border:1px solid #00a5bb;color:#fff;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all}.choices__list--dropdown.is-active{display:block}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus{outline:none}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}.choices[data-type*=select-multiple] .choices__input.is-hidden,.choices[data-type*=select-one] .choices__input.is-hidden,.choices__input.is-hidden{display:none} \ No newline at end of file diff --git a/src/styles/scss/base.scss b/src/styles/base.scss similarity index 63% rename from src/styles/scss/base.scss rename to src/styles/base.scss index 9704f20..16f99a1 100644 --- a/src/styles/scss/base.scss +++ b/src/styles/base.scss @@ -1,27 +1,28 @@ -$global-guttering: 24px; -$global-font-size-h1: 32px; -$global-font-size-h2: 24px; -$global-font-size-h3: 20px; -$global-font-size-h4: 18px; -$global-font-size-h5: 16px; -$global-font-size-h6: 14px; - /*============================================= = Generic styling = =============================================*/ +$global-guttering : 24px; +$global-font-size-h1 : 32px; +$global-font-size-h2 : 24px; +$global-font-size-h3 : 20px; +$global-font-size-h4 : 18px; +$global-font-size-h5 : 16px; +$global-font-size-h6 : 14px; + * { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale } - -*, *:before, *:after { +*, +*:before, +*:after { box-sizing: border-box } - -html, body { +html, +body { position: relative; margin: 0; width: 100%; @@ -45,7 +46,9 @@ label { cursor: pointer; } -p { margin-top: 0; } +p { + margin-top: 0; +} hr { display: block; @@ -55,14 +58,21 @@ hr { height: 1px; } -h1, h2, h3, h4, h5, h6 { +h1, +h2, +h3, +h4, +h5, +h6 { margin-top: 0; margin-bottom: $global-guttering/2; font-weight: 400; line-height: 1.2; } -a, a:visited, a:focus { +a, +a:visited, +a:focus { color: #FFFFFF; text-decoration: none; font-weight: 600; @@ -81,26 +91,55 @@ a, a:visited, a:focus { margin-bottom: $global-guttering; } -h1, .h1 { font-size: $global-font-size-h1; } -h2, .h2 { font-size: $global-font-size-h2; } -h3, .h3 { font-size: $global-font-size-h3; } -h4, .h4 { font-size: $global-font-size-h4; } -h5, .h5 { font-size: $global-font-size-h5; } -h6, .h6 { font-size: $global-font-size-h6; } +h1, +.h1 { + font-size: $global-font-size-h1; +} + +h2, +.h2 { + font-size: $global-font-size-h2; +} + +h3, +.h3 { + font-size: $global-font-size-h3; +} + +h4, +.h4 { + font-size: $global-font-size-h4; +} + +h5, +.h5 { + font-size: $global-font-size-h5; +} + +h6, +.h6 { + font-size: $global-font-size-h6; +} .container { display: block; margin: auto; max-width: 40em; padding: $global-guttering*2; - @media (max-width: 620px) { padding: 0; } + @media (max-width: 620px) { + padding: 0; + } } .section { background-color: #FFFFFF; padding: $global-guttering; color: #333; - a, a:visited, a:focus { color: #00bcd4; } + a, + a:visited, + a:focus { + color: #00bcd4; + } } .logo { @@ -117,10 +156,24 @@ h6, .h6 { font-size: $global-font-size-h6; } padding: $global-guttering/4 0; } -.visible-ie { display: none; } -.zero-bottom { margin-bottom: 0; } -.zero-top { margin-top: 0; } -.text-center { text-align: center; } -.is-hidden { display: none; } +.visible-ie { + display: none; +} -/*===== End of Section comment block ======*/ +.zero-bottom { + margin-bottom: 0; +} + +.zero-top { + margin-top: 0; +} + +.text-center { + text-align: center; +} + +.is-hidden { + display: none; +} + +/*===== End of Section comment block ======*/ \ No newline at end of file diff --git a/src/styles/choices.scss b/src/styles/choices.scss new file mode 100644 index 0000000..ca6d9c5 --- /dev/null +++ b/src/styles/choices.scss @@ -0,0 +1,352 @@ +/*=============================== += Choices = +===============================*/ + +$choices-selector: 'choices' !default; +$choices-font-size-lg: 16px !default; +$choices-font-size-md: 14px !default; +$choices-font-size-sm: 12px !default; +$choices-guttering: 24px !default; +$choices-border-radius: 2.5px !default; +$choices-border-radius-item: 20px !default; +$choices-bg-color: #f9f9f9 !default; +$choices-bg-color-disabled: #EAEAEA !default; +$choices-bg-color-dropdown: #FFFFFF !default; +$choices-text-color: #333333 !default; +$choices-keyline-color: #DDDDDD !default; +$choices-primary-color: #00BCD4 !default; +$choices-disabled-color: #eaeaea !default; +$choices-highlight-color: $choices-primary-color !default; +$choices-button-dimension: 8px !default; +$choices-button-offset: 8px !default; +$choices-icon-cross: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==) !default; +$choices-icon-cross-inverse: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==) !default; + +.#{$choices-selector} { + position: relative; + margin-bottom: $choices-guttering; + font-size: $choices-font-size-lg; + &:focus { + outline: none; + } + &:last-child { + margin-bottom: 0; + } + &.is-disabled { + .#{$choices-selector}__inner, + .#{$choices-selector}__input { + background-color: $choices-bg-color-disabled; + cursor: not-allowed; + user-select: none; + } + .#{$choices-selector}__item { + cursor: not-allowed; + } + } +} + +.#{$choices-selector}[data-type*="select-one"] { + cursor: pointer; + .#{$choices-selector}__inner { + padding-bottom: 7.5px; + } + .#{$choices-selector}__input { + display: block; + width: 100%; + padding: 10px; + border-bottom: 1px solid $choices-keyline-color; + background-color: #FFFFFF; + margin: 0; + } + .#{$choices-selector}__button { + background-image: $choices-icon-cross-inverse; + padding: 0; + background-size: 8px; + position: absolute; + top: 50%; + right: 0; + margin-top: -10px; + margin-right: 25px; + height: 20px; + width: 20px; + border-radius: 10em; + opacity: .5; + &:hover, + &:focus { + opacity: 1; + } + &:focus { + box-shadow: 0px 0px 0px 2px $choices-highlight-color; + } + } + &:after { + content: ""; + height: 0; + width: 0; + border-style: solid; + border-color: $choices-text-color transparent transparent transparent; + border-width: 5px; + position: absolute; + right: 11.5px; + top: 50%; + margin-top: -2.5px; + pointer-events: none; + } + &.is-open:after { + border-color: transparent transparent $choices-text-color transparent; + margin-top: -7.5px; + } + &[dir="rtl"] { + &:after { + left: 11.5px; + right: auto; + } + .#{$choices-selector}__button { + right: auto; + left: 0; + margin-left: 25px; + margin-right: 0; + } + } +} + +.#{$choices-selector}[data-type*="select-multiple"], +.#{$choices-selector}[data-type*="text"] { + .#{$choices-selector}__inner { + cursor: text; + } + .#{$choices-selector}__button { + position: relative; + display: inline-block; + margin-top: 0; + margin-right: -$choices-button-offset/2; + margin-bottom: 0; + margin-left: $choices-button-offset; + padding-left: $choices-button-offset*2; + border-left: 1px solid darken($choices-primary-color, 10%); + background-image: $choices-icon-cross; + background-size: $choices-button-dimension; + width: $choices-button-dimension; + line-height: 1; + opacity: .75; + border-radius: 0; + &:hover, + &:focus { + opacity: 1; + } + } +} + +.#{$choices-selector}__inner { + display: inline-block; + vertical-align: top; + width: 100%; + background-color: $choices-bg-color; + padding: 7.5px 7.5px 3.75px; + border: 1px solid $choices-keyline-color; + border-radius: $choices-border-radius; + font-size: $choices-font-size-md; + min-height: 44px; + overflow: hidden; + .is-focused &, + .is-open & { + border-color: darken($choices-keyline-color, 15%); + } + .is-open & { + border-radius: $choices-border-radius $choices-border-radius 0 0; + } + .is-flipped.is-open & { + border-radius: 0 0 $choices-border-radius $choices-border-radius; + } +} + +.#{$choices-selector}__list { + margin: 0; + padding-left: 0; + list-style: none; +} + +.#{$choices-selector}__list--single { + display: inline-block; + padding: 4px 16px 4px 4px; + width: 100%; + [dir="rtl"] & { + padding-right: 4px; + padding-left: 16px; + } + .#{$choices-selector}__item { + width: 100%; + } +} + +.#{$choices-selector}__list--multiple { + display: inline; + .#{$choices-selector}__item { + display: inline-block; + vertical-align: middle; + border-radius: $choices-border-radius-item; + padding: 4px 10px; + font-size: $choices-font-size-sm; + font-weight: 500; + margin-right: 3.75px; + margin-bottom: 3.75px; + background-color: $choices-primary-color; + border: 1px solid darken($choices-primary-color, 5%); + color: #FFFFFF; + word-break: break-all; + &[data-deletable] { + padding-right: 5px; + } + [dir="rtl"] & { + margin-right: 0; + margin-left: 3.75px; + } + &.is-highlighted { + background-color: darken($choices-primary-color, 5%); + border: 1px solid darken($choices-primary-color, 10%); + } + .is-disabled & { + background-color: darken($choices-disabled-color, 25%); + border: 1px solid darken($choices-disabled-color, 35%); + } + } +} + +.#{$choices-selector}__list--dropdown { + display: none; + z-index: 1; + position: absolute; + width: 100%; + background-color: $choices-bg-color-dropdown; + border: 1px solid $choices-keyline-color; + top: 100%; + margin-top: -1px; + border-bottom-left-radius: $choices-border-radius; + border-bottom-right-radius: $choices-border-radius; + overflow: hidden; + word-break: break-all; + &.is-active { + display: block; + } + .is-open & { + border-color: darken($choices-keyline-color, 15%); + } + .is-flipped & { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: -1px; + border-radius: .25rem .25rem 0 0; + } + .#{$choices-selector}__list { + position: relative; + max-height: 300px; + overflow: auto; + -webkit-overflow-scrolling: touch; + will-change: scroll-position; + } + .#{$choices-selector}__item { + position: relative; + padding: 10px; + font-size: $choices-font-size-md; + [dir="rtl"] & { + text-align: right; + } + } + .#{$choices-selector}__item--selectable { + @media (min-width: 640px) { + padding-right: 100px; + &:after { + content: attr(data-select-text); + font-size: $choices-font-size-sm; + opacity: 0; + position: absolute; + right: 10px; + top: 50%; + transform: translateY(-50%); + } + [dir="rtl"] & { + text-align: right; + padding-left: 100px; + padding-right: 10px; + &:after { + right: auto; + left: 10px; + } + } + } + &.is-highlighted { + background-color: mix(#000000, #FFFFFF, 5%); + &:after { + opacity: .5; + } + } + } +} + +.#{$choices-selector}__item { + cursor: default; +} + +.#{$choices-selector}__item--selectable { + cursor: pointer; +} + +.#{$choices-selector}__item--disabled { + cursor: not-allowed; + user-select: none; + opacity: .5; +} + +.#{$choices-selector}__heading { + font-weight: 600; + font-size: $choices-font-size-sm; + padding: 10px; + border-bottom: 1px solid lighten($choices-keyline-color, 10%); + color: lighten(#333, 30%); +} + +.#{$choices-selector}__button { + text-indent: -9999px; + -webkit-appearance: none; + appearance: none; + border: 0; + background-color: transparent; + background-repeat: no-repeat; + background-position: center; + cursor: pointer; + &:focus { + outline: none; + } +} + +.#{$choices-selector}__input { + display: inline-block; + vertical-align: baseline; + background-color: $choices-bg-color; + font-size: $choices-font-size-md; + margin-bottom: 5px; + border: 0; + border-radius: 0; + max-width: 100%; + padding: 4px 0 4px 2px; + &:focus { + outline: 0; + } + [dir="rtl"] & { + padding-right: 2px; + padding-left: 0; + } +} + +.#{$choices-selector}__placeholder { + opacity: .5; +} + +.#{$choices-selector}__input.is-hidden, +.#{$choices-selector}[data-type*="select-one"] .#{$choices-selector}__input.is-hidden, +.#{$choices-selector}[data-type*="select-multiple"] .#{$choices-selector}__input.is-hidden { + display: none; +} + +/*===== End of Choices ======*/ \ No newline at end of file diff --git a/src/styles/css/base.css b/src/styles/css/base.css deleted file mode 100644 index 6c16404..0000000 --- a/src/styles/css/base.css +++ /dev/null @@ -1,157 +0,0 @@ -/*============================================= -= Generic styling = -=============================================*/ -* { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -*, *:before, *:after { - box-sizing: border-box; -} - -html, body { - position: relative; - margin: 0; - width: 100%; - height: 100%; -} - -body { - font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - font-size: 16px; - line-height: 1.4; - color: #FFFFFF; - background-color: #333; - overflow-x: hidden; -} - -label { - display: block; - margin-bottom: 8px; - font-size: 14px; - font-weight: 500; - cursor: pointer; -} - -p { - margin-top: 0; -} - -hr { - display: block; - margin: 30px 0; - border: 0; - border-bottom: 1px solid #eaeaea; - height: 1px; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 12px; - font-weight: 400; - line-height: 1.2; -} - -a, a:visited, a:focus { - color: #FFFFFF; - text-decoration: none; - font-weight: 600; -} - -.form-control { - display: block; - width: 100%; - background-color: #f9f9f9; - padding: 12px; - border: 1px solid #ddd; - border-radius: 2.5px; - font-size: 14px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - margin-bottom: 24px; -} - -h1, .h1 { - font-size: 32px; -} - -h2, .h2 { - font-size: 24px; -} - -h3, .h3 { - font-size: 20px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { - font-size: 16px; -} - -h6, .h6 { - font-size: 14px; -} - -.container { - display: block; - margin: auto; - max-width: 40em; - padding: 48px; -} - -@media (max-width: 620px) { - .container { - padding: 0; - } -} - -.section { - background-color: #FFFFFF; - padding: 24px; - color: #333; -} - -.section a, .section a:visited, .section a:focus { - color: #00bcd4; -} - -.logo { - display: block; - margin-bottom: 12px; -} - -.logo__img { - width: 100%; - height: auto; - display: inline-block; - max-width: 100%; - vertical-align: top; - padding: 6px 0; -} - -.visible-ie { - display: none; -} - -.zero-bottom { - margin-bottom: 0; -} - -.zero-top { - margin-top: 0; -} - -.text-center { - text-align: center; -} - -.is-hidden { - display: none; -} - -/*===== End of Section comment block ======*/ diff --git a/src/styles/css/base.min.css b/src/styles/css/base.min.css deleted file mode 100644 index 295b630..0000000 --- a/src/styles/css/base.min.css +++ /dev/null @@ -1 +0,0 @@ -*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before{box-sizing:border-box}body,html{position:relative;margin:0;width:100%;height:100%}body{font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-size:16px;line-height:1.4;color:#fff;background-color:#333;overflow-x:hidden}hr,label{display:block}label{margin-bottom:8px;font-size:14px;font-weight:500;cursor:pointer}p{margin-top:0}hr{margin:30px 0;border:0;border-bottom:1px solid #eaeaea;height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:12px;font-weight:400;line-height:1.2}a,a:focus,a:visited{color:#fff;text-decoration:none;font-weight:600}.form-control{display:block;width:100%;background-color:#f9f9f9;padding:12px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-bottom:24px}.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:20px}.h4,h4{font-size:18px}.h5,h5{font-size:16px}.h6,h6{font-size:14px}.container{display:block;margin:auto;max-width:40em;padding:48px}@media (max-width:620px){.container{padding:0}}.section{background-color:#fff;padding:24px;color:#333}.section a,.section a:focus,.section a:visited{color:#00bcd4}.logo{display:block;margin-bottom:12px}.logo__img{width:100%;height:auto;display:inline-block;max-width:100%;vertical-align:top;padding:6px 0}.visible-ie{display:none}.zero-bottom{margin-bottom:0}.zero-top{margin-top:0}.text-center{text-align:center}.is-hidden{display:none} \ No newline at end of file diff --git a/src/styles/css/choices.css b/src/styles/css/choices.css deleted file mode 100644 index 565580b..0000000 --- a/src/styles/css/choices.css +++ /dev/null @@ -1,365 +0,0 @@ -/*=============================== -= Choices = -===============================*/ -.choices { - position: relative; - margin-bottom: 24px; - font-size: 16px; -} - -.choices:focus { - outline: none; -} - -.choices:last-child { - margin-bottom: 0; -} - -.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input { - background-color: #EAEAEA; - cursor: not-allowed; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.choices.is-disabled .choices__item { - cursor: not-allowed; -} - -.choices[data-type*="select-one"] { - cursor: pointer; -} - -.choices[data-type*="select-one"] .choices__inner { - padding-bottom: 7.5px; -} - -.choices[data-type*="select-one"] .choices__input { - display: block; - width: 100%; - padding: 10px; - border-bottom: 1px solid #DDDDDD; - background-color: #FFFFFF; - margin: 0; -} - -.choices[data-type*="select-one"] .choices__button { - background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); - padding: 0; - background-size: 8px; - position: absolute; - top: 50%; - right: 0; - margin-top: -10px; - margin-right: 25px; - height: 20px; - width: 20px; - border-radius: 10em; - opacity: .5; -} - -.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus { - opacity: 1; -} - -.choices[data-type*="select-one"] .choices__button:focus { - box-shadow: 0px 0px 0px 2px #00BCD4; -} - -.choices[data-type*="select-one"]:after { - content: ""; - height: 0; - width: 0; - border-style: solid; - border-color: #333333 transparent transparent transparent; - border-width: 5px; - position: absolute; - right: 11.5px; - top: 50%; - margin-top: -2.5px; - pointer-events: none; -} - -.choices[data-type*="select-one"].is-open:after { - border-color: transparent transparent #333333 transparent; - margin-top: -7.5px; -} - -.choices[data-type*="select-one"][dir="rtl"]:after { - left: 11.5px; - right: auto; -} - -.choices[data-type*="select-one"][dir="rtl"] .choices__button { - right: auto; - left: 0; - margin-left: 25px; - margin-right: 0; -} - -.choices[data-type*="select-multiple"] .choices__inner, .choices[data-type*="text"] .choices__inner { - cursor: text; -} - -.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button { - position: relative; - display: inline-block; - margin-top: 0; - margin-right: -4px; - margin-bottom: 0; - margin-left: 8px; - padding-left: 16px; - border-left: 1px solid #008fa1; - background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); - background-size: 8px; - width: 8px; - line-height: 1; - opacity: .75; - border-radius: 0; -} - -.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus, .choices[data-type*="text"] .choices__button:hover, .choices[data-type*="text"] .choices__button:focus { - opacity: 1; -} - -.choices__inner { - display: inline-block; - vertical-align: top; - width: 100%; - background-color: #f9f9f9; - padding: 7.5px 7.5px 3.75px; - border: 1px solid #DDDDDD; - border-radius: 2.5px; - font-size: 14px; - min-height: 44px; - overflow: hidden; -} - -.is-focused .choices__inner, .is-open .choices__inner { - border-color: #b7b7b7; -} - -.is-open .choices__inner { - border-radius: 2.5px 2.5px 0 0; -} - -.is-flipped.is-open .choices__inner { - border-radius: 0 0 2.5px 2.5px; -} - -.choices__list { - margin: 0; - padding-left: 0; - list-style: none; -} - -.choices__list--single { - display: inline-block; - padding: 4px 16px 4px 4px; - width: 100%; -} - -[dir="rtl"] .choices__list--single { - padding-right: 4px; - padding-left: 16px; -} - -.choices__list--single .choices__item { - width: 100%; -} - -.choices__list--multiple { - display: inline; -} - -.choices__list--multiple .choices__item { - display: inline-block; - vertical-align: middle; - border-radius: 20px; - padding: 4px 10px; - font-size: 12px; - font-weight: 500; - margin-right: 3.75px; - margin-bottom: 3.75px; - background-color: #00BCD4; - border: 1px solid #00a5bb; - color: #FFFFFF; - word-break: break-all; -} - -.choices__list--multiple .choices__item[data-deletable] { - padding-right: 5px; -} - -[dir="rtl"] .choices__list--multiple .choices__item { - margin-right: 0; - margin-left: 3.75px; -} - -.choices__list--multiple .choices__item.is-highlighted { - background-color: #00a5bb; - border: 1px solid #008fa1; -} - -.is-disabled .choices__list--multiple .choices__item { - background-color: #aaaaaa; - border: 1px solid #919191; -} - -.choices__list--dropdown { - display: none; - z-index: 1; - position: absolute; - width: 100%; - background-color: #FFFFFF; - border: 1px solid #DDDDDD; - top: 100%; - margin-top: -1px; - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; - overflow: hidden; - word-break: break-all; -} - -.choices__list--dropdown.is-active { - display: block; -} - -.is-open .choices__list--dropdown { - border-color: #b7b7b7; -} - -.is-flipped .choices__list--dropdown { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: -1px; - border-radius: .25rem .25rem 0 0; -} - -.choices__list--dropdown .choices__list { - position: relative; - max-height: 300px; - overflow: auto; - -webkit-overflow-scrolling: touch; - will-change: scroll-position; -} - -.choices__list--dropdown .choices__item { - position: relative; - padding: 10px; - font-size: 14px; -} - -[dir="rtl"] .choices__list--dropdown .choices__item { - text-align: right; -} - -@media (min-width: 640px) { - .choices__list--dropdown .choices__item--selectable { - padding-right: 100px; - } - .choices__list--dropdown .choices__item--selectable:after { - content: attr(data-select-text); - font-size: 12px; - opacity: 0; - position: absolute; - right: 10px; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - } - [dir="rtl"] .choices__list--dropdown .choices__item--selectable { - text-align: right; - padding-left: 100px; - padding-right: 10px; - } - [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after { - right: auto; - left: 10px; - } -} - -.choices__list--dropdown .choices__item--selectable.is-highlighted { - background-color: #f2f2f2; -} - -.choices__list--dropdown .choices__item--selectable.is-highlighted:after { - opacity: .5; -} - -.choices__item { - cursor: default; -} - -.choices__item--selectable { - cursor: pointer; -} - -.choices__item--disabled { - cursor: not-allowed; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - opacity: .5; -} - -.choices__heading { - font-weight: 600; - font-size: 12px; - padding: 10px; - border-bottom: 1px solid #f7f7f7; - color: gray; -} - -.choices__button { - text-indent: -9999px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: 0; - background-color: transparent; - background-repeat: no-repeat; - background-position: center; - cursor: pointer; -} - -.choices__button:focus { - outline: none; -} - -.choices__input { - display: inline-block; - vertical-align: baseline; - background-color: #f9f9f9; - font-size: 14px; - margin-bottom: 5px; - border: 0; - border-radius: 0; - max-width: 100%; - padding: 4px 0 4px 2px; -} - -.choices__input:focus { - outline: 0; -} - -[dir="rtl"] .choices__input { - padding-right: 2px; - padding-left: 0; -} - -.choices__placeholder { - opacity: .5; -} - -.choices__input.is-hidden, -.choices[data-type*="select-one"] .choices__input.is-hidden, -.choices[data-type*="select-multiple"] .choices__input.is-hidden { - display: none; -} - -/*===== End of Choices ======*/ diff --git a/src/styles/css/choices.min.css b/src/styles/css/choices.min.css deleted file mode 100644 index d1afc01..0000000 --- a/src/styles/css/choices.min.css +++ /dev/null @@ -1 +0,0 @@ -.choices{position:relative;margin-bottom:24px;font-size:16px}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:10px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;border-radius:10em;opacity:.5}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one]:after{content:"";height:0;width:0;border-style:solid;border-color:#333 transparent transparent transparent;border-width:5px;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333 transparent;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin:0 -4px 0 8px;padding-left:16px;border-left:1px solid #008fa1;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#00bcd4;border:1px solid #00a5bb;color:#fff;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all}.choices__list--dropdown.is-active{display:block}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus{outline:none}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}.choices[data-type*=select-multiple] .choices__input.is-hidden,.choices[data-type*=select-one] .choices__input.is-hidden,.choices__input.is-hidden{display:none} \ No newline at end of file diff --git a/src/styles/scss/choices.scss b/src/styles/scss/choices.scss deleted file mode 100644 index 1a9ecce..0000000 --- a/src/styles/scss/choices.scss +++ /dev/null @@ -1,156 +0,0 @@ -/*============================================= -= Generic styling = -=============================================*/ -* { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -*, *:before, *:after { - box-sizing: border-box; -} - -html, body { - position: relative; - margin: 0; - width: 100%; - height: 100%; -} - -body { - font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; - font-size: 16px; - line-height: 1.4; - color: #FFFFFF; - background-color: #333; - overflow-x: hidden; -} - -label { - display: block; - margin-bottom: 8px; - font-size: 14px; - font-weight: 500; - cursor: pointer; -} - -p { - margin-top: 0; -} - -hr { - display: block; - margin: 30px 0; - border: 0; - border-bottom: 1px solid #eaeaea; - height: 1px; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 12px; - font-weight: 400; - line-height: 1.2; -} - -a, a:visited, a:focus { - color: #FFFFFF; - text-decoration: none; - font-weight: 600; -} - -.form-control { - display: block; - width: 100%; - background-color: #f9f9f9; - padding: 12px; - border: 1px solid #ddd; - border-radius: 2.5px; - font-size: 14px; - -webkit-appearance: none; - appearance: none; - margin-bottom: 24px; -} - -h1, .h1 { - font-size: 32px; -} - -h2, .h2 { - font-size: 24px; -} - -h3, .h3 { - font-size: 20px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { - font-size: 16px; -} - -h6, .h6 { - font-size: 14px; -} - -.container { - display: block; - margin: auto; - max-width: 40em; - padding: 48px; -} - -@media (max-width: 620px) { - .container { - padding: 0; - } -} - -.section { - background-color: #FFFFFF; - padding: 24px; - color: #333; -} - -.section a, .section a:visited, .section a:focus { - color: #00bcd4; -} - -.logo { - display: block; - margin-bottom: 12px; -} - -.logo__img { - width: 100%; - height: auto; - display: inline-block; - max-width: 100%; - vertical-align: top; - padding: 6px 0; -} - -.visible-ie { - display: none; -} - -.zero-bottom { - margin-bottom: 0; -} - -.zero-top { - margin-top: 0; -} - -.text-center { - text-align: center; -} - -.is-hidden { - display: none; -} - -/*===== End of Section comment block ======*/