diff --git a/dist/index.html b/dist/index.html index 188da12..55abc50 100644 --- a/dist/index.html +++ b/dist/index.html @@ -56,6 +56,12 @@ + + @@ -122,6 +128,21 @@ +
+
+

Content

+
+

+

+
    +
  • +
  • +
  • +
+
+
+
+

Badge

@@ -214,10 +235,10 @@ Do you really wan't to delete all files?
diff --git a/dist/plain-ui.css b/dist/plain-ui.css index 9c12e06..f5337f0 100644 --- a/dist/plain-ui.css +++ b/dist/plain-ui.css @@ -4808,7 +4808,10 @@ body { } } .button--small { - font-size: 0.8em; + font-size: 0.8rem; +} +.button--outline { + background-color: transparent; } .button--no-style { margin: 0; @@ -4844,6 +4847,14 @@ body { .button--danger:focus, .button--danger:active { outline: 2px solid #e79797; } +.button--outline:hover { + color: #3e3e3e; + border-color: #8b8b8b; + background-color: transparent; +} +.button--danger.button--outline:hover { + border-color: #e38383; +} .field-group { margin-bottom: 1.2em; @@ -5205,10 +5216,6 @@ img.media { transform: scale(0); max-width: 500px; } -.modal__inner .button { - color: white; - background-color: transparent; -} .modal__title { font-size: 2rem; text-align: center; @@ -5224,6 +5231,9 @@ img.media { .modal__body { margin-bottom: 1.5rem; } +.modal .button { + color: white; +} .modal:before { position: fixed; top: 0; diff --git a/src/scss/_core.scss b/src/scss/_core.scss index 6a0d357..a4a47fa 100644 --- a/src/scss/_core.scss +++ b/src/scss/_core.scss @@ -23,7 +23,7 @@ color: $plain-ui__link-light; &:hover { - //color: $plain-ui__link-hover; + color: $plain-ui__link-hover; } &:focus { diff --git a/src/scss/components/_button.scss b/src/scss/components/_button.scss index bcc3334..1b3e332 100644 --- a/src/scss/components/_button.scss +++ b/src/scss/components/_button.scss @@ -37,11 +37,11 @@ } &--small { - font-size: 0.8em; + font-size: 0.8rem; } &--outline { - + background-color: transparent; } &--no-style { @@ -89,5 +89,19 @@ outline: 2px solid lighten($plain-ui__danger-light, 15%); } } + + &--outline { + &:hover { + color: $plain-ui__primary-light; + border-color: lighten($plain-ui__primary-light, 30%); + background-color: transparent; + } + } + + &--danger.button--outline { + &:hover { + border-color: lighten($plain-ui__danger-light, 10%); + } + } } } \ No newline at end of file diff --git a/src/scss/components/_modal.scss b/src/scss/components/_modal.scss index 613c7cc..8c3f348 100644 --- a/src/scss/components/_modal.scss +++ b/src/scss/components/_modal.scss @@ -35,11 +35,6 @@ transform: scale(0); max-width: 500px; - - .button { - color: white; - background-color: transparent; - } } &__title { @@ -62,6 +57,10 @@ margin-bottom: 1.5rem; } + .button { + color: white; + } + &:before { position: fixed; top: 0;