diff --git a/UI/WebServerResources/scss/components/ngTags/ng-tags-input.scss b/UI/WebServerResources/scss/components/ngTags/ng-tags-input.scss
index 5f986a9b0..185e33373 100644
--- a/UI/WebServerResources/scss/components/ngTags/ng-tags-input.scss
+++ b/UI/WebServerResources/scss/components/ngTags/ng-tags-input.scss
@@ -15,16 +15,16 @@ tags-input .host:active {
}
tags-input .tags {
- @extend .PseudoField-inputLike;
+ @extend .Pseudo-input-field;
padding: 0;
line-height: 2 * $mg;
word-wrap: break-word;
cursor: text;
- border-bottom: 1px solid $colorGrayLight;
+ border-bottom: 1px solid $colorGrayLighter;
transition: $swift-ease-out;
}
tags-input .tags.focused {
- border-bottom: 2px solid sg-color($sogoBlue, 700);
+ border-bottom: 2px solid sg-color($sogoBlue, 500);
}
tags-input/deep/#inner-editor {
@@ -32,7 +32,7 @@ tags-input/deep/#inner-editor {
line-height: inherit;
}
:root/deep/#placeholder,
-:root/deep/[pseudo="-webkit-input-placeholder"] {
+:root/deep/::-webkit-input-placeholder {
color: $colorGrayLight;
height: $mg;
font: inherit;
diff --git a/UI/WebServerResources/scss/styles.scss b/UI/WebServerResources/scss/styles.scss
index d68d46f6a..7bab9690b 100755
--- a/UI/WebServerResources/scss/styles.scss
+++ b/UI/WebServerResources/scss/styles.scss
@@ -24,7 +24,7 @@
/* Local overrides from angular-material src */
// fixme : refactor all this to meet our practices
// ------------------------------------------------------------------------------
-@import 'core/variables';
+//@import 'core/variables';
@import 'core/mixins';
@import 'core/structure';
@import 'core/layout';
diff --git a/UI/WebServerResources/scss/views/MailerUI.scss b/UI/WebServerResources/scss/views/MailerUI.scss
index 8ce57bcc0..a895fe06d 100644
--- a/UI/WebServerResources/scss/views/MailerUI.scss
+++ b/UI/WebServerResources/scss/views/MailerUI.scss
@@ -45,27 +45,27 @@
white-space: normal;
}
-// Component: PseudoField
+// Component: Pseudo-input
// This component mimics the presentation of form fields according to Google's
// Material Design specs (www.google.com/design/spec/components/text-fields.html)
// It's used in message headers but could --and should-- be reused
-// The PseudoField element serves as a container for it's two children:
-// --label and --inputLike
+// The Pseudo-input-container element serves as a... container for it's two children:
+// -label and -input-field
//
// Typical use:
-//
-//
-//
Other input-like text
+//
//
// ----------------------------------------------------------------------------
-.PseudoField {
+.Pseudo-input-container {
display: block; // Should be (reset to ?) a plain block element
padding: 0 2px;
}
-.PseudoField-label {
+.Pseudo-input-label {
display: inline-block;
margin-top: $mg;
font-size: sg-size(caption);
@@ -73,27 +73,27 @@
font-weight: $sg-font-regular;
color: $colorGrayLight;
}
-.PseudoField-inputLike {
+.Pseudo-input-field {
display: block;
padding: $line 0 0 0;
margin-bottom: $line;
font-size: sg-size(subhead);
line-height: 1;
}
-.PseudoField-inputLike--underline {
- @extend .PseudoField-inputLike;
- border-bottom: 1px solid $colorGrayLight;
+.Pseudo-input-field--underline {
+ @extend .Pseudo-input-field;
+ border-bottom: 1px solid $colorGrayLighter;
&:focus,
&:active,
&:hover {
margin-bottom: ($line - 1);
- border-bottom: 2px solid sg-color($sogoBlue, 700);
+ border-bottom: 2px solid sg-color($sogoBlue, 500);
}
}
// The specs dimensions are too large to fit with angular-material
// Here's a modifier
-.PseudoField--compact {
- .PseudoField-label {
+.Pseudo-input-container--compact {
+ .Pseudo-input-label {
margin-top: 0;
}
}
diff --git a/UI/WebServerResources/scss/views/MessageEditorUI.scss b/UI/WebServerResources/scss/views/MessageEditorUI.scss
index b0558399b..c204810be 100644
--- a/UI/WebServerResources/scss/views/MessageEditorUI.scss
+++ b/UI/WebServerResources/scss/views/MessageEditorUI.scss
@@ -28,7 +28,7 @@ textarea.ck-editor{
margin-top: $mg;
}
// Plain text editor
-textarea.ck-editor {
+[id=messageEditor] textarea {
width: 100%;
- min-height: 320px;
+ min-height: grid-step(3);
}
\ No newline at end of file