From 91ea9b7b0e7b2ad818c0ac026951cd5a9c68bfdf Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 23 Nov 2018 07:28:53 +0300 Subject: [PATCH] checkbox radius --- src/App.scss | 4 ++-- src/_variables.scss | 2 +- src/components/style_switcher/style_switcher.js | 3 +++ src/components/style_switcher/style_switcher.vue | 3 ++- src/i18n/en.json | 1 + static/styles.json | 3 +++ 6 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/App.scss b/src/App.scss index 8732d23c..004c6fc3 100644 --- a/src/App.scss +++ b/src/App.scss @@ -178,8 +178,8 @@ input, textarea, .select { transition: color 200ms; width: 1.1em; height: 1.1em; - border-radius: $fallback--checkBoxRadius; - border-radius: var(--checkBoxRadius, $fallback--checkBoxRadius); + border-radius: $fallback--checkboxRadius; + border-radius: var(--checkboxRadius, $fallback--checkboxRadius); box-shadow: 0px 0px 2px black inset; box-shadow: var(--inputShadow); margin-right: .5em; diff --git a/src/_variables.scss b/src/_variables.scss index d0d91efe..150e4fb5 100644 --- a/src/_variables.scss +++ b/src/_variables.scss @@ -19,7 +19,7 @@ $fallback--cOrange: orange; $fallback--alertError: rgba(211,16,20,.5); $fallback--panelRadius: 10px; -$fallback--checkBoxRadius: 2px; +$fallback--checkboxRadius: 2px; $fallback--btnRadius: 4px; $fallback--inputRadius: 4px; $fallback--tooltipRadius: 5px; diff --git a/src/components/style_switcher/style_switcher.js b/src/components/style_switcher/style_switcher.js index 710694d4..edc614c3 100644 --- a/src/components/style_switcher/style_switcher.js +++ b/src/components/style_switcher/style_switcher.js @@ -76,6 +76,7 @@ export default { btnRadiusLocal: '', inputRadiusLocal: '', + checkboxRadiusLocal: '', panelRadiusLocal: '', avatarRadiusLocal: '', avatarAltRadiusLocal: '', @@ -154,6 +155,7 @@ export default { return { btn: this.btnRadiusLocal, input: this.inputRadiusLocal, + checkbox: this.checkboxRadiusLocal, panel: this.panelRadiusLocal, avatar: this.avatarRadiusLocal, avatarAlt: this.avatarAltRadiusLocal, @@ -421,6 +423,7 @@ export default { // TODO optimize this this.btnRadiusLocal = radii.btn this.inputRadiusLocal = radii.input + this.checkboxRadiusLocal = radii.checkbox this.panelRadiusLocal = radii.panel this.avatarRadiusLocal = radii.avatar this.avatarAltRadiusLocal = radii.avatarAlt diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 37709363..6463a4ca 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -135,7 +135,8 @@

{{$t('settings.radii_help')}}

- + + diff --git a/src/i18n/en.json b/src/i18n/en.json index b039757e..f990dd04 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -114,6 +114,7 @@ "import_followers_from_a_csv_file": "Import follows from a csv file", "import_theme": "Load preset", "inputRadius": "Input fields", + "checkboxRadius": "Checkboxes", "instance_default": "(default: {value})", "interfaceLanguage": "Interface language", "invalid_theme_imported": "The selected file is not a supported Pleroma theme. No changes to your theme were made.", diff --git a/static/styles.json b/static/styles.json index d9e1ea8c..a53eeaa1 100644 --- a/static/styles.json +++ b/static/styles.json @@ -271,6 +271,7 @@ "radii": { "btn": "0", "input": "0", + "checkbox": "0", "panel": "0", "avatar": "0", "avatarAlt": "0", @@ -555,6 +556,7 @@ "radii": { "btn": "0", "input": "0", + "checkbox": "0", "panel": "0", "avatar": "0", "avatarAlt": "0", @@ -839,6 +841,7 @@ "radii": { "btn": "0", "input": "0", + "checkbox": "0", "panel": "0", "avatar": "0", "avatarAlt": "0",