summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/css/apps.scss13
-rw-r--r--core/css/inputs.scss16
2 files changed, 14 insertions, 15 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index 08bbc3ed3b2..4b4e5088262 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -604,6 +604,19 @@ kbd {
padding: 5px 0 7px 22px;
color: rgba($color-main-text, .4);
}
+ input {
+ &[type='checkbox'],
+ &[type='radio'] {
+ &.radio,
+ &.checkbox {
+ + label {
+ display: inline-block;
+ width: 100%;
+ padding: 5px 0;
+ }
+ }
+ }
+ }
}
#app-settings-header {
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 832ccdebaa6..42de33b0be8 100644
--- a/core/css/inputs.scss
+++ b/core/css/inputs.scss
@@ -44,6 +44,7 @@ textarea,
border: 1px solid nc-lighten($color-main-text, 86%);
outline: none;
border-radius: 3px;
+ cursor: text;
&:not(:disabled):not(.primary) {
&:hover,
&:focus,
@@ -297,21 +298,6 @@ input {
}
}
}
-#app-settings-content {
- input {
- &[type='checkbox'],
- &[type='radio'] {
- &.radio,
- &.checkbox {
- + label {
- display: inline-block;
- width: 100%;
- padding: 5px 0;
- }
- }
- }
- }
-}
/* Select2 overriding. Merged to core with vendor stylesheet */
.select2-drop {