diff --git a/src/app/components/floating-column/manage-account/my-account/my-account.component.html b/src/app/components/floating-column/manage-account/my-account/my-account.component.html
index ced4c965..5b436778 100644
--- a/src/app/components/floating-column/manage-account/my-account/my-account.component.html
+++ b/src/app/components/floating-column/manage-account/my-account/my-account.component.html
@@ -9,21 +9,21 @@
manage list:
-
+
-
+
-
+
-
+
@@ -38,7 +38,16 @@
-
+
+
+
advanced settings:
+
+
+
+
remove account from sengi:
diff --git a/src/app/components/floating-column/manage-account/my-account/my-account.component.scss b/src/app/components/floating-column/manage-account/my-account/my-account.component.scss
index e1f8352b..37470a3f 100644
--- a/src/app/components/floating-column/manage-account/my-account/my-account.component.scss
+++ b/src/app/components/floating-column/manage-account/my-account/my-account.component.scss
@@ -102,4 +102,24 @@
&__margin-top {
margin-top: 25px;
}
+}
+
+.advanced-settings {
+ position: relative;
+
+ &__checkbox{
+ position: relative;
+ top:3px;
+ left: 5px;
+ margin-right: 7px;
+ }
+
+ &__label {
+
+
+ }
+
+ &__input {
+ margin-left: 5px;
+ }
}
\ No newline at end of file
diff --git a/src/app/components/floating-column/manage-account/my-account/my-account.component.ts b/src/app/components/floating-column/manage-account/my-account/my-account.component.ts
index 69db4318..c6caa9ab 100644
--- a/src/app/components/floating-column/manage-account/my-account/my-account.component.ts
+++ b/src/app/components/floating-column/manage-account/my-account/my-account.component.ts
@@ -23,6 +23,8 @@ export class MyAccountComponent implements OnInit, OnDestroy {
faCheckSquare = faCheckSquare;
faCheck = faCheck;
faTimes = faTimes;
+
+ customStatusLength: boolean;
availableStreams: StreamWrapper[] = [];
availableLists: StreamWrapper[] = [];
@@ -58,6 +60,11 @@ export class MyAccountComponent implements OnInit, OnDestroy {
}
}
+ onCustomLengthChange(): boolean {
+ this.customStatusLength = !this.customStatusLength;
+ return false;
+ }
+
private loadStreams(account: AccountWrapper){
const instance = account.info.instance;
this.availableStreams.length = 0;
diff --git a/src/app/components/stream/status/poll/poll.component.scss b/src/app/components/stream/status/poll/poll.component.scss
index 93947f57..542c1257 100644
--- a/src/app/components/stream/status/poll/poll.component.scss
+++ b/src/app/components/stream/status/poll/poll.component.scss
@@ -1,5 +1,5 @@
-// @import "variables";
-// @import "commons";
+@import "variables";
+@import "commons";
// @import "panel";
@import "buttons";
@@ -171,19 +171,4 @@
display: inline-block;
margin: 0 5px;
}
-}
-
-.noselect {
- -webkit-touch-callout: none;
- /* iOS Safari */
- -webkit-user-select: none;
- /* Safari */
- -khtml-user-select: none;
- /* Konqueror HTML */
- -moz-user-select: none;
- /* Firefox */
- -ms-user-select: none;
- /* Internet Explorer/Edge */
- user-select: none;
- /* Non-prefixed version, currently supported by Chrome and Opera */
}
\ No newline at end of file
diff --git a/src/sass/_commons.scss b/src/sass/_commons.scss
index 5af1a5c2..b58ee639 100644
--- a/src/sass/_commons.scss
+++ b/src/sass/_commons.scss
@@ -1,3 +1,23 @@
+@import "variables";
+
+.themed-form{
+ background-color: $column-color;
+ border: 1px $button-border-color solid;
+ padding: 2px 0 2px 5px;
+ // border-width: 1px;
+ color: #fff;
+ &:focus {
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ outline: 0px;
+ }
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
+
+
.waiting-icon {
width: 40px;
display: block;