summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_inputs.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/components/_inputs.scss')
-rw-r--r--webapp/sass/components/_inputs.scss71
1 files changed, 0 insertions, 71 deletions
diff --git a/webapp/sass/components/_inputs.scss b/webapp/sass/components/_inputs.scss
deleted file mode 100644
index 4d99e00e4..000000000
--- a/webapp/sass/components/_inputs.scss
+++ /dev/null
@@ -1,71 +0,0 @@
-@charset 'UTF-8';
-
-.form-control {
- @include border-radius($border-rad);
-
- &:focus {
- @include box-shadow(none);
- }
-
- &.no-padding {
- line-height: 32px;
- padding: 0;
- }
-
- &.no-resize {
- resize: none;
- }
-
- &[disabled],
- [readonly] {
- @include alpha-property(background, $white, .1);
- color: inherit;
- cursor: auto;
- }
-}
-
-fieldset {
- &[disabled] {
- .form-control {
- @include alpha-property(background, $white, .1);
- color: inherit;
- cursor: auto;
- }
- }
-}
-
-.admin-textarea {
- resize: none;
-}
-
-input {
- &[type='radio'],
- &[type='checkbox'] {
- font-size: 14px;
- margin-top: 3px;
- }
-}
-
-input::-webkit-file-upload-button {
- display: none
-}
-
-::-webkit-input-placeholder { /* Chrome/Opera/Safari */
- color: inherit;
- opacity: 0.5;
-}
-
-::-moz-placeholder { /* Firefox 19+ */
- color: inherit;
- opacity: 0.5;
-}
-
-:-ms-input-placeholder { /* IE 10+ */
- color: inherit;
- opacity: 0.5;
-}
-
-:-moz-placeholder { /* Firefox 18- */
- color: inherit;
- opacity: 0.5;
-}