Forem Creators and Builders 🌱

Discussion on: Green button in forem.dev !!

Collapse
 
ben profile image
Ben Halpern

Yup!

.... I didn't even realize this would apply to all links across the site, even in content. But it passed muster for everybody and now it's how things are done 😄

Collapse
 
rafi993 profile image
Rafi

Submit button in comment box is still blue I'm not sure if it is bug or if it is indented

submit button

Thread Thread
 
pp profile image
Paweł Ludwiczak

Not bug and not intentional. I think it's called "legacy"... Or "leftover" :)

Thread Thread
 
link2twenty profile image
Andrew Bone

Hard-coded colours 😁

GitHub

input[type='submit'] {
  background: $bold-blue;
}
&.submitting {
  input[type='submit'] {
    background: #00bbff;
  }
  textarea {
    color: lighten($dark-gray, 25%);
    border: 1px solid $light-green;
    background: white url(image-src('loading-ellipsis.svg')) no-repeat center center;
    background-size: 50px;
  }
}
Enter fullscreen mode Exit fullscreen mode