home.social

#595aff — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #595aff, aggregated by home.social.

fetched live
  1. memo
    ```css
    box-shadow: 0px 0px 3px 2px #595aff;
    ```

  2. memo
    ```css
    box-shadow: 0px 0px 3px 2px #595aff;
    ```

  3. CW: workaround to change text on publish button

    in Administration > Server settings > Appearance - there's a field for custom CSS:

    .compose-form__publish-button-wrapper button {
    visibility: hidden;
    }

    .compose-form__publish-button-wrapper button:before {
    visibility: visible;
    content: 'Toot!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }

    .button.button--block:hover:before {
    background-color: #6364ff;
    }

  4. CW: workaround to change text on publish button

    in Administration > Server settings > Appearance - there's a field for custom CSS:

    .compose-form__publish-button-wrapper button {
    visibility: hidden;
    }

    .compose-form__publish-button-wrapper button:before {
    visibility: visible;
    content: 'Toot!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }

    .button.button--block:hover:before {
    background-color: #6364ff;
    }

  5. CW: workaround to change text on publish button

    in Administration > Server settings > Appearance - there's a field for custom CSS:

    .compose-form__publish-button-wrapper button {
    visibility: hidden;
    }

    .compose-form__publish-button-wrapper button:before {
    visibility: visible;
    content: 'Toot!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }

    .button.button--block:hover:before {
    background-color: #6364ff;
    }

  6. CW: workaround to change text on publish button

    in Administration > Server settings > Appearance - there's a field for custom CSS:

    .compose-form__publish-button-wrapper button {
    visibility: hidden;
    }

    .compose-form__publish-button-wrapper button:before {
    visibility: visible;
    content: 'Toot!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }

    .button.button--block:hover:before {
    background-color: #6364ff;
    }

  7. CW: workaround to change text on publish button

    in Administration > Server settings > Appearance - there's a field for custom CSS:

    .compose-form__publish-button-wrapper button {
    visibility: hidden;
    }

    .compose-form__publish-button-wrapper button:before {
    visibility: visible;
    content: 'Toot!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }

    .button.button--block:hover:before {
    background-color: #6364ff;
    }

  8. @david @selea @sotolf

    this code worked for me like 100% replacement of just text:


    .button.button--block {
    visibility: hidden;
    }

    .button.button--block::before {
    visibility: visible;
    content: 'Beep!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }
    }

  9. @david @selea @sotolf

    this code worked for me like 100% replacement of just text:


    .button.button--block {
    visibility: hidden;
    }

    .button.button--block::before {
    visibility: visible;
    content: 'Beep!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }
    }

  10. @david @selea @sotolf

    this code worked for me like 100% replacement of just text:


    .button.button--block {
    visibility: hidden;
    }

    .button.button--block::before {
    visibility: visible;
    content: 'Beep!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }
    }

  11. @david @selea @sotolf

    this code worked for me like 100% replacement of just text:


    .button.button--block {
    visibility: hidden;
    }

    .button.button--block::before {
    visibility: visible;
    content: 'Beep!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }
    }

  12. @david @selea @sotolf

    this code worked for me like 100% replacement of just text:


    .button.button--block {
    visibility: hidden;
    }

    .button.button--block::before {
    visibility: visible;
    content: 'Beep!';
    display: block;
    width: 100%;
    padding: 7px;
    margin-top:-7px;
    border-radius: 3px;
    background-color: #595aff;
    }
    }

  13. CW: css

    @nilsding
    /* Hide "Publish!" text on toot button */
    .compose-form__publish-button-wrapper button,
    .ui__header__links a.button {
    color: #595aff;
    font-size: 1px;
    line-height: 1px;
    text-align: right;
    }
    /* Replace Text on Toot Button */
    .compose-form__publish-button-wrapper button:before,
    .ui__header__links a.button:before {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    margin-top: 2px;
    color: #FFF;
    content: "Plush!";
    }

  14. CW: css

    @nilsding
    /* Hide "Publish!" text on toot button */
    .compose-form__publish-button-wrapper button,
    .ui__header__links a.button {
    color: #595aff;
    font-size: 1px;
    line-height: 1px;
    text-align: right;
    }
    /* Replace Text on Toot Button */
    .compose-form__publish-button-wrapper button:before,
    .ui__header__links a.button:before {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    margin-top: 2px;
    color: #FFF;
    content: "Plush!";
    }

  15. CW: css

    @nilsding
    /* Hide "Publish!" text on toot button */
    .compose-form__publish-button-wrapper button,
    .ui__header__links a.button {
    color: #595aff;
    font-size: 1px;
    line-height: 1px;
    text-align: right;
    }
    /* Replace Text on Toot Button */
    .compose-form__publish-button-wrapper button:before,
    .ui__header__links a.button:before {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    margin-top: 2px;
    color: #FFF;
    content: "Plush!";
    }

  16. CW: css

    @nilsding
    /* Hide "Publish!" text on toot button */
    .compose-form__publish-button-wrapper button,
    .ui__header__links a.button {
    color: #595aff;
    font-size: 1px;
    line-height: 1px;
    text-align: right;
    }
    /* Replace Text on Toot Button */
    .compose-form__publish-button-wrapper button:before,
    .ui__header__links a.button:before {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    margin-top: 2px;
    color: #FFF;
    content: "Plush!";
    }