transitions styling and better messaging on chat initialization

This commit is contained in:
Sharon Kennedy
2020-02-25 17:48:30 -05:00
parent 9a7beea07b
commit f5862e8f0a
3 changed files with 91 additions and 20 deletions

View File

@@ -8,13 +8,36 @@
background: $dark-background-color;
color: $light-text-color;
border: 1px solid $white;
transition: all 0.2s ease-in-out;
&:hover {
border-color: $theme-color;
}
&:focus {
background: $dark-theme-color;
outline: none;
}
}
.widget {
button {
transition: all 0.2s ease-in-out;
&:hover {
border-color: $theme-color;
}
&:focus {
background: $dark-theme-color;
outline: none;
}
}
}
#ocrcc-chatbox {
.btn-icon {
color: $light-text-color;
}
.message-window {
background-color: $dark-background-color;
border: 1px solid $white;
@@ -49,9 +72,14 @@
.input-window {
input[type="text"] {
background-color: $dark-theme-color;
background-color: $dark-background-color;
color: $light-text-color;
border: 1px solid $white;
&:focus {
border: 1px solid $theme-color;
background: $dark-theme-color;
}
}
::placeholder {
@@ -64,5 +92,9 @@
border: 1px solid $white;
}
}
.highlight-text {
color: $light-text-color;
}
}
}